handleMessage (hWnd, msg, wParam, lParam)
This is a callback function used to manually handle window messages.
Parameter | Description |
---|---|
hWnd | The handle to the window that sent the message |
msg | The message constant |
wParam | The wParam of the message |
lParam | The lParam of the message |
Depends on the message you are processing, usually 0
This is a callback funciton. You must supply this function yourself. Register this function with WinXRegMessageHandler.
FUNCTION handleMessage (hWnd, msg, wParam, lParam)
END FUNCTION |