From f5c89b3bd5d74849757fd5b4d1a300068522a3ca Mon Sep 17 00:00:00 2001 From: 3gg <3gg@shellblade.net> Date: Fri, 6 Mar 2026 13:26:57 -0800 Subject: Initial commit --- SDL-3.2.8/src/storage/steam/SDL_steamstorage_proc.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 SDL-3.2.8/src/storage/steam/SDL_steamstorage_proc.h (limited to 'SDL-3.2.8/src/storage/steam/SDL_steamstorage_proc.h') diff --git a/SDL-3.2.8/src/storage/steam/SDL_steamstorage_proc.h b/SDL-3.2.8/src/storage/steam/SDL_steamstorage_proc.h new file mode 100644 index 0000000..9d259e7 --- /dev/null +++ b/SDL-3.2.8/src/storage/steam/SDL_steamstorage_proc.h @@ -0,0 +1,14 @@ +STEAM_PROC(void*, SteamAPI_SteamRemoteStorage_v016, (void)) + +STEAM_PROC(bool, SteamAPI_ISteamRemoteStorage_IsCloudEnabledForAccount, (void*)) +STEAM_PROC(bool, SteamAPI_ISteamRemoteStorage_IsCloudEnabledForApp, (void*)) + +STEAM_PROC(bool, SteamAPI_ISteamRemoteStorage_BeginFileWriteBatch, (void*)) +STEAM_PROC(bool, SteamAPI_ISteamRemoteStorage_EndFileWriteBatch, (void*)) + +STEAM_PROC(Sint32, SteamAPI_ISteamRemoteStorage_GetFileSize, (void*, const char*)) +STEAM_PROC(Sint32, SteamAPI_ISteamRemoteStorage_FileRead, (void*, const char*, void*, Sint32)) +STEAM_PROC(Sint32, SteamAPI_ISteamRemoteStorage_FileWrite, (void*, const char*, const void*, Sint32)) +STEAM_PROC(bool, SteamAPI_ISteamRemoteStorage_GetQuota, (void*, Uint64*, Uint64*)) + +#undef STEAM_PROC -- cgit v1.2.3