The type of action to request from SDL_PeepEvents().
Defined in <SDL3/SDL_events.h>
typedef enum SDL_EventAction
{/**< Add events to the back of the queue. */
SDL_ADDEVENT, /**< Check but don't remove events from the queue front. */
SDL_PEEKEVENT, /**< Retrieve/remove events from the front of the queue. */
SDL_GETEVENT } SDL_EventAction;
This enum is available since SDL 3.1.3.