|
NAMESDL_GetEventFilter - Retrieves a pointer to he event filterSYNOPSIS#include "SDL.h"SDL_EventFilter SDL_GetEventFilter(void); DESCRIPTIONThis function retrieces a pointer to the event filter that was previously set using SDL_SetEventFilter. An SDL_EventFilter function is defined as:
typedef int (*SDL_EventFilter)(const SDL_Event *event);
RETURN VALUEReturns a pointer to the event filter or NULL if no filter has been set.SEE ALSOSDL_Event, SDL_SetEventFilter
Visit the GSP FreeBSD Man Page Interface. |