5 references to DragQueryFile
System.Windows.Forms (5)
winforms\Managed\System\WinForms\DataObject.cs (1)
1842int count = UnsafeNativeMethods.DragQueryFile(new HandleRef(null, hdrop), unchecked((int)0xFFFFFFFF), null, 0);
winforms\Managed\System\WinForms\UnsafeNativeMethods.cs (4)
375if ((resultValue = DragQueryFile(hDrop, iFile, lpszFile, lpszFile.Capacity)) == lpszFile.Capacity) 379int capacity = DragQueryFile(hDrop, iFile, null, 0); 383resultValue = DragQueryFile(hDrop, iFile, lpszFile, capacity); 396return DragQueryFile(hDrop, iFile, lpszFile, lpszFile.Capacity);