mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2025-12-05 11:44:53 +01:00
Update to sdk 1.46
This commit is contained in:
parent
bb9c516775
commit
8723dad025
36 changed files with 2197 additions and 129 deletions
|
|
@ -36,6 +36,7 @@ public ISteamUGC007,
|
|||
public ISteamUGC008,
|
||||
public ISteamUGC009,
|
||||
public ISteamUGC010,
|
||||
public ISteamUGC012,
|
||||
public ISteamUGC
|
||||
{
|
||||
class Settings *settings;
|
||||
|
|
@ -245,6 +246,11 @@ bool GetQueryUGCKeyValueTag( UGCQueryHandle_t handle, uint32 index, uint32 keyVa
|
|||
return false;
|
||||
}
|
||||
|
||||
bool GetQueryUGCKeyValueTag( UGCQueryHandle_t handle, uint32 index, const char *pchKey, STEAM_OUT_STRING_COUNT(cchValueSize) char *pchValue, uint32 cchValueSize )
|
||||
{
|
||||
PRINT_DEBUG("Steam_UGC::GetQueryUGCKeyValueTag2\n");
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
// Release the request to free up memory, after retrieving results
|
||||
|
|
@ -487,6 +493,13 @@ bool SetAllowLegacyUpload( UGCUpdateHandle_t handle, bool bAllowLegacyUpload )
|
|||
return false;
|
||||
}
|
||||
|
||||
bool RemoveAllItemKeyValueTags( UGCUpdateHandle_t handle )
|
||||
{
|
||||
PRINT_DEBUG("Steam_UGC::RemoveAllItemKeyValueTags\n");
|
||||
return false;
|
||||
}
|
||||
// remove all existing key-value tags (you can add new ones via the AddItemKeyValueTag function)
|
||||
|
||||
bool RemoveItemKeyValueTags( UGCUpdateHandle_t handle, const char *pchKey )
|
||||
{
|
||||
PRINT_DEBUG("Steam_UGC::RemoveItemKeyValueTags\n");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue