Sync SDL3 wiki -> header

This commit is contained in:
SDL Wiki Bot 2024-08-17 06:30:02 +00:00
parent 42e43697cf
commit a7bed810b3
1 changed files with 3 additions and 3 deletions

View File

@ -137,7 +137,7 @@ functions:
First: First:
```c ```c
int SDL_AppInit(void **appstate, int argc, char **argv); SDL_AppResult SDL_AppInit(void **appstate, int argc, char **argv);
``` ```
This will be called _once_ before anything else. argc/argv work like they This will be called _once_ before anything else. argc/argv work like they
@ -158,7 +158,7 @@ calls.
Then: Then:
```c ```c
int SDL_AppIterate(void *appstate); SDL_AppResult SDL_AppIterate(void *appstate);
``` ```
This is called over and over, possibly at the refresh rate of the display or This is called over and over, possibly at the refresh rate of the display or
@ -178,7 +178,7 @@ not check the event queue in this function (SDL_AppEvent exists for that).
Next: Next:
```c ```c
int SDL_AppEvent(void *appstate, const SDL_Event *event); SDL_AppResult SDL_AppEvent(void *appstate, const SDL_Event *event);
``` ```
This will be called whenever an SDL event arrives. Your app should not call This will be called whenever an SDL event arrives. Your app should not call