DOKK / manpages / debian 13 / libsdl3-doc / SDL_SetWindowsMessageHook.3.en
SDL_SetWindowsMessageHook(3) SDL3 FUNCTIONS SDL_SetWindowsMessageHook(3)

SDL_SetWindowsMessageHook - Set a callback for every Windows message, run before TranslateMessage().

Defined in SDL3/SDL_system.h

#include "SDL3/SDL.h"
void SDL_SetWindowsMessageHook(SDL_WindowsMessageHook callback, void *userdata);

The callback may modify the message, and should return true if the message should continue to be processed, or false to prevent further processing.

the SDL_WindowsMessageHook
function to call.
a pointer to pass to every iteration of callback .

This function is available since SDL 3.2.0.

(3), SDL_WindowsMessageHook(3type), (3), SDL_HINT_WINDOWS_ENABLE_MESSAGELOOP(3)

SDL 3.2.10 Simple Directmedia Layer