|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| shell32.lib
| Header File
| shellapi.h
| Unicode
| No
| Platform Notes
| None
|
|
|
DragAcceptFiles
The DragAcceptFiles function registers whether a window accepts dropped files.
VOID DragAcceptFiles(
HWND hWnd,
| // handle to the registering window
| BOOL fAccept
| // acceptance option
| );
|
|
Parameters
hWnd
Identifies the window registering whether it accepts dropped files.
fAccept
Specifies whether the window identified by the hWnd parameter accepts dropped files. This value is TRUE to accept dropped files;
it is FALSE to discontinue accepting dropped files.
Return Values
This function does not return a 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.
See Also
WM_DROPFILES
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Programmer's Reference (win32.hlp)
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|