mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-01-15 11:51:15 +00:00
14 lines
347 B
C
14 lines
347 B
C
#pragma once
|
|
|
|
typedef enum SDL_AppResult
|
|
{
|
|
SDL_APP_CONTINUE,
|
|
SDL_APP_SUCCESS,
|
|
SDL_APP_FAILURE
|
|
} SDL_AppResult;
|
|
|
|
SDL_AppResult SDL_AppInit(void **appstate, int argc, char *argv[]);
|
|
SDL_AppResult SDL_AppIterate(void *appstate);
|
|
SDL_AppResult SDL_AppEvent(void *appstate, SDL_Event *event);
|
|
void SDL_AppQuit(void *appstate, SDL_AppResult result);
|