Registers whether a window accepts dropped files.
Syntax
VOID DragAcceptFiles( HWND hWnd, BOOL fAccept );
Parameters
hWnd The identifier of the window that is registering whether it will accept dropped files. fAccept A value that indicates if the window identified by the hWnd parameter accepts dropped files. This value is TRUE to accept dropped files or FALSE to discontinue accepting dropped files.
Return Value
No return value.
Remarks
An application that calls DragAcceptFiles with the fAccept parameter set to TRUE has identified itself as able to process the WM_DROPFILES message from File Manager.
Function Information
Minimum DLL Versionshell32.dll version 4.0 or laterCustom ImplementationNoHeadershellapi.hImport libraryshell32.libMinimum operating systems Windows NT 3.1, Windows 95
<DllImport("shell32.dll", CharSet:=CharSet.Ansi, ExactSpelling:=True)> Public Shared Sub DragAcceptFiles(ByVal hWnd As HandleRef, ByVal fAccept As Boolean) End Sub
[DllImport("shell32.dll", CharSet=CharSet.Ansi, ExactSpelling=true)] public static extern void DragAcceptFiles(HandleRef hWnd, bool fAccept);