mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-23 06:21:57 +00:00
Added SDL_OpenFileStorage() for local file storage
This commit is contained in:
parent
ee0a23c7ab
commit
ec3ba387d1
7 changed files with 78 additions and 5 deletions
|
|
@ -993,6 +993,7 @@ SDL3_0.0.0 {
|
|||
SDL_RenamePath;
|
||||
SDL_GetPathInfo;
|
||||
SDL_FileTimeToWindows;
|
||||
SDL_OpenFileStorage;
|
||||
# extra symbols go here (don't modify this line)
|
||||
local: *;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1018,3 +1018,4 @@
|
|||
#define SDL_RenamePath SDL_RenamePath_REAL
|
||||
#define SDL_GetPathInfo SDL_GetPathInfo_REAL
|
||||
#define SDL_FileTimeToWindows SDL_FileTimeToWindows_REAL
|
||||
#define SDL_OpenFileStorage SDL_OpenFileStorage_REAL
|
||||
|
|
|
|||
|
|
@ -1043,3 +1043,4 @@ SDL_DYNAPI_PROC(int,SDL_RemovePath,(const char *a),(a),return)
|
|||
SDL_DYNAPI_PROC(int,SDL_RenamePath,(const char *a, const char *b),(a,b),return)
|
||||
SDL_DYNAPI_PROC(int,SDL_GetPathInfo,(const char *a, SDL_PathInfo *b),(a,b),return)
|
||||
SDL_DYNAPI_PROC(void,SDL_FileTimeToWindows,(Sint64 a, Uint32 *b, Uint32 *c),(a,b,c),)
|
||||
SDL_DYNAPI_PROC(SDL_Storage*,SDL_OpenFileStorage,(const char *a),(a),return)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue