mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-04-27 17:54:18 +00:00
Renamed storage functions to match SDL 3.0 naming convention
This commit is contained in:
@@ -984,9 +984,9 @@ SDL3_0.0.0 {
|
||||
SDL_OpenStorage;
|
||||
SDL_CloseStorage;
|
||||
SDL_StorageReady;
|
||||
SDL_StorageFileSize;
|
||||
SDL_StorageReadFile;
|
||||
SDL_StorageSpaceRemaining;
|
||||
SDL_GetStorageFileSize;
|
||||
SDL_ReadStorageFile;
|
||||
SDL_GetStorageSpaceRemaining;
|
||||
# extra symbols go here (don't modify this line)
|
||||
local: *;
|
||||
};
|
||||
|
||||
@@ -1009,6 +1009,6 @@
|
||||
#define SDL_OpenStorage SDL_OpenStorage_REAL
|
||||
#define SDL_CloseStorage SDL_CloseStorage_REAL
|
||||
#define SDL_StorageReady SDL_StorageReady_REAL
|
||||
#define SDL_StorageFileSize SDL_StorageFileSize_REAL
|
||||
#define SDL_StorageReadFile SDL_StorageReadFile_REAL
|
||||
#define SDL_StorageSpaceRemaining SDL_StorageSpaceRemaining_REAL
|
||||
#define SDL_GetStorageFileSize SDL_GetStorageFileSize_REAL
|
||||
#define SDL_ReadStorageFile SDL_ReadStorageFile_REAL
|
||||
#define SDL_GetStorageSpaceRemaining SDL_GetStorageSpaceRemaining_REAL
|
||||
|
||||
@@ -1034,6 +1034,6 @@ SDL_DYNAPI_PROC(SDL_Storage*,SDL_OpenUserStorage,(const char *a, const char *b,
|
||||
SDL_DYNAPI_PROC(SDL_Storage*,SDL_OpenStorage,(const SDL_StorageInterface *a, void *b),(a,b),return)
|
||||
SDL_DYNAPI_PROC(int,SDL_CloseStorage,(SDL_Storage *a),(a),return)
|
||||
SDL_DYNAPI_PROC(SDL_bool,SDL_StorageReady,(SDL_Storage *a),(a),return)
|
||||
SDL_DYNAPI_PROC(int,SDL_StorageFileSize,(SDL_Storage *a, const char *b, Uint64 *c),(a,b,c),return)
|
||||
SDL_DYNAPI_PROC(int,SDL_StorageReadFile,(SDL_Storage *a, const char *b, void *c, Uint64 d),(a,b,c,d),return)
|
||||
SDL_DYNAPI_PROC(Uint64,SDL_StorageSpaceRemaining,(SDL_Storage *a),(a),return)
|
||||
SDL_DYNAPI_PROC(int,SDL_GetStorageFileSize,(SDL_Storage *a, const char *b, Uint64 *c),(a,b,c),return)
|
||||
SDL_DYNAPI_PROC(int,SDL_ReadStorageFile,(SDL_Storage *a, const char *b, void *c, Uint64 d),(a,b,c,d),return)
|
||||
SDL_DYNAPI_PROC(Uint64,SDL_GetStorageSpaceRemaining,(SDL_Storage *a),(a),return)
|
||||
|
||||
Reference in New Issue
Block a user