WinXRegOnEnterLeave (hWnd, FUNCADDR onEnterLeave)
Registers an onEnterLeave callback function
Parameter | Description |
---|---|
hWnd | The handle to the window to register the callback for |
FUNCADDR onEnterLeave | The address of the onEnterLeave callback function to register |
$$TRUE on success or $$FALSE on fail
The onEnterLeave callback is invoked when the mosue enters or leaves the window
' register an onEnterLeave callback function WinXRegOnEnterLeave (#hMain, &onEnterLeave()) |