WinXRegOnDrag


WinXRegOnDrag (hWnd, FUNCADDR onDrag)

Registers the onDrag callback function

Parameter Description
hWnd The handle to the window to register the callback for
FUNCADDR onDrag The address of the onDrag callback function

Returns

$$TRUE on success or $$FALSE on fail

Remarks

Once registered, the onDrag callback will be invoked whenever a dragging event occurs.

Examples

'register the onDrag callback
WinXRegOnDrag (#hMain, &onDrag())

Related Links

onDrag