Home | History | Annotate | Download | only in clipboard

Lines Matching refs:HDROP

45   HDROP hdrop = static_cast<HDROP>(GlobalLock(medium.hGlobal));
47 if (!hdrop)
52 if (DragQueryFileW(hdrop, 0, filename, arraysize(filename))) {
64 DragFinish(hdrop);
217 HDROP hdrop = static_cast<HDROP>(GlobalLock(medium.hGlobal));
218 if (!hdrop)
222 const unsigned num_files = DragQueryFileW(hdrop, 0xffffffff, 0, 0);
225 if (!DragQueryFileW(hdrop, i, filename, kMaxFilenameLen))
230 DragFinish(hdrop);