WinXRegOnChar (hWnd, FUNCADDR onChar)
Registers the onChar callback function
Parameter | Description |
---|---|
hWnd | The handle to the window to register the callback for |
FUNCADDR onChar | The address of the onChar callback function |
$$TRUE on success or $$FALSE on fail
Once registered, the onChar callback function will be called whenever a character is generated.
'register the onChar callback WinXRegOnChar (#hMain, &onChar()) |