mirror of https://github.com/libsdl-org/SDL.git
include: Minor SDL_AppResult documentation tweak.
This commit is contained in:
parent
4147ff6a4e
commit
42e43697cf
|
|
@ -69,10 +69,6 @@ typedef Uint32 SDL_InitFlags;
|
||||||
/**
|
/**
|
||||||
* Return values for optional main callbacks.
|
* Return values for optional main callbacks.
|
||||||
*
|
*
|
||||||
* See
|
|
||||||
* https://wiki.libsdl.org/SDL3/README/main-functions#main-callbacks-in-sdl3
|
|
||||||
* for details.
|
|
||||||
*
|
|
||||||
* Returning SDL_APP_SUCCESS or SDL_APP_FAILURE from SDL_AppInit,
|
* Returning SDL_APP_SUCCESS or SDL_APP_FAILURE from SDL_AppInit,
|
||||||
* SDL_AppEvent, or SDL_AppIterate will terminate the program and report
|
* SDL_AppEvent, or SDL_AppIterate will terminate the program and report
|
||||||
* success/failure to the operating system. What that means is
|
* success/failure to the operating system. What that means is
|
||||||
|
|
@ -84,6 +80,10 @@ typedef Uint32 SDL_InitFlags;
|
||||||
* Returning SDL_APP_CONTINUE from these functions will let the app continue
|
* Returning SDL_APP_CONTINUE from these functions will let the app continue
|
||||||
* to run.
|
* to run.
|
||||||
*
|
*
|
||||||
|
* See
|
||||||
|
* [Main callbacks in SDL3](https://wiki.libsdl.org/SDL3/README/main-functions#main-callbacks-in-sdl3)
|
||||||
|
* for complete details.
|
||||||
|
*
|
||||||
* \since This enum is available since SDL 3.0.0.
|
* \since This enum is available since SDL 3.0.0.
|
||||||
*/
|
*/
|
||||||
typedef enum SDL_AppResult
|
typedef enum SDL_AppResult
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue