wpDragOver - Syntax

This instance method is called to inform the object that other objects are being dragged over it.

#define INCL_WINWORKPLACE
#include <os2.h>

WPObject     *somSelf;   /*  Pointer to the object on which the method is being invoked. */
HWND          hwndCnr;   /*  Handle to the container control window. */
PDRAGINFO     pdrgInfo;  /*  Pointer to drag information. */
MRESULT       rc;        /*  Return code. */

rc = _wpDragOver(somSelf, hwndCnr, pdrgInfo);


[Back: wpDragOver]
[Next: wpDragOver Parameter - somSelf]