Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 874 Bytes

DragFinish.md

File metadata and controls

41 lines (28 loc) · 874 Bytes

Home

Function name : DragFinish

Group: Shell Functions - Library: shell32


Releases memory that the system allocated for use in transferring file names to the application.


Code examples:

Dragging files from Explorer window and dropping them on FoxPro control (requires VFP9)

Declaration:

VOID DragFinish(
	HDROP hDrop
);  

FoxPro declaration:

DECLARE DragFinish IN shell32;
	INTEGER hDrop  

Parameters:

hDrop Identifier of the structure that describes dropped files. This handle is retrieved from the wParam parameter of the WM_DROPFILES message.


Return value:

No return value.