mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-05-31 17:07:39 +00:00
Add SDL_storage
This commit is contained in:
parent
4fc749443f
commit
744227e6ab
16 changed files with 1035 additions and 0 deletions
|
@ -1904,6 +1904,24 @@ extern "C" {
|
|||
*/
|
||||
#define SDL_HINT_SHUTDOWN_DBUS_ON_QUIT "SDL_SHUTDOWN_DBUS_ON_QUIT"
|
||||
|
||||
/**
|
||||
* A variable that specifies a backend to use for title storage.
|
||||
*
|
||||
* By default, SDL will try all available storage backends in a reasonable order until it finds one that can work, but this hint allows the app or user to force a specific target, such as "pc" if, say, you are on Steam but want to avoid SteamRemoteStorage for title data.
|
||||
*
|
||||
* This hint should be set before SDL is initialized.
|
||||
*/
|
||||
#define SDL_HINT_STORAGE_TITLE_DRIVER "SDL_STORAGE_TITLE_DRIVER"
|
||||
|
||||
/**
|
||||
* A variable that specifies a backend to use for user storage.
|
||||
*
|
||||
* By default, SDL will try all available storage backends in a reasonable order until it finds one that can work, but this hint allows the app or user to force a specific target, such as "pc" if, say, you are on Steam but want to avoid SteamRemoteStorage for user data.
|
||||
*
|
||||
* This hint should be set before SDL is initialized.
|
||||
*/
|
||||
#define SDL_HINT_STORAGE_USER_DRIVER "SDL_STORAGE_USER_DRIVER"
|
||||
|
||||
/**
|
||||
* Specifies whether SDL_THREAD_PRIORITY_TIME_CRITICAL should be treated as realtime.
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue