mirror of https://github.com/libsdl-org/SDL.git
Sync SDL3 wiki -> header
This commit is contained in:
parent
42e43697cf
commit
a7bed810b3
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue