logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SDL_HasEvents - Check for the existence of certain event types in the event queue.

Availability

       This function is available since SDL 3.2.0.

Description

       If you need to check for a single event type, use

       SDL_HasEvent () instead.

Function Parameters

minType
              the low end of event type to be queried, inclusive; see SDL_EventType
               for details.

       maxType
              the high end of event type to be queried, inclusive; see SDL_EventType
               for details.

Header File

       Defined in SDL3/SDL_events.h

Name

       SDL_HasEvents - Check for the existence of certain event types in the event queue.

Return Value

       Returns true if events with type >= minType and <= maxType are present, or false if not.

See Also

(3), SDL_HasEvents(3)

Simple Directmedia Layer                           SDL 3.2.10                                   SDL_HasEvents(3)

Synopsis

#include"SDL3/SDL.h"boolSDL_HasEvents(Uint32minType,Uint32maxType);

Thread Safety

       It is safe to call this function from any thread.

See Also