Renaming SDL_eventaction to SDL_EventAction

This commit is contained in:
Petar Popovic
2024-04-07 17:14:50 +02:00
committed by Ryan C. Gordon
parent e3395a7585
commit f08c31060a
3 changed files with 5 additions and 5 deletions

View File

@@ -828,7 +828,7 @@ typedef enum
SDL_ADDEVENT,
SDL_PEEKEVENT,
SDL_GETEVENT
} SDL_eventaction;
} SDL_EventAction;
/**
* Check the event queue for messages and optionally return them.
@@ -868,7 +868,7 @@ typedef enum
* \sa SDL_PumpEvents
* \sa SDL_PushEvent
*/
extern DECLSPEC int SDLCALL SDL_PeepEvents(SDL_Event *events, int numevents, SDL_eventaction action, Uint32 minType, Uint32 maxType);
extern DECLSPEC int SDLCALL SDL_PeepEvents(SDL_Event *events, int numevents, SDL_EventAction action, Uint32 minType, Uint32 maxType);
/* @} */
/**