sdl_geteventfilter(3) - Linux man page
Name
SDL_GetEventFilter - Retrieves a pointer to he event filterSynopsis
#include "SDL.h"
SDL_EventFilter SDL_GetEventFilter(void);
Description
This function retrieces a pointer to the event filter that was previously set using SDL_SetEventFilter. An SDL_EventFilter function is defined as:
CWtypedef int (*SDL_EventFilter)(const SDL_Event *event);
Return Value
Returns a pointer to the event filter or NULL if no filter has been set.
See Also
SDL_Event, SDL_SetEventFilter