DragQueryFile function shell32
Retrieves the names of dropped files that result from a successful drag-and-drop operation.
UINT DragQueryFileW(
[in] HDROP hDrop,
[in] UINT iFile,
[out] LPWSTR lpszFile,
UINT cch
);
Implementation
int DragQueryFile(int hDrop, int iFile, Pointer<Utf16> lpszFile, int cch) =>
_DragQueryFile(hDrop, iFile, lpszFile, cch);