mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2024-12-02 23:35:37 +08:00
add missing inheritance from steam ugc 018 + new apis declarations
This commit is contained in:
parent
7f59c27adc
commit
f3c6707219
@ -46,6 +46,7 @@ public ISteamUGC014,
|
|||||||
public ISteamUGC015,
|
public ISteamUGC015,
|
||||||
public ISteamUGC016,
|
public ISteamUGC016,
|
||||||
public ISteamUGC017,
|
public ISteamUGC017,
|
||||||
|
public ISteamUGC018,
|
||||||
public ISteamUGC
|
public ISteamUGC
|
||||||
{
|
{
|
||||||
constexpr static const char ugc_favorits_file[] = "favorites.txt";
|
constexpr static const char ugc_favorits_file[] = "favorites.txt";
|
||||||
@ -134,6 +135,10 @@ public:
|
|||||||
|
|
||||||
bool GetQueryUGCKeyValueTag( UGCQueryHandle_t handle, uint32 index, const char *pchKey, STEAM_OUT_STRING_COUNT(cchValueSize) char *pchValue, uint32 cchValueSize );
|
bool GetQueryUGCKeyValueTag( UGCQueryHandle_t handle, uint32 index, const char *pchKey, STEAM_OUT_STRING_COUNT(cchValueSize) char *pchValue, uint32 cchValueSize );
|
||||||
|
|
||||||
|
uint32 Steam_UGC::GetNumSupportedGameVersions( UGCQueryHandle_t handle, uint32 index );
|
||||||
|
|
||||||
|
bool GetSupportedGameVersionData( UGCQueryHandle_t handle, uint32 index, uint32 versionIndex, STEAM_OUT_STRING_COUNT( cchGameBranchSize ) char *pchGameBranchMin, STEAM_OUT_STRING_COUNT( cchGameBranchSize ) char *pchGameBranchMax, uint32 cchGameBranchSize );
|
||||||
|
|
||||||
uint32 GetQueryUGCContentDescriptors( UGCQueryHandle_t handle, uint32 index, EUGCContentDescriptorID *pvecDescriptors, uint32 cMaxEntries );
|
uint32 GetQueryUGCContentDescriptors( UGCQueryHandle_t handle, uint32 index, EUGCContentDescriptorID *pvecDescriptors, uint32 cMaxEntries );
|
||||||
|
|
||||||
// Release the request to free up memory, after retrieving results
|
// Release the request to free up memory, after retrieving results
|
||||||
@ -167,6 +172,8 @@ public:
|
|||||||
|
|
||||||
bool SetAllowCachedResponse( UGCQueryHandle_t handle, uint32 unMaxAgeSeconds );
|
bool SetAllowCachedResponse( UGCQueryHandle_t handle, uint32 unMaxAgeSeconds );
|
||||||
|
|
||||||
|
bool Steam_UGC::SetAdminQuery( UGCUpdateHandle_t handle, bool bAdminQuery );
|
||||||
|
|
||||||
// Options only for querying user UGC
|
// Options only for querying user UGC
|
||||||
bool SetCloudFileNameFilter( UGCQueryHandle_t handle, const char *pMatchCloudFileName );
|
bool SetCloudFileNameFilter( UGCQueryHandle_t handle, const char *pMatchCloudFileName );
|
||||||
|
|
||||||
@ -260,6 +267,8 @@ public:
|
|||||||
|
|
||||||
bool RemoveContentDescriptor( UGCUpdateHandle_t handle, EUGCContentDescriptorID descid );
|
bool RemoveContentDescriptor( UGCUpdateHandle_t handle, EUGCContentDescriptorID descid );
|
||||||
|
|
||||||
|
bool Steam_UGC::SetRequiredGameVersions( UGCUpdateHandle_t handle, const char *pszGameBranchMin, const char *pszGameBranchMax );
|
||||||
|
|
||||||
STEAM_CALL_RESULT( SubmitItemUpdateResult_t )
|
STEAM_CALL_RESULT( SubmitItemUpdateResult_t )
|
||||||
SteamAPICall_t SubmitItemUpdate( UGCUpdateHandle_t handle, const char *pchChangeNote );
|
SteamAPICall_t SubmitItemUpdate( UGCUpdateHandle_t handle, const char *pchChangeNote );
|
||||||
// commit update process started with StartItemUpdate()
|
// commit update process started with StartItemUpdate()
|
||||||
|
Loading…
Reference in New Issue
Block a user