From cb7b120a8ba6c8ff5238342da47a54f8c14a482a Mon Sep 17 00:00:00 2001 From: NicknineTheEagle Date: Sun, 20 Jul 2025 00:11:44 +0300 Subject: [PATCH] Added old RemoteStorageFileShareResult_t struct --- sdk/steam/isteamremotestorage003.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/sdk/steam/isteamremotestorage003.h b/sdk/steam/isteamremotestorage003.h index 3053f392..0fdea24f 100644 --- a/sdk/steam/isteamremotestorage003.h +++ b/sdk/steam/isteamremotestorage003.h @@ -54,4 +54,13 @@ public: virtual UGCHandle_t GetCachedUGCHandle( int32 iCachedContent ) = 0; }; +//----------------------------------------------------------------------------- +// Purpose: The result of a call to FileShare() +//----------------------------------------------------------------------------- +struct RemoteStorageFileShareResult001_t { + enum { k_iCallback = k_iSteamRemoteStorageCallbacks + 7 }; + EResult m_eResult; // The result of the operation + UGCHandle_t m_hFile; // The handle that can be shared with users and features +}; + #endif // ISTEAMREMOTESTORAGE003_H