WinXRegOnScroll (hWnd, FUNCADDR onScroll)
Registers the onScroll callback
Parameter | Description |
---|---|
hWnd | The handle to the window to register the callback for |
FUNCADDR onScroll | The address of the onScroll callback function |
$$TRUE on success or $$FALSE on fail
The onScroll callback function will be called whenever a scrolling event occurs once this callback is registered.
'register the onScroll callback WinXRegOnScroll (#hMain, &onScroll()) |