table of contents
other versions
- trixie 3.2.10+ds-1
- testing 3.4.0+ds-1
- unstable 3.4.2+ds-1
- experimental 3.4.0+git20260203~8107d5b+ds-1
| SDL_SetWindowsMessageHook(3) | SDL3 FUNCTIONS | SDL_SetWindowsMessageHook(3) |
NAME¶
SDL_SetWindowsMessageHook - Set a callback for every Windows message, run before TranslateMessage().
SYNOPSIS¶
#include <SDL3/SDL_system.h>
void SDL_SetWindowsMessageHook(SDL_WindowsMessageHook callback, void *userdata);
DESCRIPTION¶
The callback may modify the message, and should return true if the message should continue to be processed, or false to prevent further processing.
FUNCTION PARAMETERS¶
THREAD SAFETY¶
This function should only be called on the main thread.
AVAILABILITY¶
This function is available since SDL 3.2.0.
SEE ALSO¶
SDL_WindowsMessageHook(3type), SDL_HINT_WINDOWS_ENABLE_MESSAGELOOP(3)
| SDL 3.4.2 | Simple Directmedia Layer |