table of contents
- testing 3.2.4+ds-2
- unstable 3.2.4+ds-2
- experimental 3.2.4+git20250228+ds-1
SDL_EventFilter(3type) | SDL3 DATATYPES | SDL_EventFilter(3type) |
NAME¶
SDL_EventFilter - A function pointer used for callbacks that watch the event queue.
HEADER FILE¶
Defined in SDL3/SDL_events.h
SYNOPSIS¶
#include "SDL3/SDL.h"
typedef bool (SDLCALL *SDL_EventFilter)(void *userdata, SDL_Event *event);
FUNCTION PARAMETERS¶
RETURN VALUE¶
Returns true to permit event to be added to the queue, and false to disallow it. When used with SDL_AddEventWatch , the return value is ignored.
THREAD SAFETY¶
SDL may call this callback at any time from any thread; the application is responsible for locking resources the callback touches that need to be protected.
AVAILABILITY¶
This datatype is available since SDL 3.2.0.
SEE ALSO¶
•(3), SDL_SetEventFilter(3), •(3), SDL_AddEventWatch(3)
SDL 3.2.5 | Simple Directmedia Layer |