SDL_GetEventFilter

Name

SDL_GetEventFilter -- Retrieves a pointer to he event filter

Synopsis

uses
SDL;

function SDL_GetEventFilter : TSDL_EventFilter;

Description

This function retrieces a pointer to the event filter that was previously set using SDL_SetEventFilter . An SDL_EventFilter function is defined as:

TSDL_EventFilter = function( event : PSDL_Event ) : Integer; cdecl;

Return Value

Returns a pointer to the event filter or NULL if no filter has been set.

See Also

SDL_Event, SDL_SetEventFilter