Shell Functions


DragAcceptFiles Function

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 later
Custom ImplementationNo
Headershellapi.h
Import libraryshell32.lib
Minimum operating systems Windows NT 3.1, Windows 95
Tags :


Community Content

dmex
vb.net syntax
<DllImport("shell32.dll", CharSet:=CharSet.Ansi, ExactSpelling:=True)> Public Shared Sub DragAcceptFiles(ByVal hWnd As HandleRef, ByVal fAccept As Boolean)
End Sub
Tags :

dmex
C# syntax
[DllImport("shell32.dll", CharSet=CharSet.Ansi, ExactSpelling=true)]
public static extern void DragAcceptFiles(HandleRef hWnd, bool fAccept);
Tags :

Page view tracker