SDL_SetX11EventHook - Man Page
Set a callback for every X11 event.
Synopsis
#include <SDL3/SDL_system.h> void SDL_SetX11EventHook(SDL_X11EventHook callback, void *userdata);
Description
The callback may modify the event, and should return true if the event should continue to be processed, or false to prevent further processing.
Function Parameters
- callback
the SDL_X11EventHook function to call.
- userdata
a pointer to pass to every iteration of callback.
Thread Safety
This function should only be called on the main thread.
Availability
This function is available since SDL 3.2.0.
Referenced By
SDL 3.4.8 Simple Directmedia Layer SDL3 FUNCTIONS