DRAFT |
SDL_HasEvents
Use this function to check to see if for certain event types are in the event queue.
Contents
Syntax
SDL_bool SDL_HasEvents(Uint32 minType,
Uint32 maxType)
Function Parameters
minType |
the minimum number of the specified type of event |
maxType |
the maximum number of the specified type of event |
Return Value
Returns SDL_TRUE if between '''minType''' and '''maxType''' events are present, or SDL_FALSE if more or less are present.
Code Examples
You can add your code example here
Remarks
You can add useful comments here
