From cd4a31f4e0dd3d6624853ed94ed66313992dc2b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Bernon?= Date: Wed, 4 Oct 2023 22:02:15 +0200 Subject: [PATCH] lsteamclient: Use int8_t instead of ambiguous sized bool. CW-Bug-Id: #22729 --- lsteamclient/gen_wrapper.py | 5 +- lsteamclient/steam_networking_manual.c | 42 +- lsteamclient/steamclient_main.c | 12 +- lsteamclient/steamclient_private.h | 1 - lsteamclient/steamclient_structs.h | 1 - lsteamclient/steamclient_structs_generated.h | 448 +- lsteamclient/unix_private_generated.h | 4730 +++++++-------- lsteamclient/unixlib.cpp | 6 +- lsteamclient/unixlib.h | 17 +- lsteamclient/unixlib_generated.h | 5361 +++++++++--------- lsteamclient/winISteamApps.c | 136 +- lsteamclient/winISteamClient.c | 52 +- lsteamclient/winISteamController.c | 58 +- lsteamclient/winISteamFriends.c | 332 +- lsteamclient/winISteamGameCoordinator.c | 2 +- lsteamclient/winISteamGameServer.c | 224 +- lsteamclient/winISteamGameServerStats.c | 16 +- lsteamclient/winISteamHTMLSurface.c | 76 +- lsteamclient/winISteamHTTP.c | 124 +- lsteamclient/winISteamInput.c | 48 +- lsteamclient/winISteamInventory.c | 152 +- lsteamclient/winISteamMasterServerUpdater.c | 12 +- lsteamclient/winISteamMatchmaking.c | 194 +- lsteamclient/winISteamMatchmakingServers.c | 4 +- lsteamclient/winISteamMusic.c | 4 +- lsteamclient/winISteamMusicRemote.c | 64 +- lsteamclient/winISteamNetworking.c | 184 +- lsteamclient/winISteamNetworkingMessages.c | 6 +- lsteamclient/winISteamNetworkingSockets.c | 154 +- lsteamclient/winISteamNetworkingUtils.c | 58 +- lsteamclient/winISteamParentalSettings.c | 12 +- lsteamclient/winISteamParties.c | 10 +- lsteamclient/winISteamRemotePlay.c | 10 +- lsteamclient/winISteamRemoteStorage.c | 536 +- lsteamclient/winISteamScreenshots.c | 24 +- lsteamclient/winISteamUGC.c | 1342 ++--- lsteamclient/winISteamUnifiedMessages.c | 8 +- lsteamclient/winISteamUser.c | 298 +- lsteamclient/winISteamUserStats.c | 412 +- lsteamclient/winISteamUtils.c | 172 +- lsteamclient/winISteamVideo.c | 6 +- 41 files changed, 7674 insertions(+), 7679 deletions(-) diff --git a/lsteamclient/gen_wrapper.py b/lsteamclient/gen_wrapper.py index 14070320..0eeb0fe2 100755 --- a/lsteamclient/gen_wrapper.py +++ b/lsteamclient/gen_wrapper.py @@ -890,9 +890,9 @@ def declspec(decl, name, prefix, wrapped=False): if type_name.startswith('ISteam'): return f'{const}void /*{type_name}*/{name}' - if type_name in ('void', 'bool', 'char', 'float', 'double'): + if type_name in ('void', 'char', 'float', 'double'): return f'{const}{type_name}{name}' - if type_name.startswith(('int', 'long', 'short', 'signed')): + if type_name.startswith(('bool', 'int', 'long', 'short', 'signed')): return f'{const}int{decl.get_size() * 8}_t{name}' if type_name.startswith(('uint', 'unsigned')): return f'{const}uint{decl.get_size() * 8}_t{name}' @@ -1515,7 +1515,6 @@ with open(u"unixlib_generated.h", "w") as file: out(u'#include \n') out(u'#include \n') out(u'#include \n') - out(u'#include \n') out(u'\n') out(u'#ifdef __cplusplus\n') out(u'extern "C" {\n') diff --git a/lsteamclient/steam_networking_manual.c b/lsteamclient/steam_networking_manual.c index bbbf2214..85af5f01 100644 --- a/lsteamclient/steam_networking_manual.c +++ b/lsteamclient/steam_networking_manual.c @@ -20,7 +20,7 @@ static void networking_message_pool_release( struct networking_message_pool *poo } } -static bool networking_message_pool_alloc_data( uint32_t count, struct networking_message_pool *pool ) +static BOOL networking_message_pool_alloc_data( uint32_t count, struct networking_message_pool *pool ) { uint32_t i, size; char *ptr; @@ -29,7 +29,7 @@ static bool networking_message_pool_alloc_data( uint32_t count, struct networkin if (!(pool->message_data = HeapAlloc( GetProcessHeap(), 0, size ))) { ERR( "Failed to allocate memory for networking messages\n" ); - return false; + return FALSE; } for (i = 0, ptr = pool->message_data; i < count; i++) @@ -38,7 +38,7 @@ static bool networking_message_pool_alloc_data( uint32_t count, struct networkin ptr += *pool->messages[i].p_size; } - return true; + return TRUE; } static void W_STDCALL w_SteamNetworkingMessage_t_144_FreeData( w_SteamNetworkingMessage_t_144 *msg ) @@ -67,7 +67,7 @@ static w_SteamNetworkingMessage_t_144 *networking_message_init_144( struct netwo return &message->w_msg_144; } -static bool networking_message_pool_create_144( uint32_t count, w_SteamNetworkingMessage_t_144 **messages ) +static BOOL networking_message_pool_create_144( uint32_t count, w_SteamNetworkingMessage_t_144 **messages ) { uint32_t size = offsetof( struct networking_message_pool, messages[count] ); struct networking_message_pool *pool; @@ -75,15 +75,15 @@ static bool networking_message_pool_create_144( uint32_t count, w_SteamNetworkin if (!(pool = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, size ))) { ERR( "Failed to allocate memory for networking messages\n" ); - return false; + return FALSE; } pool->ref = count; while (count--) messages[count] = networking_message_init_144( &pool->messages[count], pool ); - return true; + return TRUE; } -static bool networking_message_pool_receive_144( int32_t capacity, int32_t count, w_SteamNetworkingMessage_t_144 **messages ) +static BOOL networking_message_pool_receive_144( int32_t capacity, int32_t count, w_SteamNetworkingMessage_t_144 **messages ) { struct networking_message_pool *pool = CONTAINING_RECORD( messages[0], struct networking_message, w_msg_144 )->pool; int32_t i; @@ -93,11 +93,11 @@ static bool networking_message_pool_receive_144( int32_t capacity, int32_t count if (count > 0) { struct steamclient_networking_messages_receive_144_params params = {.count = count, .w_msgs = messages}; - if (!networking_message_pool_alloc_data( count, pool )) return false; + if (!networking_message_pool_alloc_data( count, pool )) return FALSE; STEAMCLIENT_CALL( steamclient_networking_messages_receive_144, ¶ms ); } - return true; + return TRUE; } static void W_STDCALL w_SteamNetworkingMessage_t_147_FreeData( w_SteamNetworkingMessage_t_147 *msg ) @@ -135,7 +135,7 @@ static w_SteamNetworkingMessage_t_147 *networking_message_init_147( struct netwo return &message->w_msg_147; } -static bool networking_message_pool_create_147( uint32_t count, w_SteamNetworkingMessage_t_147 **messages ) +static BOOL networking_message_pool_create_147( uint32_t count, w_SteamNetworkingMessage_t_147 **messages ) { uint32_t size = offsetof( struct networking_message_pool, messages[count] ); struct networking_message_pool *pool; @@ -143,15 +143,15 @@ static bool networking_message_pool_create_147( uint32_t count, w_SteamNetworkin if (!(pool = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, size ))) { ERR( "Failed to allocate memory for networking messages\n" ); - return false; + return FALSE; } pool->ref = count; while (count--) messages[count] = networking_message_init_147( &pool->messages[count], pool ); - return true; + return TRUE; } -static bool networking_message_pool_receive_147( uint32_t capacity, uint32_t count, w_SteamNetworkingMessage_t_147 **messages ) +static BOOL networking_message_pool_receive_147( uint32_t capacity, uint32_t count, w_SteamNetworkingMessage_t_147 **messages ) { struct networking_message_pool *pool = CONTAINING_RECORD( messages[0], struct networking_message, w_msg_147 )->pool; uint32_t i; @@ -161,11 +161,11 @@ static bool networking_message_pool_receive_147( uint32_t capacity, uint32_t cou if (count) { struct steamclient_networking_messages_receive_147_params params = {.count = count, .w_msgs = messages}; - if (!networking_message_pool_alloc_data( count, pool )) return false; + if (!networking_message_pool_alloc_data( count, pool )) return FALSE; STEAMCLIENT_CALL( steamclient_networking_messages_receive_147, ¶ms ); } - return true; + return TRUE; } static void W_STDCALL w_SteamNetworkingMessage_t_153a_FreeData( w_SteamNetworkingMessage_t_153a *msg ) @@ -203,7 +203,7 @@ static w_SteamNetworkingMessage_t_153a *networking_message_init_153a( struct net return &message->w_msg_153a; } -static bool networking_message_pool_create_153a( uint32_t count, w_SteamNetworkingMessage_t_153a **messages ) +static BOOL networking_message_pool_create_153a( uint32_t count, w_SteamNetworkingMessage_t_153a **messages ) { uint32_t size = offsetof( struct networking_message_pool, messages[count] ); struct networking_message_pool *pool; @@ -211,15 +211,15 @@ static bool networking_message_pool_create_153a( uint32_t count, w_SteamNetworki if (!(pool = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, size ))) { ERR( "Failed to allocate memory for networking messages\n" ); - return false; + return FALSE; } pool->ref = count; while (count--) messages[count] = networking_message_init_153a( &pool->messages[count], pool ); - return true; + return TRUE; } -static bool networking_message_pool_receive_153a( uint32_t capacity, uint32_t count, w_SteamNetworkingMessage_t_153a **messages ) +static BOOL networking_message_pool_receive_153a( uint32_t capacity, uint32_t count, w_SteamNetworkingMessage_t_153a **messages ) { struct networking_message_pool *pool = CONTAINING_RECORD( messages[0], struct networking_message, w_msg_153a )->pool; uint32_t i; @@ -229,11 +229,11 @@ static bool networking_message_pool_receive_153a( uint32_t capacity, uint32_t co if (count) { struct steamclient_networking_messages_receive_153a_params params = {.count = count, .w_msgs = messages}; - if (!networking_message_pool_alloc_data( count, pool )) return false; + if (!networking_message_pool_alloc_data( count, pool )) return FALSE; STEAMCLIENT_CALL( steamclient_networking_messages_receive_153a, ¶ms ); } - return true; + return TRUE; } /* ISteamNetworkingSockets_SteamNetworkingSockets002 */ diff --git a/lsteamclient/steamclient_main.c b/lsteamclient/steamclient_main.c index 514841d1..883c6e91 100644 --- a/lsteamclient/steamclient_main.c +++ b/lsteamclient/steamclient_main.c @@ -74,7 +74,7 @@ BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, void *reserved) static BYTE *alloc_start, *alloc_end; -static bool allocated_from_steamclient_dll( void *ptr ) +static int8_t allocated_from_steamclient_dll( void *ptr ) { return (BYTE *)ptr >= alloc_start && (BYTE *)ptr < alloc_end; } @@ -402,7 +402,7 @@ static void execute_pending_callbacks(void) static void *last_callback_data; -bool CDECL Steam_FreeLastCallback( int32_t pipe ) +int8_t CDECL Steam_FreeLastCallback( int32_t pipe ) { struct steamclient_Steam_FreeLastCallback_params params = {.pipe = pipe}; TRACE( "%u\n", pipe ); @@ -416,7 +416,7 @@ bool CDECL Steam_FreeLastCallback( int32_t pipe ) return params._ret; } -bool CDECL Steam_BGetCallback( int32_t pipe, w_CallbackMsg_t *win_msg, int32_t *ignored ) +int8_t CDECL Steam_BGetCallback( int32_t pipe, w_CallbackMsg_t *win_msg, int32_t *ignored ) { u_CallbackMsg_t u_msg; struct steamclient_Steam_BGetCallback_params params = @@ -474,8 +474,8 @@ next_event: return params._ret; } -bool CDECL Steam_GetAPICallResult( int32_t pipe, uint64_t call, void *w_callback, - int w_callback_len, int id, bool *failed ) +int8_t CDECL Steam_GetAPICallResult( int32_t pipe, uint64_t call, void *w_callback, + int w_callback_len, int id, int8_t *failed ) { struct steamclient_Steam_GetAPICallResult_params params = { @@ -531,7 +531,7 @@ void CDECL Breakpad_SteamWriteMiniDumpUsingExceptionInfoWithBuildId(int a, int b TRACE("\n"); } -bool CDECL Steam_IsKnownInterface( const char *pchVersion ) +int8_t CDECL Steam_IsKnownInterface( const char *pchVersion ) { struct steamclient_Steam_IsKnownInterface_params params = {.version = pchVersion}; TRACE("%s\n", pchVersion); diff --git a/lsteamclient/steamclient_private.h b/lsteamclient/steamclient_private.h index 007ac95f..ec2bda72 100644 --- a/lsteamclient/steamclient_private.h +++ b/lsteamclient/steamclient_private.h @@ -5,7 +5,6 @@ #include #include #include -#include #include #include diff --git a/lsteamclient/steamclient_structs.h b/lsteamclient/steamclient_structs.h index 80f5385a..0e57b668 100644 --- a/lsteamclient/steamclient_structs.h +++ b/lsteamclient/steamclient_structs.h @@ -4,7 +4,6 @@ #include #include #include -#include #include #include diff --git a/lsteamclient/steamclient_structs_generated.h b/lsteamclient/steamclient_structs_generated.h index 3de6f970..07fec1f3 100644 --- a/lsteamclient/steamclient_structs_generated.h +++ b/lsteamclient/steamclient_structs_generated.h @@ -107,8 +107,8 @@ typedef struct AppDataChanged_t AppDataChanged_t; struct AppDataChanged_t { uint32_t m_nAppID; - bool m_bBySteamUI; - bool m_bCDDBUpdate; + int8_t m_bBySteamUI; + int8_t m_bCDDBUpdate; uint8_t __pad_6[2]; }; #pragma pack( pop ) @@ -262,7 +262,7 @@ struct ControllerAnalogActionData_t uint32_t eMode; float x; float y; - bool bActive; + int8_t bActive; }; #pragma pack( pop ) @@ -270,8 +270,8 @@ typedef struct ControllerDigitalActionData_t ControllerDigitalActionData_t; #pragma pack( push, 1 ) struct ControllerDigitalActionData_t { - bool bState; - bool bActive; + int8_t bState; + int8_t bActive; }; #pragma pack( pop ) @@ -304,7 +304,7 @@ typedef struct DownloadClanActivityCountsResult_t DownloadClanActivityCountsResu #pragma pack( push, 1 ) struct DownloadClanActivityCountsResult_t { - bool m_bSuccess; + int8_t m_bSuccess; }; #pragma pack( pop ) @@ -314,7 +314,7 @@ struct DurationControl_t_147 { uint32_t m_eResult; uint32_t m_appid; - bool m_bApplicable; + int8_t m_bApplicable; uint8_t __pad_9[3]; int32_t m_csecsLast5h; uint32_t m_progress; @@ -330,7 +330,7 @@ struct DurationControl_t_145 { uint32_t m_eResult; uint32_t m_appid; - bool m_bApplicable; + int8_t m_bApplicable; uint8_t __pad_9[3]; int32_t m_csecsLast5h; uint32_t m_progress; @@ -360,11 +360,11 @@ struct EquippedProfileItems_t { uint32_t m_eResult; CSteamID m_steamID; - bool m_bHasAnimatedAvatar; - bool m_bHasAvatarFrame; - bool m_bHasProfileModifier; - bool m_bHasProfileBackground; - bool m_bHasMiniProfileBackground; + int8_t m_bHasAnimatedAvatar; + int8_t m_bHasAvatarFrame; + int8_t m_bHasProfileModifier; + int8_t m_bHasProfileBackground; + int8_t m_bHasMiniProfileBackground; uint8_t __pad_17[3]; }; #pragma pack( pop ) @@ -386,7 +386,7 @@ struct FavoritesListChanged_t_128x uint32_t m_nConnPort; uint32_t m_nAppID; uint32_t m_nFlags; - bool m_bAdd; + int8_t m_bAdd; uint8_t __pad_21[3]; uint32_t m_unAccountId; }; @@ -401,7 +401,7 @@ struct FavoritesListChanged_t_099u uint32_t m_nConnPort; uint32_t m_nAppID; uint32_t m_nFlags; - bool m_bAdd; + int8_t m_bAdd; uint8_t __pad_21[3]; }; #pragma pack( pop ) @@ -480,7 +480,7 @@ struct FriendsIsFollowing_t { uint32_t m_eResult; CSteamID m_steamID; - bool m_bIsFollowing; + int8_t m_bIsFollowing; uint8_t __pad_13[3]; }; #pragma pack( pop ) @@ -507,7 +507,7 @@ struct GSClientAchievementStatus_t { uint64_t m_SteamID; char (m_pchAchievement)[128]; - bool m_bUnlocked; + int8_t m_bUnlocked; uint8_t __pad_137[7]; }; #pragma pack( pop ) @@ -545,8 +545,8 @@ struct GSClientGroupStatus_t { CSteamID m_SteamIDUser; CSteamID m_SteamIDGroup; - bool m_bMember; - bool m_bOfficer; + int8_t m_bMember; + int8_t m_bOfficer; }; #pragma pack( pop ) @@ -619,8 +619,8 @@ struct GameConnectedChatLeave_t { CSteamID m_steamIDClanChat; CSteamID m_steamIDUser; - bool m_bKicked; - bool m_bDropped; + int8_t m_bKicked; + int8_t m_bDropped; }; #pragma pack( pop ) @@ -657,7 +657,7 @@ typedef struct GameOverlayActivated_t_158 GameOverlayActivated_t_158; struct GameOverlayActivated_t_158 { uint8_t m_bActive; - bool m_bUserInitiated; + int8_t m_bUserInitiated; uint8_t __pad_2[2]; uint32_t m_nAppID; uint32_t m_dwOverlayPID; @@ -669,7 +669,7 @@ typedef struct GameOverlayActivated_t_156 GameOverlayActivated_t_156; struct GameOverlayActivated_t_156 { uint8_t m_bActive; - bool m_bUserInitiated; + int8_t m_bUserInitiated; uint8_t __pad_2[2]; uint32_t m_nAppID; }; @@ -717,8 +717,8 @@ struct GameStatsSessionIssued_t { uint64_t m_ulSessionID; uint32_t m_eResult; - bool m_bCollectingAny; - bool m_bCollectingDetails; + int8_t m_bCollectingAny; + int8_t m_bCollectingDetails; uint8_t __pad_14[2]; }; #pragma pack( pop ) @@ -735,7 +735,7 @@ typedef struct GamepadTextInputDismissed_t_156 GamepadTextInputDismissed_t_156; #pragma pack( push, 4 ) struct GamepadTextInputDismissed_t_156 { - bool m_bSubmitted; + int8_t m_bSubmitted; uint8_t __pad_1[3]; uint32_t m_unSubmittedText; uint32_t m_unAppID; @@ -746,7 +746,7 @@ typedef struct GamepadTextInputDismissed_t_121 GamepadTextInputDismissed_t_121; #pragma pack( push, 4 ) struct GamepadTextInputDismissed_t_121 { - bool m_bSubmitted; + int8_t m_bSubmitted; uint8_t __pad_1[3]; uint32_t m_unSubmittedText; }; @@ -787,9 +787,9 @@ struct GetUserItemVoteResult_t { uint64_t m_nPublishedFileId; uint32_t m_eResult; - bool m_bVotedUp; - bool m_bVotedDown; - bool m_bVoteSkipped; + int8_t m_bVotedUp; + int8_t m_bVotedDown; + int8_t m_bVoteSkipped; uint8_t __pad_15[1]; }; #pragma pack( pop ) @@ -846,8 +846,8 @@ typedef struct HTML_CanGoBackAndForward_t HTML_CanGoBackAndForward_t; struct HTML_CanGoBackAndForward_t { uint32_t unBrowserHandle; - bool bCanGoBack; - bool bCanGoForward; + int8_t bCanGoBack; + int8_t bCanGoForward; uint8_t __pad_6[2]; }; #pragma pack( pop ) @@ -884,7 +884,7 @@ struct HTML_HorizontalScroll_t uint32_t unScrollMax; uint32_t unScrollCurrent; float flPageScale; - bool bVisible; + int8_t bVisible; uint8_t __pad_17[3]; uint32_t unPageSize; }; @@ -937,7 +937,7 @@ struct HTML_VerticalScroll_t uint32_t unScrollMax; uint32_t unScrollCurrent; float flPageScale; - bool bVisible; + int8_t bVisible; uint8_t __pad_17[3]; uint32_t unPageSize; }; @@ -966,7 +966,7 @@ struct InputAnalogActionData_t uint32_t eMode; float x; float y; - bool bActive; + int8_t bActive; }; #pragma pack( pop ) @@ -974,8 +974,8 @@ typedef struct InputDigitalActionData_t InputDigitalActionData_t; #pragma pack( push, 1 ) struct InputDigitalActionData_t { - bool bState; - bool bActive; + int8_t bState; + int8_t bActive; }; #pragma pack( pop ) @@ -1117,7 +1117,7 @@ struct LobbyEnter_t { uint64_t m_ulSteamIDLobby; uint32_t m_rgfChatPermissions; - bool m_bLocked; + int8_t m_bLocked; uint8_t __pad_13[3]; uint32_t m_EChatRoomEnterResponse; uint8_t __pad_20[4]; @@ -1195,7 +1195,7 @@ typedef struct MarketEligibilityResponse_t MarketEligibilityResponse_t; #pragma pack( push, 4 ) struct MarketEligibilityResponse_t { - bool m_bAllowed; + int8_t m_bAllowed; uint8_t __pad_1[3]; uint32_t m_eNotAllowedReason; uint32_t m_rtAllowedAtTime; @@ -1257,7 +1257,7 @@ typedef struct MusicPlayerWantsLooped_t MusicPlayerWantsLooped_t; #pragma pack( push, 1 ) struct MusicPlayerWantsLooped_t { - bool m_bLooped; + int8_t m_bLooped; }; #pragma pack( pop ) @@ -1305,7 +1305,7 @@ typedef struct MusicPlayerWantsShuffled_t MusicPlayerWantsShuffled_t; #pragma pack( push, 1 ) struct MusicPlayerWantsShuffled_t { - bool m_bShuffled; + int8_t m_bShuffled; }; #pragma pack( pop ) @@ -1405,7 +1405,7 @@ typedef struct PSNGameBootInviteResult_t PSNGameBootInviteResult_t; #pragma pack( push, 1 ) struct PSNGameBootInviteResult_t { - bool m_bGameBootInviteExists; + int8_t m_bGameBootInviteExists; CSteamID m_steamIDLobby; }; #pragma pack( pop ) @@ -1521,7 +1521,7 @@ typedef struct RemoteStoragePublishFileProgress_t RemoteStoragePublishFileProgre struct RemoteStoragePublishFileProgress_t { double m_dPercentFile; - bool m_bPreview; + int8_t m_bPreview; uint8_t __pad_9[7]; }; #pragma pack( pop ) @@ -1616,7 +1616,7 @@ struct SearchForGameResultCallback_t int32_t m_nCountPlayersInGame; int32_t m_nCountAcceptedGame; CSteamID m_steamIDHost; - bool m_bFinalCallback; + int8_t m_bFinalCallback; uint8_t __pad_29[3]; }; #pragma pack( pop ) @@ -1625,8 +1625,8 @@ typedef struct SetPersonaNameResponse_t SetPersonaNameResponse_t; #pragma pack( push, 4 ) struct SetPersonaNameResponse_t { - bool m_bSuccess; - bool m_bLocalSuccess; + int8_t m_bSuccess; + int8_t m_bLocalSuccess; uint8_t __pad_2[2]; uint32_t m_result; }; @@ -1638,7 +1638,7 @@ struct SetUserItemVoteResult_t { uint64_t m_nPublishedFileId; uint32_t m_eResult; - bool m_bVoteUp; + int8_t m_bVoteUp; uint8_t __pad_13[3]; }; #pragma pack( pop ) @@ -1789,7 +1789,7 @@ struct SteamInventoryEligiblePromoItemDefIDs_t uint32_t m_result; CSteamID m_steamID; int32_t m_numEligiblePromoItemDefs; - bool m_bCachedData; + int8_t m_bCachedData; uint8_t __pad_17[3]; }; #pragma pack( pop ) @@ -2021,7 +2021,7 @@ typedef struct SteamServerConnectFailure_t_135 SteamServerConnectFailure_t_135; struct SteamServerConnectFailure_t_135 { uint32_t m_eResult; - bool m_bStillRetrying; + int8_t m_bStillRetrying; uint8_t __pad_5[3]; }; #pragma pack( pop ) @@ -2066,7 +2066,7 @@ struct SteamUGCQueryCompleted_t_143 uint32_t m_eResult; uint32_t m_unNumResultsReturned; uint32_t m_unTotalMatchingResults; - bool m_bCachedData; + int8_t m_bCachedData; char (m_rgchNextCursor)[256]; uint8_t __pad_277[3]; }; @@ -2080,7 +2080,7 @@ struct SteamUGCQueryCompleted_t_128x uint32_t m_eResult; uint32_t m_unNumResultsReturned; uint32_t m_unTotalMatchingResults; - bool m_bCachedData; + int8_t m_bCachedData; uint8_t __pad_21[3]; }; #pragma pack( pop ) @@ -2129,7 +2129,7 @@ typedef struct SubmitItemUpdateResult_t_141 SubmitItemUpdateResult_t_141; struct SubmitItemUpdateResult_t_141 { uint32_t m_eResult; - bool m_bUserNeedsToAcceptWorkshopLegalAgreement; + int8_t m_bUserNeedsToAcceptWorkshopLegalAgreement; uint8_t __pad_5[3]; uint64_t m_nPublishedFileId; }; @@ -2140,7 +2140,7 @@ typedef struct SubmitItemUpdateResult_t_130 SubmitItemUpdateResult_t_130; struct SubmitItemUpdateResult_t_130 { uint32_t m_eResult; - bool m_bUserNeedsToAcceptWorkshopLegalAgreement; + int8_t m_bUserNeedsToAcceptWorkshopLegalAgreement; uint8_t __pad_5[3]; }; #pragma pack( pop ) @@ -2150,7 +2150,7 @@ typedef struct TimedTrialStatus_t TimedTrialStatus_t; struct TimedTrialStatus_t { uint32_t m_unAppID; - bool m_bIsOffline; + int8_t m_bIsOffline; uint8_t __pad_5[3]; uint32_t m_unSecondsAllowed; uint32_t m_unSecondsPlayed; @@ -2171,7 +2171,7 @@ struct UserAchievementIconFetched_t { CGameID m_nGameID; char (m_rgchAchievementName)[128]; - bool m_bAchieved; + int8_t m_bAchieved; uint8_t __pad_137[3]; int32_t m_nIconHandle; }; @@ -2182,7 +2182,7 @@ typedef struct UserAchievementStored_t UserAchievementStored_t; struct UserAchievementStored_t { uint64_t m_nGameID; - bool m_bGroupAchievement; + int8_t m_bGroupAchievement; char (m_rgchAchievementName)[128]; uint8_t __pad_137[3]; uint32_t m_nCurProgress; @@ -2197,7 +2197,7 @@ struct UserFavoriteItemsListChanged_t { uint64_t m_nPublishedFileId; uint32_t m_eResult; - bool m_bWasAddRequest; + int8_t m_bWasAddRequest; uint8_t __pad_13[3]; }; #pragma pack( pop ) @@ -2284,8 +2284,8 @@ struct WorkshopEULAStatus_t uint32_t m_nAppID; uint32_t m_unVersion; uint32_t m_rtAction; - bool m_bAccepted; - bool m_bNeedsAction; + int8_t m_bAccepted; + int8_t m_bNeedsAction; uint8_t __pad_18[2]; }; #pragma pack( pop ) @@ -2296,8 +2296,8 @@ struct gameserveritem_t_105 { servernetadr_t m_NetAdr; int32_t m_nPing; - bool m_bHadSuccessfulResponse; - bool m_bDoNotRefresh; + int8_t m_bHadSuccessfulResponse; + int8_t m_bDoNotRefresh; char (m_szGameDir)[32]; char (m_szMap)[32]; char (m_szGameDescription)[64]; @@ -2306,8 +2306,8 @@ struct gameserveritem_t_105 int32_t m_nPlayers; int32_t m_nMaxPlayers; int32_t m_nBotPlayers; - bool m_bPassword; - bool m_bSecure; + int8_t m_bPassword; + int8_t m_bSecure; uint8_t __pad_162[2]; uint32_t m_ulTimeLastPlayed; int32_t m_nServerVersion; @@ -2323,8 +2323,8 @@ struct gameserveritem_t_099u { servernetadr_t m_NetAdr; int32_t m_nPing; - bool m_bHadSuccessfulResponse; - bool m_bDoNotRefresh; + int8_t m_bHadSuccessfulResponse; + int8_t m_bDoNotRefresh; char (m_szGameDir)[32]; char (m_szMap)[32]; char (m_szGameDescription)[64]; @@ -2333,8 +2333,8 @@ struct gameserveritem_t_099u int32_t m_nPlayers; int32_t m_nMaxPlayers; int32_t m_nBotPlayers; - bool m_bPassword; - bool m_bSecure; + int8_t m_bPassword; + int8_t m_bSecure; uint8_t __pad_162[2]; uint32_t m_ulTimeLastPlayed; int32_t m_nServerVersion; @@ -2903,9 +2903,9 @@ struct w64_SteamUGCDetails_t_128x uint32_t m_rtimeUpdated; uint32_t m_rtimeAddedToUserList; uint32_t m_eVisibility; - bool m_bBanned; - bool m_bAcceptedForUse; - bool m_bTagsTruncated; + int8_t m_bBanned; + int8_t m_bAcceptedForUse; + int8_t m_bTagsTruncated; W64_ARRAY(char, 1025, m_rgchTags); uint8_t __pad_9212[4]; uint64_t m_hFile; @@ -2941,9 +2941,9 @@ struct u64_SteamUGCDetails_t_128x uint32_t m_rtimeUpdated; uint32_t m_rtimeAddedToUserList; uint32_t m_eVisibility; - bool m_bBanned; - bool m_bAcceptedForUse; - bool m_bTagsTruncated; + int8_t m_bBanned; + int8_t m_bAcceptedForUse; + int8_t m_bTagsTruncated; U64_ARRAY(char, 1025, m_rgchTags); uint64_t m_hFile; uint64_t m_hPreviewFile; @@ -2977,9 +2977,9 @@ struct w32_SteamUGCDetails_t_128x uint32_t m_rtimeUpdated; uint32_t m_rtimeAddedToUserList; uint32_t m_eVisibility; - bool m_bBanned; - bool m_bAcceptedForUse; - bool m_bTagsTruncated; + int8_t m_bBanned; + int8_t m_bAcceptedForUse; + int8_t m_bTagsTruncated; W32_ARRAY(char, 1025, m_rgchTags); uint8_t __pad_9212[4]; uint64_t m_hFile; @@ -3015,9 +3015,9 @@ struct u32_SteamUGCDetails_t_128x uint32_t m_rtimeUpdated; uint32_t m_rtimeAddedToUserList; uint32_t m_eVisibility; - bool m_bBanned; - bool m_bAcceptedForUse; - bool m_bTagsTruncated; + int8_t m_bBanned; + int8_t m_bAcceptedForUse; + int8_t m_bTagsTruncated; U32_ARRAY(char, 1025, m_rgchTags); uint64_t m_hFile; uint64_t m_hPreviewFile; @@ -3060,9 +3060,9 @@ struct w64_SteamUGCDetails_t_126 uint32_t m_rtimeUpdated; uint32_t m_rtimeAddedToUserList; uint32_t m_eVisibility; - bool m_bBanned; - bool m_bAcceptedForUse; - bool m_bTagsTruncated; + int8_t m_bBanned; + int8_t m_bAcceptedForUse; + int8_t m_bTagsTruncated; W64_ARRAY(char, 1025, m_rgchTags); uint8_t __pad_9212[4]; uint64_t m_hFile; @@ -3096,9 +3096,9 @@ struct u64_SteamUGCDetails_t_126 uint32_t m_rtimeUpdated; uint32_t m_rtimeAddedToUserList; uint32_t m_eVisibility; - bool m_bBanned; - bool m_bAcceptedForUse; - bool m_bTagsTruncated; + int8_t m_bBanned; + int8_t m_bAcceptedForUse; + int8_t m_bTagsTruncated; U64_ARRAY(char, 1025, m_rgchTags); uint64_t m_hFile; uint64_t m_hPreviewFile; @@ -3131,9 +3131,9 @@ struct w32_SteamUGCDetails_t_126 uint32_t m_rtimeUpdated; uint32_t m_rtimeAddedToUserList; uint32_t m_eVisibility; - bool m_bBanned; - bool m_bAcceptedForUse; - bool m_bTagsTruncated; + int8_t m_bBanned; + int8_t m_bAcceptedForUse; + int8_t m_bTagsTruncated; W32_ARRAY(char, 1025, m_rgchTags); uint8_t __pad_9212[4]; uint64_t m_hFile; @@ -3167,9 +3167,9 @@ struct u32_SteamUGCDetails_t_126 uint32_t m_rtimeUpdated; uint32_t m_rtimeAddedToUserList; uint32_t m_eVisibility; - bool m_bBanned; - bool m_bAcceptedForUse; - bool m_bTagsTruncated; + int8_t m_bBanned; + int8_t m_bAcceptedForUse; + int8_t m_bTagsTruncated; U32_ARRAY(char, 1025, m_rgchTags); uint64_t m_hFile; uint64_t m_hPreviewFile; @@ -3587,7 +3587,7 @@ struct w_CSteamCallback virtual uint8_t * GetFixedData( ) = 0; virtual uint32_t GetFixedSize( ) = 0; virtual uint32_t GetNumMemberVariables( ) = 0; - virtual bool GetMemberVariable( uint32_t, uint32_t *, uint32_t *, uint32_t *, const char **, const char ** ) = 0; + virtual int8_t GetMemberVariable( uint32_t, uint32_t *, uint32_t *, uint32_t *, const char **, const char ** ) = 0; #endif /* __cplusplus */ }; @@ -3599,7 +3599,7 @@ struct u_CSteamCallback virtual uint8_t * GetFixedData( ) = 0; virtual uint32_t GetFixedSize( ) = 0; virtual uint32_t GetNumMemberVariables( ) = 0; - virtual bool GetMemberVariable( uint32_t, uint32_t *, uint32_t *, uint32_t *, const char **, const char ** ) = 0; + virtual int8_t GetMemberVariable( uint32_t, uint32_t *, uint32_t *, uint32_t *, const char **, const char ** ) = 0; #endif /* __cplusplus */ }; @@ -3770,7 +3770,7 @@ struct w64_CreateItemResult_t uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_nPublishedFileId; - bool m_bUserNeedsToAcceptWorkshopLegalAgreement; + int8_t m_bUserNeedsToAcceptWorkshopLegalAgreement; uint8_t __pad_17[7]; #ifdef __cplusplus operator u64_CreateItemResult_t() const; @@ -3783,7 +3783,7 @@ struct u64_CreateItemResult_t { uint32_t m_eResult; uint64_t m_nPublishedFileId; - bool m_bUserNeedsToAcceptWorkshopLegalAgreement; + int8_t m_bUserNeedsToAcceptWorkshopLegalAgreement; uint8_t __pad_13[3]; #ifdef __cplusplus operator w64_CreateItemResult_t() const; @@ -3797,7 +3797,7 @@ struct w32_CreateItemResult_t uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_nPublishedFileId; - bool m_bUserNeedsToAcceptWorkshopLegalAgreement; + int8_t m_bUserNeedsToAcceptWorkshopLegalAgreement; uint8_t __pad_17[7]; #ifdef __cplusplus operator u32_CreateItemResult_t() const; @@ -3810,7 +3810,7 @@ struct u32_CreateItemResult_t { uint32_t m_eResult; uint64_t m_nPublishedFileId; - bool m_bUserNeedsToAcceptWorkshopLegalAgreement; + int8_t m_bUserNeedsToAcceptWorkshopLegalAgreement; uint8_t __pad_13[3]; #ifdef __cplusplus operator w32_CreateItemResult_t() const; @@ -4066,7 +4066,7 @@ struct w64_GSReputation_t_123 { uint32_t m_eResult; uint32_t m_unReputationScore; - bool m_bBanned; + int8_t m_bBanned; uint8_t __pad_9[3]; uint32_t m_unBannedIP; uint16_t m_usBannedPort; @@ -4085,7 +4085,7 @@ struct u64_GSReputation_t_123 { uint32_t m_eResult; uint32_t m_unReputationScore; - bool m_bBanned; + int8_t m_bBanned; uint8_t __pad_9[3]; uint32_t m_unBannedIP; uint16_t m_usBannedPort; @@ -4103,7 +4103,7 @@ struct w32_GSReputation_t_123 { uint32_t m_eResult; uint32_t m_unReputationScore; - bool m_bBanned; + int8_t m_bBanned; uint8_t __pad_9[3]; uint32_t m_unBannedIP; uint16_t m_usBannedPort; @@ -4122,7 +4122,7 @@ struct u32_GSReputation_t_123 { uint32_t m_eResult; uint32_t m_unReputationScore; - bool m_bBanned; + int8_t m_bBanned; uint8_t __pad_9[3]; uint32_t m_unBannedIP; uint16_t m_usBannedPort; @@ -4149,7 +4149,7 @@ struct w64_GSReputation_t_108 { uint32_t m_eResult; uint32_t m_unReputationScore; - bool m_bBanned; + int8_t m_bBanned; uint8_t __pad_9[3]; uint32_t m_unBannedIP; uint16_t m_usBannedPort; @@ -4165,7 +4165,7 @@ struct w32_GSReputation_t_108 { uint32_t m_eResult; uint32_t m_unReputationScore; - bool m_bBanned; + int8_t m_bBanned; uint8_t __pad_9[3]; uint32_t m_unBannedIP; uint16_t m_usBannedPort; @@ -4184,7 +4184,7 @@ struct u32_GSReputation_t_108 { uint32_t m_eResult; uint32_t m_unReputationScore; - bool m_bBanned; + int8_t m_bBanned; uint8_t __pad_9[3]; uint32_t m_unBannedIP; uint16_t m_usBannedPort; @@ -4563,8 +4563,8 @@ struct w64_HTML_LinkAtPosition_t uint32_t y; uint8_t __pad_12[4]; W64_PTR(const char *pchURL, pchURL); - bool bInput; - bool bLiveLink; + int8_t bInput; + int8_t bLiveLink; uint8_t __pad_26[6]; #ifdef __cplusplus operator u64_HTML_LinkAtPosition_t() const; @@ -4579,8 +4579,8 @@ struct u64_HTML_LinkAtPosition_t uint32_t x; uint32_t y; U64_PTR(const char *pchURL, pchURL); - bool bInput; - bool bLiveLink; + int8_t bInput; + int8_t bLiveLink; uint8_t __pad_22[2]; #ifdef __cplusplus operator w64_HTML_LinkAtPosition_t() const; @@ -4595,8 +4595,8 @@ struct w32_HTML_LinkAtPosition_t uint32_t x; uint32_t y; W32_PTR(const char *pchURL, pchURL); - bool bInput; - bool bLiveLink; + int8_t bInput; + int8_t bLiveLink; uint8_t __pad_18[2]; #ifdef __cplusplus operator u32_HTML_LinkAtPosition_t() const; @@ -4611,8 +4611,8 @@ struct u32_HTML_LinkAtPosition_t uint32_t x; uint32_t y; U32_PTR(const char *pchURL, pchURL); - bool bInput; - bool bLiveLink; + int8_t bInput; + int8_t bLiveLink; uint8_t __pad_18[2]; #ifdef __cplusplus operator w32_HTML_LinkAtPosition_t() const; @@ -4946,7 +4946,7 @@ struct w64_HTML_StartRequest_t W64_PTR(const char *pchURL, pchURL); W64_PTR(const char *pchTarget, pchTarget); W64_PTR(const char *pchPostData, pchPostData); - bool bIsRedirect; + int8_t bIsRedirect; uint8_t __pad_33[7]; #ifdef __cplusplus operator u64_HTML_StartRequest_t() const; @@ -4961,7 +4961,7 @@ struct u64_HTML_StartRequest_t U64_PTR(const char *pchURL, pchURL); U64_PTR(const char *pchTarget, pchTarget); U64_PTR(const char *pchPostData, pchPostData); - bool bIsRedirect; + int8_t bIsRedirect; uint8_t __pad_29[3]; #ifdef __cplusplus operator w64_HTML_StartRequest_t() const; @@ -4976,7 +4976,7 @@ struct w32_HTML_StartRequest_t W32_PTR(const char *pchURL, pchURL); W32_PTR(const char *pchTarget, pchTarget); W32_PTR(const char *pchPostData, pchPostData); - bool bIsRedirect; + int8_t bIsRedirect; uint8_t __pad_17[3]; #ifdef __cplusplus operator u32_HTML_StartRequest_t() const; @@ -4991,7 +4991,7 @@ struct u32_HTML_StartRequest_t U32_PTR(const char *pchURL, pchURL); U32_PTR(const char *pchTarget, pchTarget); U32_PTR(const char *pchPostData, pchPostData); - bool bIsRedirect; + int8_t bIsRedirect; uint8_t __pad_17[3]; #ifdef __cplusplus operator w32_HTML_StartRequest_t() const; @@ -5055,10 +5055,10 @@ struct w64_HTML_URLChanged_t uint8_t __pad_4[4]; W64_PTR(const char *pchURL, pchURL); W64_PTR(const char *pchPostData, pchPostData); - bool bIsRedirect; + int8_t bIsRedirect; uint8_t __pad_25[7]; W64_PTR(const char *pchPageTitle, pchPageTitle); - bool bNewNavigation; + int8_t bNewNavigation; uint8_t __pad_41[7]; #ifdef __cplusplus operator u64_HTML_URLChanged_t() const; @@ -5072,10 +5072,10 @@ struct u64_HTML_URLChanged_t uint32_t unBrowserHandle; U64_PTR(const char *pchURL, pchURL); U64_PTR(const char *pchPostData, pchPostData); - bool bIsRedirect; + int8_t bIsRedirect; uint8_t __pad_21[3]; U64_PTR(const char *pchPageTitle, pchPageTitle); - bool bNewNavigation; + int8_t bNewNavigation; uint8_t __pad_33[3]; #ifdef __cplusplus operator w64_HTML_URLChanged_t() const; @@ -5089,10 +5089,10 @@ struct w32_HTML_URLChanged_t uint32_t unBrowserHandle; W32_PTR(const char *pchURL, pchURL); W32_PTR(const char *pchPostData, pchPostData); - bool bIsRedirect; + int8_t bIsRedirect; uint8_t __pad_13[3]; W32_PTR(const char *pchPageTitle, pchPageTitle); - bool bNewNavigation; + int8_t bNewNavigation; uint8_t __pad_21[3]; #ifdef __cplusplus operator u32_HTML_URLChanged_t() const; @@ -5106,10 +5106,10 @@ struct u32_HTML_URLChanged_t uint32_t unBrowserHandle; U32_PTR(const char *pchURL, pchURL); U32_PTR(const char *pchPostData, pchPostData); - bool bIsRedirect; + int8_t bIsRedirect; uint8_t __pad_13[3]; U32_PTR(const char *pchPageTitle, pchPageTitle); - bool bNewNavigation; + int8_t bNewNavigation; uint8_t __pad_21[3]; #ifdef __cplusplus operator w32_HTML_URLChanged_t() const; @@ -5172,7 +5172,7 @@ struct w64_HTTPRequestCompleted_t_132x uint32_t m_hRequest; uint8_t __pad_4[4]; uint64_t m_ulContextValue; - bool m_bRequestSuccessful; + int8_t m_bRequestSuccessful; uint8_t __pad_17[3]; uint32_t m_eStatusCode; uint32_t m_unBodySize; @@ -5188,7 +5188,7 @@ struct u64_HTTPRequestCompleted_t_132x { uint32_t m_hRequest; uint64_t m_ulContextValue; - bool m_bRequestSuccessful; + int8_t m_bRequestSuccessful; uint8_t __pad_13[3]; uint32_t m_eStatusCode; uint32_t m_unBodySize; @@ -5204,7 +5204,7 @@ struct w32_HTTPRequestCompleted_t_132x uint32_t m_hRequest; uint8_t __pad_4[4]; uint64_t m_ulContextValue; - bool m_bRequestSuccessful; + int8_t m_bRequestSuccessful; uint8_t __pad_17[3]; uint32_t m_eStatusCode; uint32_t m_unBodySize; @@ -5220,7 +5220,7 @@ struct u32_HTTPRequestCompleted_t_132x { uint32_t m_hRequest; uint64_t m_ulContextValue; - bool m_bRequestSuccessful; + int8_t m_bRequestSuccessful; uint8_t __pad_13[3]; uint32_t m_eStatusCode; uint32_t m_unBodySize; @@ -5245,7 +5245,7 @@ struct w64_HTTPRequestCompleted_t_123 uint32_t m_hRequest; uint8_t __pad_4[4]; uint64_t m_ulContextValue; - bool m_bRequestSuccessful; + int8_t m_bRequestSuccessful; uint8_t __pad_17[3]; uint32_t m_eStatusCode; #ifdef __cplusplus @@ -5259,7 +5259,7 @@ struct u64_HTTPRequestCompleted_t_123 { uint32_t m_hRequest; uint64_t m_ulContextValue; - bool m_bRequestSuccessful; + int8_t m_bRequestSuccessful; uint8_t __pad_13[3]; uint32_t m_eStatusCode; #ifdef __cplusplus @@ -5274,7 +5274,7 @@ struct w32_HTTPRequestCompleted_t_123 uint32_t m_hRequest; uint8_t __pad_4[4]; uint64_t m_ulContextValue; - bool m_bRequestSuccessful; + int8_t m_bRequestSuccessful; uint8_t __pad_17[3]; uint32_t m_eStatusCode; #ifdef __cplusplus @@ -5288,7 +5288,7 @@ struct u32_HTTPRequestCompleted_t_123 { uint32_t m_hRequest; uint64_t m_ulContextValue; - bool m_bRequestSuccessful; + int8_t m_bRequestSuccessful; uint8_t __pad_13[3]; uint32_t m_eStatusCode; #ifdef __cplusplus @@ -5312,7 +5312,7 @@ struct w64_HTTPRequestCompleted_t_115 uint32_t m_hRequest; uint8_t __pad_4[4]; uint64_t m_ulContextValue; - bool m_bRequestSuccessful; + int8_t m_bRequestSuccessful; uint8_t __pad_17[3]; uint32_t m_eStatusCode; }; @@ -5324,7 +5324,7 @@ struct w32_HTTPRequestCompleted_t_115 uint32_t m_hRequest; uint8_t __pad_4[4]; uint64_t m_ulContextValue; - bool m_bRequestSuccessful; + int8_t m_bRequestSuccessful; uint8_t __pad_17[3]; uint32_t m_eStatusCode; #ifdef __cplusplus @@ -5338,7 +5338,7 @@ struct u32_HTTPRequestCompleted_t_115 { uint32_t m_hRequest; uint64_t m_ulContextValue; - bool m_bRequestSuccessful; + int8_t m_bRequestSuccessful; uint8_t __pad_13[3]; uint32_t m_eStatusCode; #ifdef __cplusplus @@ -5653,7 +5653,7 @@ struct u_ISteamMatchmakingServerListResponse_099u struct w_ISteamNetworkingConnectionCustomSignaling { #ifdef __cplusplus - virtual bool SendSignal( uint32_t, const SteamNetConnectionInfo_t_144 *, const void *, int32_t ) = 0; + virtual int8_t SendSignal( uint32_t, const SteamNetConnectionInfo_t_144 *, const void *, int32_t ) = 0; virtual void Release( ) = 0; #endif /* __cplusplus */ }; @@ -5661,7 +5661,7 @@ struct w_ISteamNetworkingConnectionCustomSignaling struct u_ISteamNetworkingConnectionCustomSignaling { #ifdef __cplusplus - virtual bool SendSignal( uint32_t, const SteamNetConnectionInfo_t_144 *, const void *, int32_t ) = 0; + virtual int8_t SendSignal( uint32_t, const SteamNetConnectionInfo_t_144 *, const void *, int32_t ) = 0; virtual void Release( ) = 0; #endif /* __cplusplus */ }; @@ -6493,7 +6493,7 @@ struct w64_RemoteStorageAppSyncProgress_t_123 uint32_t m_uBytesTransferredThisChunk; uint8_t __pad_268[4]; double m_dAppPercentComplete; - bool m_bUploading; + int8_t m_bUploading; uint8_t __pad_281[7]; #ifdef __cplusplus operator u64_RemoteStorageAppSyncProgress_t_123() const; @@ -6508,7 +6508,7 @@ struct u64_RemoteStorageAppSyncProgress_t_123 uint32_t m_nAppID; uint32_t m_uBytesTransferredThisChunk; double m_dAppPercentComplete; - bool m_bUploading; + int8_t m_bUploading; uint8_t __pad_277[3]; #ifdef __cplusplus operator w64_RemoteStorageAppSyncProgress_t_123() const; @@ -6524,7 +6524,7 @@ struct w32_RemoteStorageAppSyncProgress_t_123 uint32_t m_uBytesTransferredThisChunk; uint8_t __pad_268[4]; double m_dAppPercentComplete; - bool m_bUploading; + int8_t m_bUploading; uint8_t __pad_281[7]; #ifdef __cplusplus operator u32_RemoteStorageAppSyncProgress_t_123() const; @@ -6539,7 +6539,7 @@ struct u32_RemoteStorageAppSyncProgress_t_123 uint32_t m_nAppID; uint32_t m_uBytesTransferredThisChunk; double m_dAppPercentComplete; - bool m_bUploading; + int8_t m_bUploading; uint8_t __pad_277[3]; #ifdef __cplusplus operator w32_RemoteStorageAppSyncProgress_t_123() const; @@ -6564,7 +6564,7 @@ struct w64_RemoteStorageAppSyncProgress_t_111x uint32_t m_uBytesTransferredThisChunk; uint8_t __pad_268[4]; double m_dAppPercentComplete; - bool m_bUploading; + int8_t m_bUploading; uint8_t __pad_281[7]; }; #pragma pack( pop ) @@ -6577,7 +6577,7 @@ struct w32_RemoteStorageAppSyncProgress_t_111x uint32_t m_uBytesTransferredThisChunk; uint8_t __pad_268[4]; double m_dAppPercentComplete; - bool m_bUploading; + int8_t m_bUploading; uint8_t __pad_281[7]; #ifdef __cplusplus operator u32_RemoteStorageAppSyncProgress_t_111x() const; @@ -6592,7 +6592,7 @@ struct u32_RemoteStorageAppSyncProgress_t_111x uint32_t m_nAppID; uint32_t m_uBytesTransferredThisChunk; double m_dAppPercentComplete; - bool m_bUploading; + int8_t m_bUploading; uint8_t __pad_277[3]; #ifdef __cplusplus operator w32_RemoteStorageAppSyncProgress_t_111x() const; @@ -7590,16 +7590,16 @@ struct w64_RemoteStorageGetPublishedFileDetailsResult_t_126 uint32_t m_rtimeCreated; uint32_t m_rtimeUpdated; uint32_t m_eVisibility; - bool m_bBanned; + int8_t m_bBanned; W64_ARRAY(char, 1025, m_rgchTags); - bool m_bTagsTruncated; + int8_t m_bTagsTruncated; W64_ARRAY(char, 260, m_pchFileName); uint8_t __pad_9483[1]; int32_t m_nFileSize; int32_t m_nPreviewFileSize; W64_ARRAY(char, 256, m_rgchURL); uint32_t m_eFileType; - bool m_bAcceptedForUse; + int8_t m_bAcceptedForUse; uint8_t __pad_9753[7]; #ifdef __cplusplus operator u64_RemoteStorageGetPublishedFileDetailsResult_t_126() const; @@ -7623,16 +7623,16 @@ struct u64_RemoteStorageGetPublishedFileDetailsResult_t_126 uint32_t m_rtimeCreated; uint32_t m_rtimeUpdated; uint32_t m_eVisibility; - bool m_bBanned; + int8_t m_bBanned; U64_ARRAY(char, 1025, m_rgchTags); - bool m_bTagsTruncated; + int8_t m_bTagsTruncated; U64_ARRAY(char, 260, m_pchFileName); uint8_t __pad_9475[1]; int32_t m_nFileSize; int32_t m_nPreviewFileSize; U64_ARRAY(char, 256, m_rgchURL); uint32_t m_eFileType; - bool m_bAcceptedForUse; + int8_t m_bAcceptedForUse; uint8_t __pad_9745[3]; #ifdef __cplusplus operator w64_RemoteStorageGetPublishedFileDetailsResult_t_126() const; @@ -7657,16 +7657,16 @@ struct w32_RemoteStorageGetPublishedFileDetailsResult_t_126 uint32_t m_rtimeCreated; uint32_t m_rtimeUpdated; uint32_t m_eVisibility; - bool m_bBanned; + int8_t m_bBanned; W32_ARRAY(char, 1025, m_rgchTags); - bool m_bTagsTruncated; + int8_t m_bTagsTruncated; W32_ARRAY(char, 260, m_pchFileName); uint8_t __pad_9483[1]; int32_t m_nFileSize; int32_t m_nPreviewFileSize; W32_ARRAY(char, 256, m_rgchURL); uint32_t m_eFileType; - bool m_bAcceptedForUse; + int8_t m_bAcceptedForUse; uint8_t __pad_9753[7]; #ifdef __cplusplus operator u32_RemoteStorageGetPublishedFileDetailsResult_t_126() const; @@ -7690,16 +7690,16 @@ struct u32_RemoteStorageGetPublishedFileDetailsResult_t_126 uint32_t m_rtimeCreated; uint32_t m_rtimeUpdated; uint32_t m_eVisibility; - bool m_bBanned; + int8_t m_bBanned; U32_ARRAY(char, 1025, m_rgchTags); - bool m_bTagsTruncated; + int8_t m_bTagsTruncated; U32_ARRAY(char, 260, m_pchFileName); uint8_t __pad_9475[1]; int32_t m_nFileSize; int32_t m_nPreviewFileSize; U32_ARRAY(char, 256, m_rgchURL); uint32_t m_eFileType; - bool m_bAcceptedForUse; + int8_t m_bAcceptedForUse; uint8_t __pad_9745[3]; #ifdef __cplusplus operator w32_RemoteStorageGetPublishedFileDetailsResult_t_126() const; @@ -7733,9 +7733,9 @@ struct w64_RemoteStorageGetPublishedFileDetailsResult_t_123 uint32_t m_rtimeCreated; uint32_t m_rtimeUpdated; uint32_t m_eVisibility; - bool m_bBanned; + int8_t m_bBanned; W64_ARRAY(char, 1025, m_rgchTags); - bool m_bTagsTruncated; + int8_t m_bTagsTruncated; W64_ARRAY(char, 260, m_pchFileName); uint8_t __pad_9483[1]; int32_t m_nFileSize; @@ -7764,9 +7764,9 @@ struct u64_RemoteStorageGetPublishedFileDetailsResult_t_123 uint32_t m_rtimeCreated; uint32_t m_rtimeUpdated; uint32_t m_eVisibility; - bool m_bBanned; + int8_t m_bBanned; U64_ARRAY(char, 1025, m_rgchTags); - bool m_bTagsTruncated; + int8_t m_bTagsTruncated; U64_ARRAY(char, 260, m_pchFileName); uint8_t __pad_9475[1]; int32_t m_nFileSize; @@ -7796,9 +7796,9 @@ struct w32_RemoteStorageGetPublishedFileDetailsResult_t_123 uint32_t m_rtimeCreated; uint32_t m_rtimeUpdated; uint32_t m_eVisibility; - bool m_bBanned; + int8_t m_bBanned; W32_ARRAY(char, 1025, m_rgchTags); - bool m_bTagsTruncated; + int8_t m_bTagsTruncated; W32_ARRAY(char, 260, m_pchFileName); uint8_t __pad_9483[1]; int32_t m_nFileSize; @@ -7827,9 +7827,9 @@ struct u32_RemoteStorageGetPublishedFileDetailsResult_t_123 uint32_t m_rtimeCreated; uint32_t m_rtimeUpdated; uint32_t m_eVisibility; - bool m_bBanned; + int8_t m_bBanned; U32_ARRAY(char, 1025, m_rgchTags); - bool m_bTagsTruncated; + int8_t m_bTagsTruncated; U32_ARRAY(char, 260, m_pchFileName); uint8_t __pad_9475[1]; int32_t m_nFileSize; @@ -7868,9 +7868,9 @@ struct w64_RemoteStorageGetPublishedFileDetailsResult_t_119x uint32_t m_rtimeCreated; uint32_t m_rtimeUpdated; uint32_t m_eVisibility; - bool m_bBanned; + int8_t m_bBanned; W64_ARRAY(char, 1025, m_rgchTags); - bool m_bTagsTruncated; + int8_t m_bTagsTruncated; W64_ARRAY(char, 260, m_pchFileName); uint8_t __pad_9483[1]; int32_t m_nFileSize; @@ -7897,9 +7897,9 @@ struct w32_RemoteStorageGetPublishedFileDetailsResult_t_119x uint32_t m_rtimeCreated; uint32_t m_rtimeUpdated; uint32_t m_eVisibility; - bool m_bBanned; + int8_t m_bBanned; W32_ARRAY(char, 1025, m_rgchTags); - bool m_bTagsTruncated; + int8_t m_bTagsTruncated; W32_ARRAY(char, 260, m_pchFileName); uint8_t __pad_9483[1]; int32_t m_nFileSize; @@ -7928,9 +7928,9 @@ struct u32_RemoteStorageGetPublishedFileDetailsResult_t_119x uint32_t m_rtimeCreated; uint32_t m_rtimeUpdated; uint32_t m_eVisibility; - bool m_bBanned; + int8_t m_bBanned; U32_ARRAY(char, 1025, m_rgchTags); - bool m_bTagsTruncated; + int8_t m_bTagsTruncated; U32_ARRAY(char, 260, m_pchFileName); uint8_t __pad_9475[1]; int32_t m_nFileSize; @@ -7969,9 +7969,9 @@ struct w64_RemoteStorageGetPublishedFileDetailsResult_t_119 uint32_t m_rtimeCreated; uint32_t m_rtimeUpdated; uint32_t m_eVisibility; - bool m_bBanned; + int8_t m_bBanned; W64_ARRAY(char, 1025, m_rgchTags); - bool m_bTagsTruncated; + int8_t m_bTagsTruncated; W64_ARRAY(char, 260, m_pchFileName); uint8_t __pad_9483[1]; int32_t m_nFileSize; @@ -7998,9 +7998,9 @@ struct w32_RemoteStorageGetPublishedFileDetailsResult_t_119 uint32_t m_rtimeCreated; uint32_t m_rtimeUpdated; uint32_t m_eVisibility; - bool m_bBanned; + int8_t m_bBanned; W32_ARRAY(char, 1025, m_rgchTags); - bool m_bTagsTruncated; + int8_t m_bTagsTruncated; W32_ARRAY(char, 260, m_pchFileName); uint8_t __pad_9483[1]; int32_t m_nFileSize; @@ -8029,9 +8029,9 @@ struct u32_RemoteStorageGetPublishedFileDetailsResult_t_119 uint32_t m_rtimeCreated; uint32_t m_rtimeUpdated; uint32_t m_eVisibility; - bool m_bBanned; + int8_t m_bBanned; U32_ARRAY(char, 1025, m_rgchTags); - bool m_bTagsTruncated; + int8_t m_bTagsTruncated; U32_ARRAY(char, 260, m_pchFileName); uint8_t __pad_9475[1]; int32_t m_nFileSize; @@ -8069,9 +8069,9 @@ struct w64_RemoteStorageGetPublishedFileDetailsResult_t_118 uint32_t m_rtimeCreated; uint32_t m_rtimeUpdated; uint32_t m_eVisibility; - bool m_bBanned; + int8_t m_bBanned; W64_ARRAY(char, 1025, m_rgchTags); - bool m_bTagsTruncated; + int8_t m_bTagsTruncated; W64_ARRAY(char, 260, m_pchFileName); uint8_t __pad_9483[1]; int32_t m_nFileSize; @@ -8097,9 +8097,9 @@ struct w32_RemoteStorageGetPublishedFileDetailsResult_t_118 uint32_t m_rtimeCreated; uint32_t m_rtimeUpdated; uint32_t m_eVisibility; - bool m_bBanned; + int8_t m_bBanned; W32_ARRAY(char, 1025, m_rgchTags); - bool m_bTagsTruncated; + int8_t m_bTagsTruncated; W32_ARRAY(char, 260, m_pchFileName); uint8_t __pad_9483[1]; int32_t m_nFileSize; @@ -8127,9 +8127,9 @@ struct u32_RemoteStorageGetPublishedFileDetailsResult_t_118 uint32_t m_rtimeCreated; uint32_t m_rtimeUpdated; uint32_t m_eVisibility; - bool m_bBanned; + int8_t m_bBanned; U32_ARRAY(char, 1025, m_rgchTags); - bool m_bTagsTruncated; + int8_t m_bTagsTruncated; U32_ARRAY(char, 260, m_pchFileName); uint8_t __pad_9475[1]; int32_t m_nFileSize; @@ -8166,9 +8166,9 @@ struct w64_RemoteStorageGetPublishedFileDetailsResult_t_116x uint32_t m_rtimeCreated; uint32_t m_rtimeUpdated; uint32_t m_eVisibility; - bool m_bBanned; + int8_t m_bBanned; W64_ARRAY(char, 1025, m_rgchTags); - bool m_bTagsTruncated; + int8_t m_bTagsTruncated; W64_ARRAY(char, 260, m_pchFileName); uint8_t __pad_1739[5]; }; @@ -8191,9 +8191,9 @@ struct w32_RemoteStorageGetPublishedFileDetailsResult_t_116x uint32_t m_rtimeCreated; uint32_t m_rtimeUpdated; uint32_t m_eVisibility; - bool m_bBanned; + int8_t m_bBanned; W32_ARRAY(char, 1025, m_rgchTags); - bool m_bTagsTruncated; + int8_t m_bTagsTruncated; W32_ARRAY(char, 260, m_pchFileName); uint8_t __pad_1739[5]; #ifdef __cplusplus @@ -8218,9 +8218,9 @@ struct u32_RemoteStorageGetPublishedFileDetailsResult_t_116x uint32_t m_rtimeCreated; uint32_t m_rtimeUpdated; uint32_t m_eVisibility; - bool m_bBanned; + int8_t m_bBanned; U32_ARRAY(char, 1025, m_rgchTags); - bool m_bTagsTruncated; + int8_t m_bTagsTruncated; U32_ARRAY(char, 260, m_pchFileName); uint8_t __pad_1731[1]; #ifdef __cplusplus @@ -8368,7 +8368,7 @@ struct w64_RemoteStoragePublishFileResult_t_125 uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_nPublishedFileId; - bool m_bUserNeedsToAcceptWorkshopLegalAgreement; + int8_t m_bUserNeedsToAcceptWorkshopLegalAgreement; uint8_t __pad_17[7]; #ifdef __cplusplus operator u64_RemoteStoragePublishFileResult_t_125() const; @@ -8381,7 +8381,7 @@ struct u64_RemoteStoragePublishFileResult_t_125 { uint32_t m_eResult; uint64_t m_nPublishedFileId; - bool m_bUserNeedsToAcceptWorkshopLegalAgreement; + int8_t m_bUserNeedsToAcceptWorkshopLegalAgreement; uint8_t __pad_13[3]; #ifdef __cplusplus operator w64_RemoteStoragePublishFileResult_t_125() const; @@ -8395,7 +8395,7 @@ struct w32_RemoteStoragePublishFileResult_t_125 uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_nPublishedFileId; - bool m_bUserNeedsToAcceptWorkshopLegalAgreement; + int8_t m_bUserNeedsToAcceptWorkshopLegalAgreement; uint8_t __pad_17[7]; #ifdef __cplusplus operator u32_RemoteStoragePublishFileResult_t_125() const; @@ -8408,7 +8408,7 @@ struct u32_RemoteStoragePublishFileResult_t_125 { uint32_t m_eResult; uint64_t m_nPublishedFileId; - bool m_bUserNeedsToAcceptWorkshopLegalAgreement; + int8_t m_bUserNeedsToAcceptWorkshopLegalAgreement; uint8_t __pad_13[3]; #ifdef __cplusplus operator w32_RemoteStoragePublishFileResult_t_125() const; @@ -8854,12 +8854,12 @@ struct w64_RemoteStorageUpdatePublishedFileRequest_t uint32_t m_eVisibility; uint8_t __pad_44[4]; W64_PTR(w64_SteamParamStringArray_t *m_pTags, m_pTags); - bool m_bUpdateFile; - bool m_bUpdatePreviewFile; - bool m_bUpdateTitle; - bool m_bUpdateDescription; - bool m_bUpdateVisibility; - bool m_bUpdateTags; + int8_t m_bUpdateFile; + int8_t m_bUpdatePreviewFile; + int8_t m_bUpdateTitle; + int8_t m_bUpdateDescription; + int8_t m_bUpdateVisibility; + int8_t m_bUpdateTags; uint8_t __pad_62[2]; }; #pragma pack( pop ) @@ -8874,12 +8874,12 @@ struct w32_RemoteStorageUpdatePublishedFileRequest_t W32_PTR(const char *m_pchDescription, m_pchDescription); uint32_t m_eVisibility; W32_PTR(w32_SteamParamStringArray_t *m_pTags, m_pTags); - bool m_bUpdateFile; - bool m_bUpdatePreviewFile; - bool m_bUpdateTitle; - bool m_bUpdateDescription; - bool m_bUpdateVisibility; - bool m_bUpdateTags; + int8_t m_bUpdateFile; + int8_t m_bUpdatePreviewFile; + int8_t m_bUpdateTitle; + int8_t m_bUpdateDescription; + int8_t m_bUpdateVisibility; + int8_t m_bUpdateTags; uint8_t __pad_38[2]; }; #pragma pack( pop ) @@ -8899,7 +8899,7 @@ struct w64_RemoteStorageUpdatePublishedFileResult_t_125 uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_nPublishedFileId; - bool m_bUserNeedsToAcceptWorkshopLegalAgreement; + int8_t m_bUserNeedsToAcceptWorkshopLegalAgreement; uint8_t __pad_17[7]; #ifdef __cplusplus operator u64_RemoteStorageUpdatePublishedFileResult_t_125() const; @@ -8912,7 +8912,7 @@ struct u64_RemoteStorageUpdatePublishedFileResult_t_125 { uint32_t m_eResult; uint64_t m_nPublishedFileId; - bool m_bUserNeedsToAcceptWorkshopLegalAgreement; + int8_t m_bUserNeedsToAcceptWorkshopLegalAgreement; uint8_t __pad_13[3]; #ifdef __cplusplus operator w64_RemoteStorageUpdatePublishedFileResult_t_125() const; @@ -8926,7 +8926,7 @@ struct w32_RemoteStorageUpdatePublishedFileResult_t_125 uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_nPublishedFileId; - bool m_bUserNeedsToAcceptWorkshopLegalAgreement; + int8_t m_bUserNeedsToAcceptWorkshopLegalAgreement; uint8_t __pad_17[7]; #ifdef __cplusplus operator u32_RemoteStorageUpdatePublishedFileResult_t_125() const; @@ -8939,7 +8939,7 @@ struct u32_RemoteStorageUpdatePublishedFileResult_t_125 { uint32_t m_eResult; uint64_t m_nPublishedFileId; - bool m_bUserNeedsToAcceptWorkshopLegalAgreement; + int8_t m_bUserNeedsToAcceptWorkshopLegalAgreement; uint8_t __pad_13[3]; #ifdef __cplusplus operator w32_RemoteStorageUpdatePublishedFileResult_t_125() const; @@ -9587,8 +9587,8 @@ struct w64_SteamInputConfigurationLoaded_t CSteamID m_ulMappingCreator; uint32_t m_unMajorRevision; uint32_t m_unMinorRevision; - bool m_bUsesSteamInputAPI; - bool m_bUsesGamepadAPI; + int8_t m_bUsesSteamInputAPI; + int8_t m_bUsesGamepadAPI; uint8_t __pad_34[6]; #ifdef __cplusplus operator u64_SteamInputConfigurationLoaded_t() const; @@ -9604,8 +9604,8 @@ struct u64_SteamInputConfigurationLoaded_t CSteamID m_ulMappingCreator; uint32_t m_unMajorRevision; uint32_t m_unMinorRevision; - bool m_bUsesSteamInputAPI; - bool m_bUsesGamepadAPI; + int8_t m_bUsesSteamInputAPI; + int8_t m_bUsesGamepadAPI; uint8_t __pad_30[2]; #ifdef __cplusplus operator w64_SteamInputConfigurationLoaded_t() const; @@ -9622,8 +9622,8 @@ struct w32_SteamInputConfigurationLoaded_t CSteamID m_ulMappingCreator; uint32_t m_unMajorRevision; uint32_t m_unMinorRevision; - bool m_bUsesSteamInputAPI; - bool m_bUsesGamepadAPI; + int8_t m_bUsesSteamInputAPI; + int8_t m_bUsesGamepadAPI; uint8_t __pad_34[6]; #ifdef __cplusplus operator u32_SteamInputConfigurationLoaded_t() const; @@ -9639,8 +9639,8 @@ struct u32_SteamInputConfigurationLoaded_t CSteamID m_ulMappingCreator; uint32_t m_unMajorRevision; uint32_t m_unMinorRevision; - bool m_bUsesSteamInputAPI; - bool m_bUsesGamepadAPI; + int8_t m_bUsesSteamInputAPI; + int8_t m_bUsesGamepadAPI; uint8_t __pad_30[2]; #ifdef __cplusplus operator w32_SteamInputConfigurationLoaded_t() const; @@ -10436,7 +10436,7 @@ typedef u64_SteamPartyBeaconLocation_t u_SteamPartyBeaconLocation_t; struct w64_SteamUGCRequestUGCDetailsResult_t_128x { w64_SteamUGCDetails_t_128x m_details; - bool m_bCachedData; + int8_t m_bCachedData; uint8_t __pad_9777[7]; #ifdef __cplusplus operator u64_SteamUGCRequestUGCDetailsResult_t_128x() const; @@ -10448,7 +10448,7 @@ struct w64_SteamUGCRequestUGCDetailsResult_t_128x struct u64_SteamUGCRequestUGCDetailsResult_t_128x { u64_SteamUGCDetails_t_128x m_details; - bool m_bCachedData; + int8_t m_bCachedData; uint8_t __pad_9765[3]; #ifdef __cplusplus operator w64_SteamUGCRequestUGCDetailsResult_t_128x() const; @@ -10460,7 +10460,7 @@ struct u64_SteamUGCRequestUGCDetailsResult_t_128x struct w32_SteamUGCRequestUGCDetailsResult_t_128x { w32_SteamUGCDetails_t_128x m_details; - bool m_bCachedData; + int8_t m_bCachedData; uint8_t __pad_9777[7]; #ifdef __cplusplus operator u32_SteamUGCRequestUGCDetailsResult_t_128x() const; @@ -10472,7 +10472,7 @@ struct w32_SteamUGCRequestUGCDetailsResult_t_128x struct u32_SteamUGCRequestUGCDetailsResult_t_128x { u32_SteamUGCDetails_t_128x m_details; - bool m_bCachedData; + int8_t m_bCachedData; uint8_t __pad_9765[3]; #ifdef __cplusplus operator w32_SteamUGCRequestUGCDetailsResult_t_128x() const; @@ -10493,7 +10493,7 @@ typedef u64_SteamUGCRequestUGCDetailsResult_t_128x u_SteamUGCRequestUGCDetailsRe struct w64_SteamUGCRequestUGCDetailsResult_t_129 { w64_SteamUGCDetails_t_126 m_details; - bool m_bCachedData; + int8_t m_bCachedData; uint8_t __pad_9769[7]; #ifdef __cplusplus operator u64_SteamUGCRequestUGCDetailsResult_t_129() const; @@ -10505,7 +10505,7 @@ struct w64_SteamUGCRequestUGCDetailsResult_t_129 struct u64_SteamUGCRequestUGCDetailsResult_t_129 { u64_SteamUGCDetails_t_126 m_details; - bool m_bCachedData; + int8_t m_bCachedData; uint8_t __pad_9761[3]; #ifdef __cplusplus operator w64_SteamUGCRequestUGCDetailsResult_t_129() const; @@ -10517,7 +10517,7 @@ struct u64_SteamUGCRequestUGCDetailsResult_t_129 struct w32_SteamUGCRequestUGCDetailsResult_t_129 { w32_SteamUGCDetails_t_126 m_details; - bool m_bCachedData; + int8_t m_bCachedData; uint8_t __pad_9769[7]; #ifdef __cplusplus operator u32_SteamUGCRequestUGCDetailsResult_t_129() const; @@ -10529,7 +10529,7 @@ struct w32_SteamUGCRequestUGCDetailsResult_t_129 struct u32_SteamUGCRequestUGCDetailsResult_t_129 { u32_SteamUGCDetails_t_126 m_details; - bool m_bCachedData; + int8_t m_bCachedData; uint8_t __pad_9761[3]; #ifdef __cplusplus operator w32_SteamUGCRequestUGCDetailsResult_t_129() const; diff --git a/lsteamclient/unix_private_generated.h b/lsteamclient/unix_private_generated.h index b76b36d1..66a62b34 100644 --- a/lsteamclient/unix_private_generated.h +++ b/lsteamclient/unix_private_generated.h @@ -8,7 +8,7 @@ struct u_ISteamClient_SteamClient006 { #ifdef __cplusplus virtual int32_t CreateSteamPipe( ) = 0; - virtual bool BReleaseSteamPipe( int32_t ) = 0; + virtual int8_t BReleaseSteamPipe( int32_t ) = 0; virtual int32_t CreateGlobalUser( int32_t * ) = 0; virtual int32_t ConnectToGlobalUser( int32_t ) = 0; virtual int32_t CreateLocalUser( int32_t * ) = 0; @@ -37,28 +37,28 @@ struct u_ISteamUser_SteamUser004 virtual int32_t GetHSteamUser( ) = 0; virtual void LogOn( CSteamID ) = 0; virtual void LogOff( ) = 0; - virtual bool BLoggedOn( ) = 0; + virtual int8_t BLoggedOn( ) = 0; virtual uint32_t GetLogonState( ) = 0; - virtual bool BConnected( ) = 0; + virtual int8_t BConnected( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual bool IsVACBanned( int32_t ) = 0; - virtual bool RequireShowVACBannedMessage( int32_t ) = 0; + virtual int8_t IsVACBanned( int32_t ) = 0; + virtual int8_t RequireShowVACBannedMessage( int32_t ) = 0; virtual void AcknowledgeVACBanning( int32_t ) = 0; virtual int32_t NClientGameIDAdd( int32_t ) = 0; virtual void RemoveClientGame( int32_t ) = 0; virtual void SetClientGameServer( int32_t, uint32_t, uint16_t ) = 0; virtual void SetSteam2Ticket( uint8_t *, int32_t ) = 0; virtual void AddServerNetAddress( uint32_t, uint16_t ) = 0; - virtual bool SetEmail( const char * ) = 0; + virtual int8_t SetEmail( const char * ) = 0; virtual int32_t GetSteamGameConnectToken( void *, int32_t ) = 0; - virtual bool SetRegistryString( uint32_t, const char *, const char * ) = 0; - virtual bool GetRegistryString( uint32_t, const char *, char *, int32_t ) = 0; - virtual bool SetRegistryInt( uint32_t, const char *, int32_t ) = 0; - virtual bool GetRegistryInt( uint32_t, const char *, int32_t * ) = 0; - virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, int32_t, uint32_t, uint16_t, bool ) = 0; + virtual int8_t SetRegistryString( uint32_t, const char *, const char * ) = 0; + virtual int8_t GetRegistryString( uint32_t, const char *, char *, int32_t ) = 0; + virtual int8_t SetRegistryInt( uint32_t, const char *, int32_t ) = 0; + virtual int8_t GetRegistryInt( uint32_t, const char *, int32_t * ) = 0; + virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, int32_t, uint32_t, uint16_t, int8_t ) = 0; virtual void TerminateGameConnection( uint32_t, uint16_t ) = 0; virtual void SetSelfAsPrimaryChatDestination( ) = 0; - virtual bool IsPrimaryChatDestination( ) = 0; + virtual int8_t IsPrimaryChatDestination( ) = 0; virtual void RequestLegacyCDKey( uint32_t ) = 0; #endif /* __cplusplus */ }; @@ -70,12 +70,12 @@ struct u_ISteamFriends_SteamFriends001 virtual void SetPersonaName( const char * ) = 0; virtual uint32_t GetPersonaState( ) = 0; virtual void SetPersonaState( uint32_t ) = 0; - virtual bool AddFriend( CSteamID ) = 0; - virtual bool RemoveFriend( CSteamID ) = 0; - virtual bool HasFriend( CSteamID ) = 0; + virtual int8_t AddFriend( CSteamID ) = 0; + virtual int8_t RemoveFriend( CSteamID ) = 0; + virtual int8_t HasFriend( CSteamID ) = 0; virtual uint32_t GetFriendRelationship( CSteamID ) = 0; virtual uint32_t GetFriendPersonaState( CSteamID ) = 0; - virtual bool Deprecated_GetFriendGamePlayed( CSteamID, int32_t *, uint32_t *, uint16_t * ) = 0; + virtual int8_t Deprecated_GetFriendGamePlayed( CSteamID, int32_t *, uint32_t *, uint16_t * ) = 0; virtual const char * GetFriendPersonaName( CSteamID ) = 0; virtual int32_t AddFriendByName( const char * ) = 0; virtual int32_t GetFriendCount( ) = 0; @@ -85,14 +85,14 @@ struct u_ISteamFriends_SteamFriends001 virtual const char * GetFriendRegValue( CSteamID, const char * ) = 0; virtual const char * GetFriendPersonaNameHistory( CSteamID, int32_t ) = 0; virtual int32_t GetChatMessage( CSteamID, int32_t, void *, int32_t, uint32_t * ) = 0; - virtual bool SendMsgToFriend( CSteamID, uint32_t, const void *, int32_t ) = 0; + virtual int8_t SendMsgToFriend( CSteamID, uint32_t, const void *, int32_t ) = 0; virtual int32_t GetChatIDOfChatHistoryStart( CSteamID ) = 0; virtual void SetChatHistoryStart( CSteamID, int32_t ) = 0; virtual void ClearChatHistory( CSteamID ) = 0; - virtual bool InviteFriendByEmail( const char * ) = 0; + virtual int8_t InviteFriendByEmail( const char * ) = 0; virtual int32_t GetBlockedFriendCount( ) = 0; - virtual bool GetFriendGamePlayed( CSteamID, uint64_t *, uint32_t *, uint16_t * ) = 0; - virtual bool GetFriendGamePlayed2( CSteamID, uint64_t *, uint32_t *, uint16_t *, uint16_t * ) = 0; + virtual int8_t GetFriendGamePlayed( CSteamID, uint64_t *, uint32_t *, uint16_t * ) = 0; + virtual int8_t GetFriendGamePlayed2( CSteamID, uint64_t *, uint32_t *, uint16_t *, uint16_t * ) = 0; #endif /* __cplusplus */ }; @@ -104,15 +104,15 @@ struct u_ISteamUtils_SteamUtils002 virtual uint32_t GetConnectedUniverse( ) = 0; virtual uint32_t GetServerRealTime( ) = 0; virtual const char * GetIPCountry( ) = 0; - virtual bool GetImageSize( int32_t, uint32_t *, uint32_t * ) = 0; - virtual bool GetImageRGBA( int32_t, uint8_t *, int32_t ) = 0; - virtual bool GetCSERIPPort( uint32_t *, uint16_t * ) = 0; + virtual int8_t GetImageSize( int32_t, uint32_t *, uint32_t * ) = 0; + virtual int8_t GetImageRGBA( int32_t, uint8_t *, int32_t ) = 0; + virtual int8_t GetCSERIPPort( uint32_t *, uint16_t * ) = 0; virtual uint8_t GetCurrentBatteryPower( ) = 0; virtual uint32_t GetAppID( ) = 0; virtual void SetOverlayNotificationPosition( uint32_t ) = 0; - virtual bool IsAPICallCompleted( uint64_t, bool * ) = 0; + virtual int8_t IsAPICallCompleted( uint64_t, int8_t * ) = 0; virtual uint32_t GetAPICallFailureReason( uint64_t ) = 0; - virtual bool GetAPICallResult( uint64_t, void *, int32_t, int32_t, bool * ) = 0; + virtual int8_t GetAPICallResult( uint64_t, void *, int32_t, int32_t, int8_t * ) = 0; #endif /* __cplusplus */ }; @@ -120,27 +120,27 @@ struct u_ISteamMatchmaking_SteamMatchMaking001 { #ifdef __cplusplus virtual int32_t GetFavoriteGameCount( ) = 0; - virtual bool GetFavoriteGame( int32_t, uint32_t *, uint32_t *, uint16_t *, uint32_t *, uint32_t * ) = 0; + virtual int8_t GetFavoriteGame( int32_t, uint32_t *, uint32_t *, uint16_t *, uint32_t *, uint32_t * ) = 0; virtual int32_t AddFavoriteGame( uint32_t, uint32_t, uint16_t, uint32_t, uint32_t ) = 0; - virtual bool RemoveFavoriteGame( uint32_t, uint32_t, uint16_t, uint32_t ) = 0; - virtual bool GetFavoriteGame2( int32_t, uint32_t *, uint32_t *, uint16_t *, uint16_t *, uint32_t *, uint32_t * ) = 0; + virtual int8_t RemoveFavoriteGame( uint32_t, uint32_t, uint16_t, uint32_t ) = 0; + virtual int8_t GetFavoriteGame2( int32_t, uint32_t *, uint32_t *, uint16_t *, uint16_t *, uint32_t *, uint32_t * ) = 0; virtual int32_t AddFavoriteGame2( uint32_t, uint32_t, uint16_t, uint16_t, uint32_t, uint32_t ) = 0; - virtual bool RemoveFavoriteGame2( uint32_t, uint32_t, uint16_t, uint16_t, uint32_t ) = 0; + virtual int8_t RemoveFavoriteGame2( uint32_t, uint32_t, uint16_t, uint16_t, uint32_t ) = 0; virtual void RequestLobbyList( uint64_t, MatchMakingKeyValuePair_t *, uint32_t ) = 0; virtual CSteamID GetLobbyByIndex( int32_t ) = 0; - virtual void CreateLobby( uint64_t, bool ) = 0; + virtual void CreateLobby( uint64_t, int8_t ) = 0; virtual void JoinLobby( CSteamID ) = 0; virtual void LeaveLobby( CSteamID ) = 0; - virtual bool InviteUserToLobby( CSteamID, CSteamID ) = 0; + virtual int8_t InviteUserToLobby( CSteamID, CSteamID ) = 0; virtual int32_t GetNumLobbyMembers( CSteamID ) = 0; virtual CSteamID GetLobbyMemberByIndex( CSteamID, int32_t ) = 0; virtual const char * GetLobbyData( CSteamID, const char * ) = 0; - virtual bool SetLobbyData( CSteamID, const char *, const char * ) = 0; + virtual int8_t SetLobbyData( CSteamID, const char *, const char * ) = 0; virtual const char * GetLobbyMemberData( CSteamID, CSteamID, const char * ) = 0; - virtual bool SetLobbyMemberData( CSteamID, const char *, const char * ) = 0; - virtual bool SendLobbyChatMsg( CSteamID, const void *, int32_t ) = 0; + virtual int8_t SetLobbyMemberData( CSteamID, const char *, const char * ) = 0; + virtual int8_t SendLobbyChatMsg( CSteamID, const void *, int32_t ) = 0; virtual int32_t GetLobbyChatEntry( CSteamID, int32_t, CSteamID *, void *, int32_t, uint32_t * ) = 0; - virtual bool RequestLobbyData( CSteamID ) = 0; + virtual int8_t RequestLobbyData( CSteamID ) = 0; #endif /* __cplusplus */ }; @@ -156,7 +156,7 @@ struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 virtual gameserveritem_t_105 * GetServerDetails( uint32_t, int32_t ) = 0; virtual void CancelQuery( uint32_t ) = 0; virtual void RefreshQuery( uint32_t ) = 0; - virtual bool IsRefreshing( uint32_t ) = 0; + virtual int8_t IsRefreshing( uint32_t ) = 0; virtual int32_t GetServerCount( uint32_t ) = 0; virtual void RefreshServer( uint32_t, int32_t ) = 0; virtual int32_t PingServer( uint32_t, uint16_t, u_ISteamMatchmakingPingResponse * ) = 0; @@ -176,19 +176,19 @@ struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 virtual const char * GetAchievementName( CGameID, uint32_t ) = 0; virtual uint32_t GetNumGroupAchievements( CGameID ) = 0; virtual const char * GetGroupAchievementName( CGameID, uint32_t ) = 0; - virtual bool RequestCurrentStats( CGameID ) = 0; - virtual bool GetStat( CGameID, const char *, int32_t * ) = 0; - virtual bool GetStat( CGameID, const char *, float * ) = 0; - virtual bool SetStat( CGameID, const char *, int32_t ) = 0; - virtual bool SetStat( CGameID, const char *, float ) = 0; - virtual bool UpdateAvgRateStat( CGameID, const char *, float, double ) = 0; - virtual bool GetAchievement( CGameID, const char *, bool * ) = 0; - virtual bool GetGroupAchievement( CGameID, const char *, bool * ) = 0; - virtual bool SetAchievement( CGameID, const char * ) = 0; - virtual bool SetGroupAchievement( CGameID, const char * ) = 0; - virtual bool StoreStats( CGameID ) = 0; - virtual bool ClearAchievement( CGameID, const char * ) = 0; - virtual bool ClearGroupAchievement( CGameID, const char * ) = 0; + virtual int8_t RequestCurrentStats( CGameID ) = 0; + virtual int8_t GetStat( CGameID, const char *, int32_t * ) = 0; + virtual int8_t GetStat( CGameID, const char *, float * ) = 0; + virtual int8_t SetStat( CGameID, const char *, int32_t ) = 0; + virtual int8_t SetStat( CGameID, const char *, float ) = 0; + virtual int8_t UpdateAvgRateStat( CGameID, const char *, float, double ) = 0; + virtual int8_t GetAchievement( CGameID, const char *, int8_t * ) = 0; + virtual int8_t GetGroupAchievement( CGameID, const char *, int8_t * ) = 0; + virtual int8_t SetAchievement( CGameID, const char * ) = 0; + virtual int8_t SetGroupAchievement( CGameID, const char * ) = 0; + virtual int8_t StoreStats( CGameID ) = 0; + virtual int8_t ClearAchievement( CGameID, const char * ) = 0; + virtual int8_t ClearGroupAchievement( CGameID, const char * ) = 0; virtual int32_t GetAchievementIcon( CGameID, const char * ) = 0; virtual const char * GetAchievementDisplayAttribute( CGameID, const char *, const char * ) = 0; #endif /* __cplusplus */ @@ -207,15 +207,15 @@ struct u_ISteamNetworking_SteamNetworking001 virtual uint32_t CreateListenSocket( int32_t, uint32_t, uint16_t ) = 0; virtual uint32_t CreateP2PConnectionSocket( CSteamID, int32_t, int32_t ) = 0; virtual uint32_t CreateConnectionSocket( uint32_t, uint16_t, int32_t ) = 0; - virtual bool DestroySocket( uint32_t, bool ) = 0; - virtual bool DestroyListenSocket( uint32_t, bool ) = 0; - virtual bool SendDataOnSocket( uint32_t, void *, uint32_t, bool ) = 0; - virtual bool IsDataAvailableOnSocket( uint32_t, uint32_t * ) = 0; - virtual bool RetrieveDataFromSocket( uint32_t, void *, uint32_t, uint32_t * ) = 0; - virtual bool IsDataAvailable( uint32_t, uint32_t *, uint32_t * ) = 0; - virtual bool RetrieveData( uint32_t, void *, uint32_t, uint32_t *, uint32_t * ) = 0; - virtual bool GetSocketInfo( uint32_t, CSteamID *, int32_t *, uint32_t *, uint16_t * ) = 0; - virtual bool GetListenSocketInfo( uint32_t, uint32_t *, uint16_t * ) = 0; + virtual int8_t DestroySocket( uint32_t, int8_t ) = 0; + virtual int8_t DestroyListenSocket( uint32_t, int8_t ) = 0; + virtual int8_t SendDataOnSocket( uint32_t, void *, uint32_t, int8_t ) = 0; + virtual int8_t IsDataAvailableOnSocket( uint32_t, uint32_t * ) = 0; + virtual int8_t RetrieveDataFromSocket( uint32_t, void *, uint32_t, uint32_t * ) = 0; + virtual int8_t IsDataAvailable( uint32_t, uint32_t *, uint32_t * ) = 0; + virtual int8_t RetrieveData( uint32_t, void *, uint32_t, uint32_t *, uint32_t * ) = 0; + virtual int8_t GetSocketInfo( uint32_t, CSteamID *, int32_t *, uint32_t *, uint16_t * ) = 0; + virtual int8_t GetListenSocketInfo( uint32_t, uint32_t *, uint16_t * ) = 0; #endif /* __cplusplus */ }; @@ -224,23 +224,23 @@ struct u_ISteamGameServer_SteamGameServer002 #ifdef __cplusplus virtual void LogOn( ) = 0; virtual void LogOff( ) = 0; - virtual bool BLoggedOn( ) = 0; + virtual int8_t BLoggedOn( ) = 0; virtual void GSSetSpawnCount( uint32_t ) = 0; - virtual bool GSGetSteam2GetEncryptionKeyToSendToNewClient( void *, uint32_t *, uint32_t ) = 0; - virtual bool GSSendSteam2UserConnect( uint32_t, const void *, uint32_t, uint32_t, uint16_t, const void *, uint32_t ) = 0; - virtual bool GSSendSteam3UserConnect( CSteamID, uint32_t, const void *, uint32_t ) = 0; - virtual bool GSRemoveUserConnect( uint32_t ) = 0; - virtual bool GSSendUserDisconnect( CSteamID, uint32_t ) = 0; - virtual bool GSSendUserStatusResponse( CSteamID, int32_t, int32_t ) = 0; - virtual bool Obsolete_GSSetStatus( int32_t, uint32_t, int32_t, int32_t, int32_t, int32_t, const char *, const char *, const char *, const char * ) = 0; - virtual bool GSUpdateStatus( int32_t, int32_t, int32_t, const char *, const char * ) = 0; - virtual bool BSecure( ) = 0; + virtual int8_t GSGetSteam2GetEncryptionKeyToSendToNewClient( void *, uint32_t *, uint32_t ) = 0; + virtual int8_t GSSendSteam2UserConnect( uint32_t, const void *, uint32_t, uint32_t, uint16_t, const void *, uint32_t ) = 0; + virtual int8_t GSSendSteam3UserConnect( CSteamID, uint32_t, const void *, uint32_t ) = 0; + virtual int8_t GSRemoveUserConnect( uint32_t ) = 0; + virtual int8_t GSSendUserDisconnect( CSteamID, uint32_t ) = 0; + virtual int8_t GSSendUserStatusResponse( CSteamID, int32_t, int32_t ) = 0; + virtual int8_t Obsolete_GSSetStatus( int32_t, uint32_t, int32_t, int32_t, int32_t, int32_t, const char *, const char *, const char *, const char * ) = 0; + virtual int8_t GSUpdateStatus( int32_t, int32_t, int32_t, const char *, const char * ) = 0; + virtual int8_t BSecure( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual bool GSSetServerType( int32_t, uint32_t, uint32_t, uint32_t, const char *, const char * ) = 0; - virtual bool GSSetServerType2( int32_t, uint32_t, uint32_t, uint16_t, uint16_t, uint16_t, const char *, const char *, bool ) = 0; - virtual bool GSUpdateStatus2( int32_t, int32_t, int32_t, const char *, const char *, const char * ) = 0; - virtual bool GSCreateUnauthenticatedUser( CSteamID * ) = 0; - virtual bool GSSetUserData( CSteamID, const char *, uint32_t ) = 0; + virtual int8_t GSSetServerType( int32_t, uint32_t, uint32_t, uint32_t, const char *, const char * ) = 0; + virtual int8_t GSSetServerType2( int32_t, uint32_t, uint32_t, uint16_t, uint16_t, uint16_t, const char *, const char *, int8_t ) = 0; + virtual int8_t GSUpdateStatus2( int32_t, int32_t, int32_t, const char *, const char *, const char * ) = 0; + virtual int8_t GSCreateUnauthenticatedUser( CSteamID * ) = 0; + virtual int8_t GSSetUserData( CSteamID, const char *, uint32_t ) = 0; virtual void GSUpdateSpectatorPort( uint16_t ) = 0; virtual void GSSetGameType( const char * ) = 0; #endif /* __cplusplus */ @@ -249,18 +249,18 @@ struct u_ISteamGameServer_SteamGameServer002 struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 { #ifdef __cplusplus - virtual void SetActive( bool ) = 0; + virtual void SetActive( int8_t ) = 0; virtual void SetHeartbeatInterval( int32_t ) = 0; - virtual bool HandleIncomingPacket( const void *, int32_t, uint32_t, uint16_t ) = 0; + virtual int8_t HandleIncomingPacket( const void *, int32_t, uint32_t, uint16_t ) = 0; virtual int32_t GetNextOutgoingPacket( void *, int32_t, uint32_t *, uint16_t * ) = 0; - virtual void SetBasicServerData( uint16_t, bool, const char *, const char *, uint16_t, bool, const char * ) = 0; + virtual void SetBasicServerData( uint16_t, int8_t, const char *, const char *, uint16_t, int8_t, const char * ) = 0; virtual void ClearAllKeyValues( ) = 0; virtual void SetKeyValue( const char *, const char * ) = 0; virtual void NotifyShutdown( ) = 0; - virtual bool WasRestartRequested( ) = 0; + virtual int8_t WasRestartRequested( ) = 0; virtual void ForceHeartbeat( ) = 0; - virtual bool AddMasterServer( const char * ) = 0; - virtual bool RemoveMasterServer( const char * ) = 0; + virtual int8_t AddMasterServer( const char * ) = 0; + virtual int8_t RemoveMasterServer( const char * ) = 0; virtual int32_t GetNumMasterServers( ) = 0; virtual int32_t GetMasterServerAddress( int32_t, char *, int32_t ) = 0; #endif /* __cplusplus */ @@ -272,38 +272,38 @@ struct u_ISteamUser_SteamUser005 virtual int32_t GetHSteamUser( ) = 0; virtual void LogOn( CSteamID ) = 0; virtual void LogOff( ) = 0; - virtual bool BLoggedOn( ) = 0; + virtual int8_t BLoggedOn( ) = 0; virtual uint32_t GetLogonState( ) = 0; - virtual bool BConnected( ) = 0; + virtual int8_t BConnected( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual bool IsVACBanned( int32_t ) = 0; - virtual bool RequireShowVACBannedMessage( int32_t ) = 0; + virtual int8_t IsVACBanned( int32_t ) = 0; + virtual int8_t RequireShowVACBannedMessage( int32_t ) = 0; virtual void AcknowledgeVACBanning( int32_t ) = 0; virtual void SetSteam2Ticket( uint8_t *, int32_t ) = 0; virtual void AddServerNetAddress( uint32_t, uint16_t ) = 0; - virtual bool SetEmail( const char * ) = 0; - virtual bool SetRegistryString( uint32_t, const char *, const char * ) = 0; - virtual bool GetRegistryString( uint32_t, const char *, char *, int32_t ) = 0; - virtual bool SetRegistryInt( uint32_t, const char *, int32_t ) = 0; - virtual bool GetRegistryInt( uint32_t, const char *, int32_t * ) = 0; - virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, CGameID, uint32_t, uint16_t, bool ) = 0; + virtual int8_t SetEmail( const char * ) = 0; + virtual int8_t SetRegistryString( uint32_t, const char *, const char * ) = 0; + virtual int8_t GetRegistryString( uint32_t, const char *, char *, int32_t ) = 0; + virtual int8_t SetRegistryInt( uint32_t, const char *, int32_t ) = 0; + virtual int8_t GetRegistryInt( uint32_t, const char *, int32_t * ) = 0; + virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, CGameID, uint32_t, uint16_t, int8_t ) = 0; virtual void TerminateGameConnection( uint32_t, uint16_t ) = 0; virtual void SetSelfAsPrimaryChatDestination( ) = 0; - virtual bool IsPrimaryChatDestination( ) = 0; + virtual int8_t IsPrimaryChatDestination( ) = 0; virtual void RequestLegacyCDKey( uint32_t ) = 0; - virtual bool SendGuestPassByEmail( const char *, uint64_t, bool ) = 0; - virtual bool SendGuestPassByAccountID( uint32_t, uint64_t, bool ) = 0; - virtual bool AckGuestPass( const char * ) = 0; - virtual bool RedeemGuestPass( const char * ) = 0; + virtual int8_t SendGuestPassByEmail( const char *, uint64_t, int8_t ) = 0; + virtual int8_t SendGuestPassByAccountID( uint32_t, uint64_t, int8_t ) = 0; + virtual int8_t AckGuestPass( const char * ) = 0; + virtual int8_t RedeemGuestPass( const char * ) = 0; virtual uint32_t GetGuestPassToGiveCount( ) = 0; virtual uint32_t GetGuestPassToRedeemCount( ) = 0; virtual uint32_t GetGuestPassLastUpdateTime( ) = 0; - virtual bool GetGuestPassToGiveInfo( uint32_t, uint64_t *, uint32_t *, uint32_t *, uint32_t *, uint32_t *, uint32_t *, char *, int32_t ) = 0; - virtual bool GetGuestPassToRedeemInfo( uint32_t, uint64_t *, uint32_t *, uint32_t *, uint32_t *, uint32_t *, uint32_t * ) = 0; - virtual bool GetGuestPassToRedeemSenderAddress( uint32_t, char *, int32_t ) = 0; - virtual bool GetGuestPassToRedeemSenderName( uint32_t, char *, int32_t ) = 0; + virtual int8_t GetGuestPassToGiveInfo( uint32_t, uint64_t *, uint32_t *, uint32_t *, uint32_t *, uint32_t *, uint32_t *, char *, int32_t ) = 0; + virtual int8_t GetGuestPassToRedeemInfo( uint32_t, uint64_t *, uint32_t *, uint32_t *, uint32_t *, uint32_t *, uint32_t * ) = 0; + virtual int8_t GetGuestPassToRedeemSenderAddress( uint32_t, char *, int32_t ) = 0; + virtual int8_t GetGuestPassToRedeemSenderName( uint32_t, char *, int32_t ) = 0; virtual void AcknowledgeMessageByGID( const char * ) = 0; - virtual bool SetLanguage( const char * ) = 0; + virtual int8_t SetLanguage( const char * ) = 0; virtual void TrackAppUsageEvent( CGameID, int32_t, const char * ) = 0; virtual void SetAccountName( const char * ) = 0; virtual void SetPassword( const char * ) = 0; @@ -317,13 +317,13 @@ struct u_ISteamUser_SteamUser006 virtual int32_t GetHSteamUser( ) = 0; virtual void LogOn( CSteamID ) = 0; virtual void LogOff( ) = 0; - virtual bool BLoggedOn( ) = 0; + virtual int8_t BLoggedOn( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual bool SetRegistryString( uint32_t, const char *, const char * ) = 0; - virtual bool GetRegistryString( uint32_t, const char *, char *, int32_t ) = 0; - virtual bool SetRegistryInt( uint32_t, const char *, int32_t ) = 0; - virtual bool GetRegistryInt( uint32_t, const char *, int32_t * ) = 0; - virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, CGameID, uint32_t, uint16_t, bool ) = 0; + virtual int8_t SetRegistryString( uint32_t, const char *, const char * ) = 0; + virtual int8_t GetRegistryString( uint32_t, const char *, char *, int32_t ) = 0; + virtual int8_t SetRegistryInt( uint32_t, const char *, int32_t ) = 0; + virtual int8_t GetRegistryInt( uint32_t, const char *, int32_t * ) = 0; + virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, CGameID, uint32_t, uint16_t, int8_t ) = 0; virtual void TerminateGameConnection( uint32_t, uint16_t ) = 0; virtual void TrackAppUsageEvent( CGameID, int32_t, const char * ) = 0; #endif /* __cplusplus */ @@ -335,13 +335,13 @@ struct u_ISteamUser_SteamUser007 virtual int32_t GetHSteamUser( ) = 0; virtual void LogOn( CSteamID ) = 0; virtual void LogOff( ) = 0; - virtual bool BLoggedOn( ) = 0; + virtual int8_t BLoggedOn( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual bool SetRegistryString( uint32_t, const char *, const char * ) = 0; - virtual bool GetRegistryString( uint32_t, const char *, char *, int32_t ) = 0; - virtual bool SetRegistryInt( uint32_t, const char *, int32_t ) = 0; - virtual bool GetRegistryInt( uint32_t, const char *, int32_t * ) = 0; - virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, CGameID, uint32_t, uint16_t, bool, void *, int32_t ) = 0; + virtual int8_t SetRegistryString( uint32_t, const char *, const char * ) = 0; + virtual int8_t GetRegistryString( uint32_t, const char *, char *, int32_t ) = 0; + virtual int8_t SetRegistryInt( uint32_t, const char *, int32_t ) = 0; + virtual int8_t GetRegistryInt( uint32_t, const char *, int32_t * ) = 0; + virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, CGameID, uint32_t, uint16_t, int8_t, void *, int32_t ) = 0; virtual void TerminateGameConnection( uint32_t, uint16_t ) = 0; virtual void TrackAppUsageEvent( CGameID, int32_t, const char * ) = 0; virtual void RefreshSteam2Login( ) = 0; @@ -352,9 +352,9 @@ struct u_ISteamUser_SteamUser008 { #ifdef __cplusplus virtual int32_t GetHSteamUser( ) = 0; - virtual bool BLoggedOn( ) = 0; + virtual int8_t BLoggedOn( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, CGameID *, uint32_t, uint16_t, bool, void *, int32_t ) = 0; + virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, CGameID *, uint32_t, uint16_t, int8_t, void *, int32_t ) = 0; virtual void TerminateGameConnection( uint32_t, uint16_t ) = 0; virtual void TrackAppUsageEvent( CGameID, int32_t, const char * ) = 0; virtual void RefreshSteam2Login( ) = 0; @@ -375,23 +375,23 @@ struct u_ISteamFriends_SteamFriends002 virtual const char * GetFriendPersonaName( CSteamID ) = 0; virtual void SetFriendRegValue( CSteamID, const char *, const char * ) = 0; virtual const char * GetFriendRegValue( CSteamID, const char * ) = 0; - virtual bool GetFriendGamePlayed( CSteamID, uint64_t *, uint32_t *, uint16_t *, uint16_t * ) = 0; + virtual int8_t GetFriendGamePlayed( CSteamID, uint64_t *, uint32_t *, uint16_t *, uint16_t * ) = 0; virtual const char * GetFriendPersonaNameHistory( CSteamID, int32_t ) = 0; - virtual bool AddFriend( CSteamID ) = 0; - virtual bool RemoveFriend( CSteamID ) = 0; - virtual bool HasFriend( CSteamID, int32_t ) = 0; + virtual int8_t AddFriend( CSteamID ) = 0; + virtual int8_t RemoveFriend( CSteamID ) = 0; + virtual int8_t HasFriend( CSteamID, int32_t ) = 0; virtual int32_t AddFriendByName( const char * ) = 0; - virtual bool InviteFriendByEmail( const char * ) = 0; + virtual int8_t InviteFriendByEmail( const char * ) = 0; virtual int32_t GetChatMessage( CSteamID, int32_t, void *, int32_t, uint32_t * ) = 0; - virtual bool SendMsgToFriend( CSteamID, uint32_t, const void *, int32_t ) = 0; + virtual int8_t SendMsgToFriend( CSteamID, uint32_t, const void *, int32_t ) = 0; virtual int32_t GetChatIDOfChatHistoryStart( CSteamID ) = 0; virtual void SetChatHistoryStart( CSteamID, int32_t ) = 0; virtual void ClearChatHistory( CSteamID ) = 0; virtual int32_t GetClanCount( ) = 0; virtual CSteamID GetClanByIndex( int32_t ) = 0; virtual const char * GetClanName( CSteamID ) = 0; - virtual bool InviteFriendToClan( CSteamID, CSteamID ) = 0; - virtual bool AcknowledgeInviteToClan( CSteamID, bool ) = 0; + virtual int8_t InviteFriendToClan( CSteamID, CSteamID ) = 0; + virtual int8_t AcknowledgeInviteToClan( CSteamID, int8_t ) = 0; virtual int32_t GetFriendCountFromSource( CSteamID ) = 0; virtual CSteamID GetFriendFromSourceByIndex( CSteamID, int32_t ) = 0; #endif /* __cplusplus */ @@ -405,19 +405,19 @@ struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 virtual uint32_t GetStatType( CGameID, const char * ) = 0; virtual uint32_t GetNumAchievements( CGameID ) = 0; virtual const char * GetAchievementName( CGameID, uint32_t ) = 0; - virtual bool RequestCurrentStats( CGameID ) = 0; - virtual bool GetStat( CGameID, const char *, int32_t * ) = 0; - virtual bool GetStat( CGameID, const char *, float * ) = 0; - virtual bool SetStat( CGameID, const char *, int32_t ) = 0; - virtual bool SetStat( CGameID, const char *, float ) = 0; - virtual bool UpdateAvgRateStat( CGameID, const char *, float, double ) = 0; - virtual bool GetAchievement( CGameID, const char *, bool * ) = 0; - virtual bool SetAchievement( CGameID, const char * ) = 0; - virtual bool ClearAchievement( CGameID, const char * ) = 0; - virtual bool StoreStats( CGameID ) = 0; + virtual int8_t RequestCurrentStats( CGameID ) = 0; + virtual int8_t GetStat( CGameID, const char *, int32_t * ) = 0; + virtual int8_t GetStat( CGameID, const char *, float * ) = 0; + virtual int8_t SetStat( CGameID, const char *, int32_t ) = 0; + virtual int8_t SetStat( CGameID, const char *, float ) = 0; + virtual int8_t UpdateAvgRateStat( CGameID, const char *, float, double ) = 0; + virtual int8_t GetAchievement( CGameID, const char *, int8_t * ) = 0; + virtual int8_t SetAchievement( CGameID, const char * ) = 0; + virtual int8_t ClearAchievement( CGameID, const char * ) = 0; + virtual int8_t StoreStats( CGameID ) = 0; virtual int32_t GetAchievementIcon( CGameID, const char * ) = 0; virtual const char * GetAchievementDisplayAttribute( CGameID, const char *, const char * ) = 0; - virtual bool IndicateAchievementProgress( CGameID, const char *, uint32_t, uint32_t ) = 0; + virtual int8_t IndicateAchievementProgress( CGameID, const char *, uint32_t, uint32_t ) = 0; #endif /* __cplusplus */ }; @@ -426,21 +426,21 @@ struct u_ISteamGameServer_SteamGameServer003 #ifdef __cplusplus virtual void LogOn( ) = 0; virtual void LogOff( ) = 0; - virtual bool BLoggedOn( ) = 0; - virtual bool BSecure( ) = 0; + virtual int8_t BLoggedOn( ) = 0; + virtual int8_t BSecure( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual bool GSGetSteam2GetEncryptionKeyToSendToNewClient( void *, uint32_t *, uint32_t ) = 0; - virtual bool GSSendUserConnect( uint32_t, uint32_t, uint16_t, const void *, uint32_t ) = 0; - virtual bool GSRemoveUserConnect( uint32_t ) = 0; - virtual bool GSSendUserDisconnect( CSteamID, uint32_t ) = 0; + virtual int8_t GSGetSteam2GetEncryptionKeyToSendToNewClient( void *, uint32_t *, uint32_t ) = 0; + virtual int8_t GSSendUserConnect( uint32_t, uint32_t, uint16_t, const void *, uint32_t ) = 0; + virtual int8_t GSRemoveUserConnect( uint32_t ) = 0; + virtual int8_t GSSendUserDisconnect( CSteamID, uint32_t ) = 0; virtual void GSSetSpawnCount( uint32_t ) = 0; - virtual bool GSSetServerType( int32_t, uint32_t, uint32_t, uint16_t, uint16_t, uint16_t, const char *, const char *, bool ) = 0; - virtual bool GSUpdateStatus( int32_t, int32_t, int32_t, const char *, const char *, const char * ) = 0; - virtual bool GSCreateUnauthenticatedUser( CSteamID * ) = 0; - virtual bool GSSetUserData( CSteamID, const char *, uint32_t ) = 0; + virtual int8_t GSSetServerType( int32_t, uint32_t, uint32_t, uint16_t, uint16_t, uint16_t, const char *, const char *, int8_t ) = 0; + virtual int8_t GSUpdateStatus( int32_t, int32_t, int32_t, const char *, const char *, const char * ) = 0; + virtual int8_t GSCreateUnauthenticatedUser( CSteamID * ) = 0; + virtual int8_t GSSetUserData( CSteamID, const char *, uint32_t ) = 0; virtual void GSUpdateSpectatorPort( uint16_t ) = 0; virtual void GSSetGameType( const char * ) = 0; - virtual bool GSGetUserAchievementStatus( CSteamID, const char * ) = 0; + virtual int8_t GSGetUserAchievementStatus( CSteamID, const char * ) = 0; #endif /* __cplusplus */ }; @@ -448,7 +448,7 @@ struct u_ISteamClient_SteamClient007 { #ifdef __cplusplus virtual int32_t CreateSteamPipe( ) = 0; - virtual bool BReleaseSteamPipe( int32_t ) = 0; + virtual int8_t BReleaseSteamPipe( int32_t ) = 0; virtual int32_t ConnectToGlobalUser( int32_t ) = 0; virtual int32_t CreateLocalUser( int32_t * ) = 0; virtual void ReleaseUser( int32_t, int32_t ) = 0; @@ -476,9 +476,9 @@ struct u_ISteamUser_SteamUser009 { #ifdef __cplusplus virtual int32_t GetHSteamUser( ) = 0; - virtual bool BLoggedOn( ) = 0; + virtual int8_t BLoggedOn( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, CGameID, uint32_t, uint16_t, bool ) = 0; + virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, CGameID, uint32_t, uint16_t, int8_t ) = 0; virtual void TerminateGameConnection( uint32_t, uint16_t ) = 0; virtual void TrackAppUsageEvent( CGameID, int32_t, const char * ) = 0; virtual void RefreshSteam2Login( ) = 0; @@ -497,16 +497,16 @@ struct u_ISteamFriends_SteamFriends003 virtual uint32_t GetFriendPersonaState( CSteamID ) = 0; virtual const char * GetFriendPersonaName( CSteamID ) = 0; virtual int32_t GetFriendAvatar( CSteamID ) = 0; - virtual bool GetFriendGamePlayed( CSteamID, uint64_t *, uint32_t *, uint16_t *, uint16_t * ) = 0; + virtual int8_t GetFriendGamePlayed( CSteamID, uint64_t *, uint32_t *, uint16_t *, uint16_t * ) = 0; virtual const char * GetFriendPersonaNameHistory( CSteamID, int32_t ) = 0; - virtual bool HasFriend( CSteamID, int32_t ) = 0; + virtual int8_t HasFriend( CSteamID, int32_t ) = 0; virtual int32_t GetClanCount( ) = 0; virtual CSteamID GetClanByIndex( int32_t ) = 0; virtual const char * GetClanName( CSteamID ) = 0; virtual int32_t GetFriendCountFromSource( CSteamID ) = 0; virtual CSteamID GetFriendFromSourceByIndex( CSteamID, int32_t ) = 0; - virtual bool IsUserInSource( CSteamID, CSteamID ) = 0; - virtual void SetInGameVoiceSpeaking( CSteamID, bool ) = 0; + virtual int8_t IsUserInSource( CSteamID, CSteamID ) = 0; + virtual void SetInGameVoiceSpeaking( CSteamID, int8_t ) = 0; virtual void ActivateGameOverlay( const char * ) = 0; #endif /* __cplusplus */ }; @@ -515,24 +515,24 @@ struct u_ISteamMatchmaking_SteamMatchMaking002 { #ifdef __cplusplus virtual int32_t GetFavoriteGameCount( ) = 0; - virtual bool GetFavoriteGame( int32_t, uint32_t *, uint32_t *, uint16_t *, uint16_t *, uint32_t *, uint32_t * ) = 0; + virtual int8_t GetFavoriteGame( int32_t, uint32_t *, uint32_t *, uint16_t *, uint16_t *, uint32_t *, uint32_t * ) = 0; virtual int32_t AddFavoriteGame( uint32_t, uint32_t, uint16_t, uint16_t, uint32_t, uint32_t ) = 0; - virtual bool RemoveFavoriteGame( uint32_t, uint32_t, uint16_t, uint16_t, uint32_t ) = 0; + virtual int8_t RemoveFavoriteGame( uint32_t, uint32_t, uint16_t, uint16_t, uint32_t ) = 0; virtual void RequestLobbyList( ) = 0; virtual CSteamID GetLobbyByIndex( int32_t ) = 0; - virtual void CreateLobby( bool ) = 0; + virtual void CreateLobby( int8_t ) = 0; virtual void JoinLobby( CSteamID ) = 0; virtual void LeaveLobby( CSteamID ) = 0; - virtual bool InviteUserToLobby( CSteamID, CSteamID ) = 0; + virtual int8_t InviteUserToLobby( CSteamID, CSteamID ) = 0; virtual int32_t GetNumLobbyMembers( CSteamID ) = 0; virtual CSteamID GetLobbyMemberByIndex( CSteamID, int32_t ) = 0; virtual const char * GetLobbyData( CSteamID, const char * ) = 0; - virtual bool SetLobbyData( CSteamID, const char *, const char * ) = 0; + virtual int8_t SetLobbyData( CSteamID, const char *, const char * ) = 0; virtual const char * GetLobbyMemberData( CSteamID, CSteamID, const char * ) = 0; virtual void SetLobbyMemberData( CSteamID, const char *, const char * ) = 0; - virtual bool SendLobbyChatMsg( CSteamID, const void *, int32_t ) = 0; + virtual int8_t SendLobbyChatMsg( CSteamID, const void *, int32_t ) = 0; virtual int32_t GetLobbyChatEntry( CSteamID, int32_t, CSteamID *, void *, int32_t, uint32_t * ) = 0; - virtual bool RequestLobbyData( CSteamID ) = 0; + virtual int8_t RequestLobbyData( CSteamID ) = 0; virtual void SetLobbyGameServer( CSteamID, uint32_t, uint16_t, CSteamID ) = 0; #endif /* __cplusplus */ }; @@ -540,19 +540,19 @@ struct u_ISteamMatchmaking_SteamMatchMaking002 struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 { #ifdef __cplusplus - virtual bool RequestCurrentStats( ) = 0; - virtual bool GetStat( const char *, int32_t * ) = 0; - virtual bool GetStat( const char *, float * ) = 0; - virtual bool SetStat( const char *, int32_t ) = 0; - virtual bool SetStat( const char *, float ) = 0; - virtual bool UpdateAvgRateStat( const char *, float, double ) = 0; - virtual bool GetAchievement( const char *, bool * ) = 0; - virtual bool SetAchievement( const char * ) = 0; - virtual bool ClearAchievement( const char * ) = 0; - virtual bool StoreStats( ) = 0; + virtual int8_t RequestCurrentStats( ) = 0; + virtual int8_t GetStat( const char *, int32_t * ) = 0; + virtual int8_t GetStat( const char *, float * ) = 0; + virtual int8_t SetStat( const char *, int32_t ) = 0; + virtual int8_t SetStat( const char *, float ) = 0; + virtual int8_t UpdateAvgRateStat( const char *, float, double ) = 0; + virtual int8_t GetAchievement( const char *, int8_t * ) = 0; + virtual int8_t SetAchievement( const char * ) = 0; + virtual int8_t ClearAchievement( const char * ) = 0; + virtual int8_t StoreStats( ) = 0; virtual int32_t GetAchievementIcon( const char * ) = 0; virtual const char * GetAchievementDisplayAttribute( const char *, const char * ) = 0; - virtual bool IndicateAchievementProgress( const char *, uint32_t, uint32_t ) = 0; + virtual int8_t IndicateAchievementProgress( const char *, uint32_t, uint32_t ) = 0; #endif /* __cplusplus */ }; @@ -561,18 +561,18 @@ struct u_ISteamGameServer_SteamGameServer004 #ifdef __cplusplus virtual void LogOn( ) = 0; virtual void LogOff( ) = 0; - virtual bool BLoggedOn( ) = 0; - virtual bool BSecure( ) = 0; + virtual int8_t BLoggedOn( ) = 0; + virtual int8_t BSecure( ) = 0; virtual CSteamID GetSteamID( ) = 0; virtual void SendUserConnectAndAuthenticate( CSteamID, uint32_t, void *, uint32_t ) = 0; virtual CSteamID CreateUnauthenticatedUserConnection( ) = 0; virtual void SendUserDisconnect( CSteamID ) = 0; - virtual bool BUpdateUserData( CSteamID, const char *, uint32_t ) = 0; - virtual bool BSetServerType( int32_t, uint32_t, uint32_t, uint16_t, uint16_t, uint16_t, const char *, const char *, bool ) = 0; + virtual int8_t BUpdateUserData( CSteamID, const char *, uint32_t ) = 0; + virtual int8_t BSetServerType( int32_t, uint32_t, uint32_t, uint16_t, uint16_t, uint16_t, const char *, const char *, int8_t ) = 0; virtual void UpdateServerStatus( int32_t, int32_t, int32_t, const char *, const char *, const char * ) = 0; virtual void UpdateSpectatorPort( uint16_t ) = 0; virtual void SetGameType( const char * ) = 0; - virtual bool BGetUserAchievementStatus( CSteamID, const char * ) = 0; + virtual int8_t BGetUserAchievementStatus( CSteamID, const char * ) = 0; #endif /* __cplusplus */ }; @@ -580,9 +580,9 @@ struct u_ISteamUser_SteamUser010 { #ifdef __cplusplus virtual int32_t GetHSteamUser( ) = 0; - virtual bool BLoggedOn( ) = 0; + virtual int8_t BLoggedOn( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, uint32_t, uint16_t, bool ) = 0; + virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, uint32_t, uint16_t, int8_t ) = 0; virtual void TerminateGameConnection( uint32_t, uint16_t ) = 0; virtual void TrackAppUsageEvent( CGameID, int32_t, const char * ) = 0; #endif /* __cplusplus */ @@ -591,13 +591,13 @@ struct u_ISteamUser_SteamUser010 struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION002 { #ifdef __cplusplus - virtual bool BIsSubscribed( ) = 0; - virtual bool BIsLowViolence( ) = 0; - virtual bool BIsCybercafe( ) = 0; - virtual bool BIsVACBanned( ) = 0; + virtual int8_t BIsSubscribed( ) = 0; + virtual int8_t BIsLowViolence( ) = 0; + virtual int8_t BIsCybercafe( ) = 0; + virtual int8_t BIsVACBanned( ) = 0; virtual const char * GetCurrentGameLanguage( ) = 0; virtual const char * GetAvailableGameLanguages( ) = 0; - virtual bool BIsSubscribedApp( uint32_t ) = 0; + virtual int8_t BIsSubscribedApp( uint32_t ) = 0; #endif /* __cplusplus */ }; @@ -606,18 +606,18 @@ struct u_ISteamGameServer_SteamGameServer005 #ifdef __cplusplus virtual void LogOn( ) = 0; virtual void LogOff( ) = 0; - virtual bool BLoggedOn( ) = 0; - virtual bool BSecure( ) = 0; + virtual int8_t BLoggedOn( ) = 0; + virtual int8_t BSecure( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual bool SendUserConnectAndAuthenticate( uint32_t, const void *, uint32_t, CSteamID * ) = 0; + virtual int8_t SendUserConnectAndAuthenticate( uint32_t, const void *, uint32_t, CSteamID * ) = 0; virtual CSteamID CreateUnauthenticatedUserConnection( ) = 0; virtual void SendUserDisconnect( CSteamID ) = 0; - virtual bool BUpdateUserData( CSteamID, const char *, uint32_t ) = 0; - virtual bool BSetServerType( uint32_t, uint32_t, uint16_t, uint16_t, uint16_t, const char *, const char *, bool ) = 0; + virtual int8_t BUpdateUserData( CSteamID, const char *, uint32_t ) = 0; + virtual int8_t BSetServerType( uint32_t, uint32_t, uint16_t, uint16_t, uint16_t, const char *, const char *, int8_t ) = 0; virtual void UpdateServerStatus( int32_t, int32_t, int32_t, const char *, const char *, const char * ) = 0; virtual void UpdateSpectatorPort( uint16_t ) = 0; virtual void SetGameType( const char * ) = 0; - virtual bool BGetUserAchievementStatus( CSteamID, const char * ) = 0; + virtual int8_t BGetUserAchievementStatus( CSteamID, const char * ) = 0; #endif /* __cplusplus */ }; @@ -625,12 +625,12 @@ struct u_ISteamUser_SteamUser011 { #ifdef __cplusplus virtual int32_t GetHSteamUser( ) = 0; - virtual bool BLoggedOn( ) = 0; + virtual int8_t BLoggedOn( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, uint32_t, uint16_t, bool ) = 0; + virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, uint32_t, uint16_t, int8_t ) = 0; virtual void TerminateGameConnection( uint32_t, uint16_t ) = 0; virtual void TrackAppUsageEvent( CGameID, int32_t, const char * ) = 0; - virtual bool GetUserDataFolder( char *, int32_t ) = 0; + virtual int8_t GetUserDataFolder( char *, int32_t ) = 0; virtual void StartVoiceRecording( ) = 0; virtual void StopVoiceRecording( ) = 0; virtual uint32_t GetCompressedVoice( void *, uint32_t, uint32_t * ) = 0; @@ -650,16 +650,16 @@ struct u_ISteamFriends_SteamFriends004 virtual uint32_t GetFriendPersonaState( CSteamID ) = 0; virtual const char * GetFriendPersonaName( CSteamID ) = 0; virtual int32_t GetFriendAvatar( CSteamID, int32_t ) = 0; - virtual bool GetFriendGamePlayed( CSteamID, uint64_t *, uint32_t *, uint16_t *, uint16_t * ) = 0; + virtual int8_t GetFriendGamePlayed( CSteamID, uint64_t *, uint32_t *, uint16_t *, uint16_t * ) = 0; virtual const char * GetFriendPersonaNameHistory( CSteamID, int32_t ) = 0; - virtual bool HasFriend( CSteamID, int32_t ) = 0; + virtual int8_t HasFriend( CSteamID, int32_t ) = 0; virtual int32_t GetClanCount( ) = 0; virtual CSteamID GetClanByIndex( int32_t ) = 0; virtual const char * GetClanName( CSteamID ) = 0; virtual int32_t GetFriendCountFromSource( CSteamID ) = 0; virtual CSteamID GetFriendFromSourceByIndex( CSteamID, int32_t ) = 0; - virtual bool IsUserInSource( CSteamID, CSteamID ) = 0; - virtual void SetInGameVoiceSpeaking( CSteamID, bool ) = 0; + virtual int8_t IsUserInSource( CSteamID, CSteamID ) = 0; + virtual void SetInGameVoiceSpeaking( CSteamID, int8_t ) = 0; virtual void ActivateGameOverlay( const char * ) = 0; #endif /* __cplusplus */ }; @@ -668,33 +668,33 @@ struct u_ISteamMatchmaking_SteamMatchMaking003 { #ifdef __cplusplus virtual int32_t GetFavoriteGameCount( ) = 0; - virtual bool GetFavoriteGame( int32_t, uint32_t *, uint32_t *, uint16_t *, uint16_t *, uint32_t *, uint32_t * ) = 0; + virtual int8_t GetFavoriteGame( int32_t, uint32_t *, uint32_t *, uint16_t *, uint16_t *, uint32_t *, uint32_t * ) = 0; virtual int32_t AddFavoriteGame( uint32_t, uint32_t, uint16_t, uint16_t, uint32_t, uint32_t ) = 0; - virtual bool RemoveFavoriteGame( uint32_t, uint32_t, uint16_t, uint16_t, uint32_t ) = 0; + virtual int8_t RemoveFavoriteGame( uint32_t, uint32_t, uint16_t, uint16_t, uint32_t ) = 0; virtual void RequestLobbyList( ) = 0; virtual void AddRequestLobbyListFilter( const char *, const char * ) = 0; virtual void AddRequestLobbyListNumericalFilter( const char *, int32_t, int32_t ) = 0; virtual void AddRequestLobbyListSlotsAvailableFilter( ) = 0; virtual CSteamID GetLobbyByIndex( int32_t ) = 0; - virtual void CreateLobby( bool ) = 0; + virtual void CreateLobby( int8_t ) = 0; virtual void JoinLobby( CSteamID ) = 0; virtual void LeaveLobby( CSteamID ) = 0; - virtual bool InviteUserToLobby( CSteamID, CSteamID ) = 0; + virtual int8_t InviteUserToLobby( CSteamID, CSteamID ) = 0; virtual int32_t GetNumLobbyMembers( CSteamID ) = 0; virtual CSteamID GetLobbyMemberByIndex( CSteamID, int32_t ) = 0; virtual const char * GetLobbyData( CSteamID, const char * ) = 0; - virtual bool SetLobbyData( CSteamID, const char *, const char * ) = 0; + virtual int8_t SetLobbyData( CSteamID, const char *, const char * ) = 0; virtual const char * GetLobbyMemberData( CSteamID, CSteamID, const char * ) = 0; virtual void SetLobbyMemberData( CSteamID, const char *, const char * ) = 0; - virtual bool SendLobbyChatMsg( CSteamID, const void *, int32_t ) = 0; + virtual int8_t SendLobbyChatMsg( CSteamID, const void *, int32_t ) = 0; virtual int32_t GetLobbyChatEntry( CSteamID, int32_t, CSteamID *, void *, int32_t, uint32_t * ) = 0; - virtual bool RequestLobbyData( CSteamID ) = 0; + virtual int8_t RequestLobbyData( CSteamID ) = 0; virtual void SetLobbyGameServer( CSteamID, uint32_t, uint16_t, CSteamID ) = 0; - virtual bool GetLobbyGameServer( CSteamID, uint32_t *, uint16_t *, CSteamID * ) = 0; - virtual bool SetLobbyMemberLimit( CSteamID, int32_t ) = 0; + virtual int8_t GetLobbyGameServer( CSteamID, uint32_t *, uint16_t *, CSteamID * ) = 0; + virtual int8_t SetLobbyMemberLimit( CSteamID, int32_t ) = 0; virtual int32_t GetLobbyMemberLimit( CSteamID ) = 0; - virtual void SetLobbyVoiceEnabled( CSteamID, bool ) = 0; - virtual bool RequestFriendsLobbies( ) = 0; + virtual void SetLobbyVoiceEnabled( CSteamID, int8_t ) = 0; + virtual int8_t RequestFriendsLobbies( ) = 0; #endif /* __cplusplus */ }; @@ -702,32 +702,32 @@ struct u_ISteamMatchmaking_SteamMatchMaking004 { #ifdef __cplusplus virtual int32_t GetFavoriteGameCount( ) = 0; - virtual bool GetFavoriteGame( int32_t, uint32_t *, uint32_t *, uint16_t *, uint16_t *, uint32_t *, uint32_t * ) = 0; + virtual int8_t GetFavoriteGame( int32_t, uint32_t *, uint32_t *, uint16_t *, uint16_t *, uint32_t *, uint32_t * ) = 0; virtual int32_t AddFavoriteGame( uint32_t, uint32_t, uint16_t, uint16_t, uint32_t, uint32_t ) = 0; - virtual bool RemoveFavoriteGame( uint32_t, uint32_t, uint16_t, uint16_t, uint32_t ) = 0; + virtual int8_t RemoveFavoriteGame( uint32_t, uint32_t, uint16_t, uint16_t, uint32_t ) = 0; virtual void RequestLobbyList( ) = 0; virtual void AddRequestLobbyListFilter( const char *, const char * ) = 0; virtual void AddRequestLobbyListNumericalFilter( const char *, int32_t, int32_t ) = 0; virtual void AddRequestLobbyListSlotsAvailableFilter( ) = 0; virtual CSteamID GetLobbyByIndex( int32_t ) = 0; - virtual void CreateLobby( bool ) = 0; + virtual void CreateLobby( int8_t ) = 0; virtual void JoinLobby( CSteamID ) = 0; virtual void LeaveLobby( CSteamID ) = 0; - virtual bool InviteUserToLobby( CSteamID, CSteamID ) = 0; + virtual int8_t InviteUserToLobby( CSteamID, CSteamID ) = 0; virtual int32_t GetNumLobbyMembers( CSteamID ) = 0; virtual CSteamID GetLobbyMemberByIndex( CSteamID, int32_t ) = 0; virtual const char * GetLobbyData( CSteamID, const char * ) = 0; - virtual bool SetLobbyData( CSteamID, const char *, const char * ) = 0; + virtual int8_t SetLobbyData( CSteamID, const char *, const char * ) = 0; virtual const char * GetLobbyMemberData( CSteamID, CSteamID, const char * ) = 0; virtual void SetLobbyMemberData( CSteamID, const char *, const char * ) = 0; - virtual bool SendLobbyChatMsg( CSteamID, const void *, int32_t ) = 0; + virtual int8_t SendLobbyChatMsg( CSteamID, const void *, int32_t ) = 0; virtual int32_t GetLobbyChatEntry( CSteamID, int32_t, CSteamID *, void *, int32_t, uint32_t * ) = 0; - virtual bool RequestLobbyData( CSteamID ) = 0; + virtual int8_t RequestLobbyData( CSteamID ) = 0; virtual void SetLobbyGameServer( CSteamID, uint32_t, uint16_t, CSteamID ) = 0; - virtual bool GetLobbyGameServer( CSteamID, uint32_t *, uint16_t *, CSteamID * ) = 0; - virtual bool SetLobbyMemberLimit( CSteamID, int32_t ) = 0; + virtual int8_t GetLobbyGameServer( CSteamID, uint32_t *, uint16_t *, CSteamID * ) = 0; + virtual int8_t SetLobbyMemberLimit( CSteamID, int32_t ) = 0; virtual int32_t GetLobbyMemberLimit( CSteamID ) = 0; - virtual bool RequestFriendsLobbies( ) = 0; + virtual int8_t RequestFriendsLobbies( ) = 0; #endif /* __cplusplus */ }; @@ -743,16 +743,16 @@ struct u_ISteamFriends_SteamFriends005 virtual uint32_t GetFriendPersonaState( CSteamID ) = 0; virtual const char * GetFriendPersonaName( CSteamID ) = 0; virtual int32_t GetFriendAvatar( CSteamID, int32_t ) = 0; - virtual bool GetFriendGamePlayed( CSteamID, FriendGameInfo_t * ) = 0; + virtual int8_t GetFriendGamePlayed( CSteamID, FriendGameInfo_t * ) = 0; virtual const char * GetFriendPersonaNameHistory( CSteamID, int32_t ) = 0; - virtual bool HasFriend( CSteamID, int32_t ) = 0; + virtual int8_t HasFriend( CSteamID, int32_t ) = 0; virtual int32_t GetClanCount( ) = 0; virtual CSteamID GetClanByIndex( int32_t ) = 0; virtual const char * GetClanName( CSteamID ) = 0; virtual int32_t GetFriendCountFromSource( CSteamID ) = 0; virtual CSteamID GetFriendFromSourceByIndex( CSteamID, int32_t ) = 0; - virtual bool IsUserInSource( CSteamID, CSteamID ) = 0; - virtual void SetInGameVoiceSpeaking( CSteamID, bool ) = 0; + virtual int8_t IsUserInSource( CSteamID, CSteamID ) = 0; + virtual void SetInGameVoiceSpeaking( CSteamID, int8_t ) = 0; virtual void ActivateGameOverlay( const char * ) = 0; virtual void ActivateGameOverlayToUser( const char *, CSteamID ) = 0; virtual void ActivateGameOverlayToWebPage( const char * ) = 0; @@ -765,9 +765,9 @@ struct u_ISteamMatchmaking_SteamMatchMaking005 { #ifdef __cplusplus virtual int32_t GetFavoriteGameCount( ) = 0; - virtual bool GetFavoriteGame( int32_t, uint32_t *, uint32_t *, uint16_t *, uint16_t *, uint32_t *, uint32_t * ) = 0; + virtual int8_t GetFavoriteGame( int32_t, uint32_t *, uint32_t *, uint16_t *, uint16_t *, uint32_t *, uint32_t * ) = 0; virtual int32_t AddFavoriteGame( uint32_t, uint32_t, uint16_t, uint16_t, uint32_t, uint32_t ) = 0; - virtual bool RemoveFavoriteGame( uint32_t, uint32_t, uint16_t, uint16_t, uint32_t ) = 0; + virtual int8_t RemoveFavoriteGame( uint32_t, uint32_t, uint16_t, uint16_t, uint32_t ) = 0; virtual void RequestLobbyList( ) = 0; virtual void AddRequestLobbyListFilter( const char *, const char * ) = 0; virtual void AddRequestLobbyListNumericalFilter( const char *, int32_t, int32_t ) = 0; @@ -777,22 +777,22 @@ struct u_ISteamMatchmaking_SteamMatchMaking005 virtual void CreateLobby( uint32_t ) = 0; virtual void JoinLobby( CSteamID ) = 0; virtual void LeaveLobby( CSteamID ) = 0; - virtual bool InviteUserToLobby( CSteamID, CSteamID ) = 0; + virtual int8_t InviteUserToLobby( CSteamID, CSteamID ) = 0; virtual int32_t GetNumLobbyMembers( CSteamID ) = 0; virtual CSteamID GetLobbyMemberByIndex( CSteamID, int32_t ) = 0; virtual const char * GetLobbyData( CSteamID, const char * ) = 0; - virtual bool SetLobbyData( CSteamID, const char *, const char * ) = 0; + virtual int8_t SetLobbyData( CSteamID, const char *, const char * ) = 0; virtual const char * GetLobbyMemberData( CSteamID, CSteamID, const char * ) = 0; virtual void SetLobbyMemberData( CSteamID, const char *, const char * ) = 0; - virtual bool SendLobbyChatMsg( CSteamID, const void *, int32_t ) = 0; + virtual int8_t SendLobbyChatMsg( CSteamID, const void *, int32_t ) = 0; virtual int32_t GetLobbyChatEntry( CSteamID, int32_t, CSteamID *, void *, int32_t, uint32_t * ) = 0; - virtual bool RequestLobbyData( CSteamID ) = 0; + virtual int8_t RequestLobbyData( CSteamID ) = 0; virtual void SetLobbyGameServer( CSteamID, uint32_t, uint16_t, CSteamID ) = 0; - virtual bool GetLobbyGameServer( CSteamID, uint32_t *, uint16_t *, CSteamID * ) = 0; - virtual bool SetLobbyMemberLimit( CSteamID, int32_t ) = 0; + virtual int8_t GetLobbyGameServer( CSteamID, uint32_t *, uint16_t *, CSteamID * ) = 0; + virtual int8_t SetLobbyMemberLimit( CSteamID, int32_t ) = 0; virtual int32_t GetLobbyMemberLimit( CSteamID ) = 0; - virtual bool RequestFriendsLobbies( ) = 0; - virtual bool SetLobbyType( CSteamID, uint32_t ) = 0; + virtual int8_t RequestFriendsLobbies( ) = 0; + virtual int8_t SetLobbyType( CSteamID, uint32_t ) = 0; virtual CSteamID GetLobbyOwner( CSteamID ) = 0; virtual float GetLobbyDistance( CSteamID ) = 0; #endif /* __cplusplus */ @@ -801,41 +801,41 @@ struct u_ISteamMatchmaking_SteamMatchMaking005 struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 { #ifdef __cplusplus - virtual bool RequestCurrentStats( ) = 0; - virtual bool GetStat( const char *, int32_t * ) = 0; - virtual bool GetStat( const char *, float * ) = 0; - virtual bool SetStat( const char *, int32_t ) = 0; - virtual bool SetStat( const char *, float ) = 0; - virtual bool UpdateAvgRateStat( const char *, float, double ) = 0; - virtual bool GetAchievement( const char *, bool * ) = 0; - virtual bool SetAchievement( const char * ) = 0; - virtual bool ClearAchievement( const char * ) = 0; - virtual bool StoreStats( ) = 0; + virtual int8_t RequestCurrentStats( ) = 0; + virtual int8_t GetStat( const char *, int32_t * ) = 0; + virtual int8_t GetStat( const char *, float * ) = 0; + virtual int8_t SetStat( const char *, int32_t ) = 0; + virtual int8_t SetStat( const char *, float ) = 0; + virtual int8_t UpdateAvgRateStat( const char *, float, double ) = 0; + virtual int8_t GetAchievement( const char *, int8_t * ) = 0; + virtual int8_t SetAchievement( const char * ) = 0; + virtual int8_t ClearAchievement( const char * ) = 0; + virtual int8_t StoreStats( ) = 0; virtual int32_t GetAchievementIcon( const char * ) = 0; virtual const char * GetAchievementDisplayAttribute( const char *, const char * ) = 0; - virtual bool IndicateAchievementProgress( const char *, uint32_t, uint32_t ) = 0; + virtual int8_t IndicateAchievementProgress( const char *, uint32_t, uint32_t ) = 0; virtual uint64_t RequestUserStats( CSteamID ) = 0; - virtual bool GetUserStat( CSteamID, const char *, int32_t * ) = 0; - virtual bool GetUserStat( CSteamID, const char *, float * ) = 0; - virtual bool GetUserAchievement( CSteamID, const char *, bool * ) = 0; + virtual int8_t GetUserStat( CSteamID, const char *, int32_t * ) = 0; + virtual int8_t GetUserStat( CSteamID, const char *, float * ) = 0; + virtual int8_t GetUserAchievement( CSteamID, const char *, int8_t * ) = 0; #endif /* __cplusplus */ }; struct u_ISteamNetworking_SteamNetworking002 { #ifdef __cplusplus - virtual uint32_t CreateListenSocket( int32_t, uint32_t, uint16_t, bool ) = 0; - virtual uint32_t CreateP2PConnectionSocket( CSteamID, int32_t, int32_t, bool ) = 0; + virtual uint32_t CreateListenSocket( int32_t, uint32_t, uint16_t, int8_t ) = 0; + virtual uint32_t CreateP2PConnectionSocket( CSteamID, int32_t, int32_t, int8_t ) = 0; virtual uint32_t CreateConnectionSocket( uint32_t, uint16_t, int32_t ) = 0; - virtual bool DestroySocket( uint32_t, bool ) = 0; - virtual bool DestroyListenSocket( uint32_t, bool ) = 0; - virtual bool SendDataOnSocket( uint32_t, void *, uint32_t, bool ) = 0; - virtual bool IsDataAvailableOnSocket( uint32_t, uint32_t * ) = 0; - virtual bool RetrieveDataFromSocket( uint32_t, void *, uint32_t, uint32_t * ) = 0; - virtual bool IsDataAvailable( uint32_t, uint32_t *, uint32_t * ) = 0; - virtual bool RetrieveData( uint32_t, void *, uint32_t, uint32_t *, uint32_t * ) = 0; - virtual bool GetSocketInfo( uint32_t, CSteamID *, int32_t *, uint32_t *, uint16_t * ) = 0; - virtual bool GetListenSocketInfo( uint32_t, uint32_t *, uint16_t * ) = 0; + virtual int8_t DestroySocket( uint32_t, int8_t ) = 0; + virtual int8_t DestroyListenSocket( uint32_t, int8_t ) = 0; + virtual int8_t SendDataOnSocket( uint32_t, void *, uint32_t, int8_t ) = 0; + virtual int8_t IsDataAvailableOnSocket( uint32_t, uint32_t * ) = 0; + virtual int8_t RetrieveDataFromSocket( uint32_t, void *, uint32_t, uint32_t * ) = 0; + virtual int8_t IsDataAvailable( uint32_t, uint32_t *, uint32_t * ) = 0; + virtual int8_t RetrieveData( uint32_t, void *, uint32_t, uint32_t *, uint32_t * ) = 0; + virtual int8_t GetSocketInfo( uint32_t, CSteamID *, int32_t *, uint32_t *, uint16_t * ) = 0; + virtual int8_t GetListenSocketInfo( uint32_t, uint32_t *, uint16_t * ) = 0; virtual uint32_t GetSocketConnectionType( uint32_t ) = 0; virtual int32_t GetMaxPacketSize( uint32_t ) = 0; #endif /* __cplusplus */ @@ -844,14 +844,14 @@ struct u_ISteamNetworking_SteamNetworking002 struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 { #ifdef __cplusplus - virtual bool FileWrite( const char *, const void *, int32_t ) = 0; + virtual int8_t FileWrite( const char *, const void *, int32_t ) = 0; virtual int32_t GetFileSize( const char * ) = 0; virtual int32_t FileRead( const char *, void *, int32_t ) = 0; - virtual bool FileExists( const char * ) = 0; - virtual bool FileDelete( const char * ) = 0; + virtual int8_t FileExists( const char * ) = 0; + virtual int8_t FileDelete( const char * ) = 0; virtual int32_t GetFileCount( ) = 0; virtual const char * GetFileNameAndSize( int32_t, int32_t * ) = 0; - virtual bool GetQuota( int32_t *, int32_t * ) = 0; + virtual int8_t GetQuota( int32_t *, int32_t * ) = 0; #endif /* __cplusplus */ }; @@ -860,20 +860,20 @@ struct u_ISteamGameServer_SteamGameServer008 #ifdef __cplusplus virtual void LogOn( ) = 0; virtual void LogOff( ) = 0; - virtual bool BLoggedOn( ) = 0; - virtual bool BSecure( ) = 0; + virtual int8_t BLoggedOn( ) = 0; + virtual int8_t BSecure( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual bool SendUserConnectAndAuthenticate( uint32_t, const void *, uint32_t, CSteamID * ) = 0; + virtual int8_t SendUserConnectAndAuthenticate( uint32_t, const void *, uint32_t, CSteamID * ) = 0; virtual CSteamID CreateUnauthenticatedUserConnection( ) = 0; virtual void SendUserDisconnect( CSteamID ) = 0; - virtual bool BUpdateUserData( CSteamID, const char *, uint32_t ) = 0; - virtual bool BSetServerType( uint32_t, uint32_t, uint16_t, uint16_t, uint16_t, const char *, const char *, bool ) = 0; + virtual int8_t BUpdateUserData( CSteamID, const char *, uint32_t ) = 0; + virtual int8_t BSetServerType( uint32_t, uint32_t, uint16_t, uint16_t, uint16_t, const char *, const char *, int8_t ) = 0; virtual void UpdateServerStatus( int32_t, int32_t, int32_t, const char *, const char *, const char * ) = 0; virtual void UpdateSpectatorPort( uint16_t ) = 0; virtual void SetGameType( const char * ) = 0; - virtual bool BGetUserAchievementStatus( CSteamID, const char * ) = 0; + virtual int8_t BGetUserAchievementStatus( CSteamID, const char * ) = 0; virtual void GetGameplayStats( ) = 0; - virtual bool RequestUserGroupStatus( CSteamID, CSteamID ) = 0; + virtual int8_t RequestUserGroupStatus( CSteamID, CSteamID ) = 0; virtual uint32_t GetPublicIP( ) = 0; #endif /* __cplusplus */ }; @@ -882,9 +882,9 @@ struct u_ISteamMatchmaking_SteamMatchMaking006 { #ifdef __cplusplus virtual int32_t GetFavoriteGameCount( ) = 0; - virtual bool GetFavoriteGame( int32_t, uint32_t *, uint32_t *, uint16_t *, uint16_t *, uint32_t *, uint32_t * ) = 0; + virtual int8_t GetFavoriteGame( int32_t, uint32_t *, uint32_t *, uint16_t *, uint16_t *, uint32_t *, uint32_t * ) = 0; virtual int32_t AddFavoriteGame( uint32_t, uint32_t, uint16_t, uint16_t, uint32_t, uint32_t ) = 0; - virtual bool RemoveFavoriteGame( uint32_t, uint32_t, uint16_t, uint16_t, uint32_t ) = 0; + virtual int8_t RemoveFavoriteGame( uint32_t, uint32_t, uint16_t, uint16_t, uint32_t ) = 0; virtual uint64_t RequestLobbyList( ) = 0; virtual void AddRequestLobbyListFilter( const char *, const char * ) = 0; virtual void AddRequestLobbyListNumericalFilter( const char *, int32_t, int32_t ) = 0; @@ -893,21 +893,21 @@ struct u_ISteamMatchmaking_SteamMatchMaking006 virtual uint64_t CreateLobby( uint32_t ) = 0; virtual uint64_t JoinLobby( CSteamID ) = 0; virtual void LeaveLobby( CSteamID ) = 0; - virtual bool InviteUserToLobby( CSteamID, CSteamID ) = 0; + virtual int8_t InviteUserToLobby( CSteamID, CSteamID ) = 0; virtual int32_t GetNumLobbyMembers( CSteamID ) = 0; virtual CSteamID GetLobbyMemberByIndex( CSteamID, int32_t ) = 0; virtual const char * GetLobbyData( CSteamID, const char * ) = 0; - virtual bool SetLobbyData( CSteamID, const char *, const char * ) = 0; + virtual int8_t SetLobbyData( CSteamID, const char *, const char * ) = 0; virtual const char * GetLobbyMemberData( CSteamID, CSteamID, const char * ) = 0; virtual void SetLobbyMemberData( CSteamID, const char *, const char * ) = 0; - virtual bool SendLobbyChatMsg( CSteamID, const void *, int32_t ) = 0; + virtual int8_t SendLobbyChatMsg( CSteamID, const void *, int32_t ) = 0; virtual int32_t GetLobbyChatEntry( CSteamID, int32_t, CSteamID *, void *, int32_t, uint32_t * ) = 0; - virtual bool RequestLobbyData( CSteamID ) = 0; + virtual int8_t RequestLobbyData( CSteamID ) = 0; virtual void SetLobbyGameServer( CSteamID, uint32_t, uint16_t, CSteamID ) = 0; - virtual bool GetLobbyGameServer( CSteamID, uint32_t *, uint16_t *, CSteamID * ) = 0; - virtual bool SetLobbyMemberLimit( CSteamID, int32_t ) = 0; + virtual int8_t GetLobbyGameServer( CSteamID, uint32_t *, uint16_t *, CSteamID * ) = 0; + virtual int8_t SetLobbyMemberLimit( CSteamID, int32_t ) = 0; virtual int32_t GetLobbyMemberLimit( CSteamID ) = 0; - virtual bool SetLobbyType( CSteamID, uint32_t ) = 0; + virtual int8_t SetLobbyType( CSteamID, uint32_t ) = 0; virtual CSteamID GetLobbyOwner( CSteamID ) = 0; #endif /* __cplusplus */ }; @@ -915,13 +915,13 @@ struct u_ISteamMatchmaking_SteamMatchMaking006 struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 { #ifdef __cplusplus - virtual bool FileWrite( const char *, const void *, int32_t ) = 0; + virtual int8_t FileWrite( const char *, const void *, int32_t ) = 0; virtual int32_t GetFileSize( const char * ) = 0; virtual int32_t FileRead( const char *, void *, int32_t ) = 0; - virtual bool FileExists( const char * ) = 0; + virtual int8_t FileExists( const char * ) = 0; virtual int32_t GetFileCount( ) = 0; virtual const char * GetFileNameAndSize( int32_t, int32_t * ) = 0; - virtual bool GetQuota( int32_t *, int32_t * ) = 0; + virtual int8_t GetQuota( int32_t *, int32_t * ) = 0; #endif /* __cplusplus */ }; @@ -929,7 +929,7 @@ struct u_ISteamClient_SteamClient008 { #ifdef __cplusplus virtual int32_t CreateSteamPipe( ) = 0; - virtual bool BReleaseSteamPipe( int32_t ) = 0; + virtual int8_t BReleaseSteamPipe( int32_t ) = 0; virtual int32_t ConnectToGlobalUser( int32_t ) = 0; virtual int32_t CreateLocalUser( int32_t *, uint32_t ) = 0; virtual void ReleaseUser( int32_t, int32_t ) = 0; @@ -956,12 +956,12 @@ struct u_ISteamUser_SteamUser012 { #ifdef __cplusplus virtual int32_t GetHSteamUser( ) = 0; - virtual bool BLoggedOn( ) = 0; + virtual int8_t BLoggedOn( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, uint32_t, uint16_t, bool ) = 0; + virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, uint32_t, uint16_t, int8_t ) = 0; virtual void TerminateGameConnection( uint32_t, uint16_t ) = 0; virtual void TrackAppUsageEvent( CGameID, int32_t, const char * ) = 0; - virtual bool GetUserDataFolder( char *, int32_t ) = 0; + virtual int8_t GetUserDataFolder( char *, int32_t ) = 0; virtual void StartVoiceRecording( ) = 0; virtual void StopVoiceRecording( ) = 0; virtual uint32_t GetCompressedVoice( void *, uint32_t, uint32_t * ) = 0; @@ -982,43 +982,43 @@ struct u_ISteamUtils_SteamUtils004 virtual uint32_t GetConnectedUniverse( ) = 0; virtual uint32_t GetServerRealTime( ) = 0; virtual const char * GetIPCountry( ) = 0; - virtual bool GetImageSize( int32_t, uint32_t *, uint32_t * ) = 0; - virtual bool GetImageRGBA( int32_t, uint8_t *, int32_t ) = 0; - virtual bool GetCSERIPPort( uint32_t *, uint16_t * ) = 0; + virtual int8_t GetImageSize( int32_t, uint32_t *, uint32_t * ) = 0; + virtual int8_t GetImageRGBA( int32_t, uint8_t *, int32_t ) = 0; + virtual int8_t GetCSERIPPort( uint32_t *, uint16_t * ) = 0; virtual uint8_t GetCurrentBatteryPower( ) = 0; virtual uint32_t GetAppID( ) = 0; virtual void SetOverlayNotificationPosition( uint32_t ) = 0; - virtual bool IsAPICallCompleted( uint64_t, bool * ) = 0; + virtual int8_t IsAPICallCompleted( uint64_t, int8_t * ) = 0; virtual uint32_t GetAPICallFailureReason( uint64_t ) = 0; - virtual bool GetAPICallResult( uint64_t, void *, int32_t, int32_t, bool * ) = 0; + virtual int8_t GetAPICallResult( uint64_t, void *, int32_t, int32_t, int8_t * ) = 0; virtual void RunFrame( ) = 0; virtual uint32_t GetIPCCallCount( ) = 0; virtual void SetWarningMessageHook( void (*U_CDECL )(int32_t, const char *) ) = 0; - virtual bool IsOverlayEnabled( ) = 0; + virtual int8_t IsOverlayEnabled( ) = 0; #endif /* __cplusplus */ }; struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 { #ifdef __cplusplus - virtual bool RequestCurrentStats( ) = 0; - virtual bool GetStat( const char *, int32_t * ) = 0; - virtual bool GetStat( const char *, float * ) = 0; - virtual bool SetStat( const char *, int32_t ) = 0; - virtual bool SetStat( const char *, float ) = 0; - virtual bool UpdateAvgRateStat( const char *, float, double ) = 0; - virtual bool GetAchievement( const char *, bool * ) = 0; - virtual bool SetAchievement( const char * ) = 0; - virtual bool ClearAchievement( const char * ) = 0; - virtual bool StoreStats( ) = 0; + virtual int8_t RequestCurrentStats( ) = 0; + virtual int8_t GetStat( const char *, int32_t * ) = 0; + virtual int8_t GetStat( const char *, float * ) = 0; + virtual int8_t SetStat( const char *, int32_t ) = 0; + virtual int8_t SetStat( const char *, float ) = 0; + virtual int8_t UpdateAvgRateStat( const char *, float, double ) = 0; + virtual int8_t GetAchievement( const char *, int8_t * ) = 0; + virtual int8_t SetAchievement( const char * ) = 0; + virtual int8_t ClearAchievement( const char * ) = 0; + virtual int8_t StoreStats( ) = 0; virtual int32_t GetAchievementIcon( const char * ) = 0; virtual const char * GetAchievementDisplayAttribute( const char *, const char * ) = 0; - virtual bool IndicateAchievementProgress( const char *, uint32_t, uint32_t ) = 0; + virtual int8_t IndicateAchievementProgress( const char *, uint32_t, uint32_t ) = 0; virtual uint64_t RequestUserStats( CSteamID ) = 0; - virtual bool GetUserStat( CSteamID, const char *, int32_t * ) = 0; - virtual bool GetUserStat( CSteamID, const char *, float * ) = 0; - virtual bool GetUserAchievement( CSteamID, const char *, bool * ) = 0; - virtual bool ResetAllStats( bool ) = 0; + virtual int8_t GetUserStat( CSteamID, const char *, int32_t * ) = 0; + virtual int8_t GetUserStat( CSteamID, const char *, float * ) = 0; + virtual int8_t GetUserAchievement( CSteamID, const char *, int8_t * ) = 0; + virtual int8_t ResetAllStats( int8_t ) = 0; virtual uint64_t FindOrCreateLeaderboard( const char *, uint32_t, uint32_t ) = 0; virtual uint64_t FindLeaderboard( const char * ) = 0; virtual const char * GetLeaderboardName( uint64_t ) = 0; @@ -1026,7 +1026,7 @@ struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 virtual uint32_t GetLeaderboardSortMethod( uint64_t ) = 0; virtual uint32_t GetLeaderboardDisplayType( uint64_t ) = 0; virtual uint64_t DownloadLeaderboardEntries( uint64_t, uint32_t, int32_t, int32_t ) = 0; - virtual bool GetDownloadedLeaderboardEntry( uint64_t, int32_t, u_LeaderboardEntry_t_104 *, int32_t *, int32_t ) = 0; + virtual int8_t GetDownloadedLeaderboardEntry( uint64_t, int32_t, u_LeaderboardEntry_t_104 *, int32_t *, int32_t ) = 0; virtual uint64_t UploadLeaderboardScore( uint64_t, int32_t, int32_t *, int32_t ) = 0; #endif /* __cplusplus */ }; @@ -1034,14 +1034,14 @@ struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 { #ifdef __cplusplus - virtual bool BIsSubscribed( ) = 0; - virtual bool BIsLowViolence( ) = 0; - virtual bool BIsCybercafe( ) = 0; - virtual bool BIsVACBanned( ) = 0; + virtual int8_t BIsSubscribed( ) = 0; + virtual int8_t BIsLowViolence( ) = 0; + virtual int8_t BIsCybercafe( ) = 0; + virtual int8_t BIsVACBanned( ) = 0; virtual const char * GetCurrentGameLanguage( ) = 0; virtual const char * GetAvailableGameLanguages( ) = 0; - virtual bool BIsSubscribedApp( uint32_t ) = 0; - virtual bool BIsDlcInstalled( uint32_t ) = 0; + virtual int8_t BIsSubscribedApp( uint32_t ) = 0; + virtual int8_t BIsDlcInstalled( uint32_t ) = 0; #endif /* __cplusplus */ }; @@ -1049,9 +1049,9 @@ struct u_ISteamMatchmaking_SteamMatchMaking007 { #ifdef __cplusplus virtual int32_t GetFavoriteGameCount( ) = 0; - virtual bool GetFavoriteGame( int32_t, uint32_t *, uint32_t *, uint16_t *, uint16_t *, uint32_t *, uint32_t * ) = 0; + virtual int8_t GetFavoriteGame( int32_t, uint32_t *, uint32_t *, uint16_t *, uint16_t *, uint32_t *, uint32_t * ) = 0; virtual int32_t AddFavoriteGame( uint32_t, uint32_t, uint16_t, uint16_t, uint32_t, uint32_t ) = 0; - virtual bool RemoveFavoriteGame( uint32_t, uint32_t, uint16_t, uint16_t, uint32_t ) = 0; + virtual int8_t RemoveFavoriteGame( uint32_t, uint32_t, uint16_t, uint16_t, uint32_t ) = 0; virtual uint64_t RequestLobbyList( ) = 0; virtual void AddRequestLobbyListStringFilter( const char *, const char *, uint32_t ) = 0; virtual void AddRequestLobbyListNumericalFilter( const char *, int32_t, uint32_t ) = 0; @@ -1061,51 +1061,51 @@ struct u_ISteamMatchmaking_SteamMatchMaking007 virtual uint64_t CreateLobby( uint32_t, int32_t ) = 0; virtual uint64_t JoinLobby( CSteamID ) = 0; virtual void LeaveLobby( CSteamID ) = 0; - virtual bool InviteUserToLobby( CSteamID, CSteamID ) = 0; + virtual int8_t InviteUserToLobby( CSteamID, CSteamID ) = 0; virtual int32_t GetNumLobbyMembers( CSteamID ) = 0; virtual CSteamID GetLobbyMemberByIndex( CSteamID, int32_t ) = 0; virtual const char * GetLobbyData( CSteamID, const char * ) = 0; - virtual bool SetLobbyData( CSteamID, const char *, const char * ) = 0; + virtual int8_t SetLobbyData( CSteamID, const char *, const char * ) = 0; virtual int32_t GetLobbyDataCount( CSteamID ) = 0; - virtual bool GetLobbyDataByIndex( CSteamID, int32_t, char *, int32_t, char *, int32_t ) = 0; - virtual bool DeleteLobbyData( CSteamID, const char * ) = 0; + virtual int8_t GetLobbyDataByIndex( CSteamID, int32_t, char *, int32_t, char *, int32_t ) = 0; + virtual int8_t DeleteLobbyData( CSteamID, const char * ) = 0; virtual const char * GetLobbyMemberData( CSteamID, CSteamID, const char * ) = 0; virtual void SetLobbyMemberData( CSteamID, const char *, const char * ) = 0; - virtual bool SendLobbyChatMsg( CSteamID, const void *, int32_t ) = 0; + virtual int8_t SendLobbyChatMsg( CSteamID, const void *, int32_t ) = 0; virtual int32_t GetLobbyChatEntry( CSteamID, int32_t, CSteamID *, void *, int32_t, uint32_t * ) = 0; - virtual bool RequestLobbyData( CSteamID ) = 0; + virtual int8_t RequestLobbyData( CSteamID ) = 0; virtual void SetLobbyGameServer( CSteamID, uint32_t, uint16_t, CSteamID ) = 0; - virtual bool GetLobbyGameServer( CSteamID, uint32_t *, uint16_t *, CSteamID * ) = 0; - virtual bool SetLobbyMemberLimit( CSteamID, int32_t ) = 0; + virtual int8_t GetLobbyGameServer( CSteamID, uint32_t *, uint16_t *, CSteamID * ) = 0; + virtual int8_t SetLobbyMemberLimit( CSteamID, int32_t ) = 0; virtual int32_t GetLobbyMemberLimit( CSteamID ) = 0; - virtual bool SetLobbyType( CSteamID, uint32_t ) = 0; - virtual bool SetLobbyJoinable( CSteamID, bool ) = 0; + virtual int8_t SetLobbyType( CSteamID, uint32_t ) = 0; + virtual int8_t SetLobbyJoinable( CSteamID, int8_t ) = 0; virtual CSteamID GetLobbyOwner( CSteamID ) = 0; - virtual bool SetLobbyOwner( CSteamID, CSteamID ) = 0; + virtual int8_t SetLobbyOwner( CSteamID, CSteamID ) = 0; #endif /* __cplusplus */ }; struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 { #ifdef __cplusplus - virtual bool RequestCurrentStats( ) = 0; - virtual bool GetStat( const char *, int32_t * ) = 0; - virtual bool GetStat( const char *, float * ) = 0; - virtual bool SetStat( const char *, int32_t ) = 0; - virtual bool SetStat( const char *, float ) = 0; - virtual bool UpdateAvgRateStat( const char *, float, double ) = 0; - virtual bool GetAchievement( const char *, bool * ) = 0; - virtual bool SetAchievement( const char * ) = 0; - virtual bool ClearAchievement( const char * ) = 0; - virtual bool StoreStats( ) = 0; + virtual int8_t RequestCurrentStats( ) = 0; + virtual int8_t GetStat( const char *, int32_t * ) = 0; + virtual int8_t GetStat( const char *, float * ) = 0; + virtual int8_t SetStat( const char *, int32_t ) = 0; + virtual int8_t SetStat( const char *, float ) = 0; + virtual int8_t UpdateAvgRateStat( const char *, float, double ) = 0; + virtual int8_t GetAchievement( const char *, int8_t * ) = 0; + virtual int8_t SetAchievement( const char * ) = 0; + virtual int8_t ClearAchievement( const char * ) = 0; + virtual int8_t StoreStats( ) = 0; virtual int32_t GetAchievementIcon( const char * ) = 0; virtual const char * GetAchievementDisplayAttribute( const char *, const char * ) = 0; - virtual bool IndicateAchievementProgress( const char *, uint32_t, uint32_t ) = 0; + virtual int8_t IndicateAchievementProgress( const char *, uint32_t, uint32_t ) = 0; virtual uint64_t RequestUserStats( CSteamID ) = 0; - virtual bool GetUserStat( CSteamID, const char *, int32_t * ) = 0; - virtual bool GetUserStat( CSteamID, const char *, float * ) = 0; - virtual bool GetUserAchievement( CSteamID, const char *, bool * ) = 0; - virtual bool ResetAllStats( bool ) = 0; + virtual int8_t GetUserStat( CSteamID, const char *, int32_t * ) = 0; + virtual int8_t GetUserStat( CSteamID, const char *, float * ) = 0; + virtual int8_t GetUserAchievement( CSteamID, const char *, int8_t * ) = 0; + virtual int8_t ResetAllStats( int8_t ) = 0; virtual uint64_t FindOrCreateLeaderboard( const char *, uint32_t, uint32_t ) = 0; virtual uint64_t FindLeaderboard( const char * ) = 0; virtual const char * GetLeaderboardName( uint64_t ) = 0; @@ -1113,7 +1113,7 @@ struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 virtual uint32_t GetLeaderboardSortMethod( uint64_t ) = 0; virtual uint32_t GetLeaderboardDisplayType( uint64_t ) = 0; virtual uint64_t DownloadLeaderboardEntries( uint64_t, uint32_t, int32_t, int32_t ) = 0; - virtual bool GetDownloadedLeaderboardEntry( uint64_t, int32_t, u_LeaderboardEntry_t_104 *, int32_t *, int32_t ) = 0; + virtual int8_t GetDownloadedLeaderboardEntry( uint64_t, int32_t, u_LeaderboardEntry_t_104 *, int32_t *, int32_t ) = 0; virtual uint64_t UploadLeaderboardScore( uint64_t, uint32_t, int32_t, const int32_t *, int32_t ) = 0; virtual uint64_t GetNumberOfCurrentPlayers( ) = 0; #endif /* __cplusplus */ @@ -1122,24 +1122,24 @@ struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 struct u_ISteamNetworking_SteamNetworking003 { #ifdef __cplusplus - virtual bool SendP2PPacket( CSteamID, const void *, uint32_t, uint32_t ) = 0; - virtual bool IsP2PPacketAvailable( uint32_t * ) = 0; - virtual bool ReadP2PPacket( void *, uint32_t, uint32_t *, CSteamID * ) = 0; - virtual bool AcceptP2PSessionWithUser( CSteamID ) = 0; - virtual bool CloseP2PSessionWithUser( CSteamID ) = 0; - virtual bool GetP2PSessionState( CSteamID, P2PSessionState_t * ) = 0; - virtual uint32_t CreateListenSocket( int32_t, uint32_t, uint16_t, bool ) = 0; - virtual uint32_t CreateP2PConnectionSocket( CSteamID, int32_t, int32_t, bool ) = 0; + virtual int8_t SendP2PPacket( CSteamID, const void *, uint32_t, uint32_t ) = 0; + virtual int8_t IsP2PPacketAvailable( uint32_t * ) = 0; + virtual int8_t ReadP2PPacket( void *, uint32_t, uint32_t *, CSteamID * ) = 0; + virtual int8_t AcceptP2PSessionWithUser( CSteamID ) = 0; + virtual int8_t CloseP2PSessionWithUser( CSteamID ) = 0; + virtual int8_t GetP2PSessionState( CSteamID, P2PSessionState_t * ) = 0; + virtual uint32_t CreateListenSocket( int32_t, uint32_t, uint16_t, int8_t ) = 0; + virtual uint32_t CreateP2PConnectionSocket( CSteamID, int32_t, int32_t, int8_t ) = 0; virtual uint32_t CreateConnectionSocket( uint32_t, uint16_t, int32_t ) = 0; - virtual bool DestroySocket( uint32_t, bool ) = 0; - virtual bool DestroyListenSocket( uint32_t, bool ) = 0; - virtual bool SendDataOnSocket( uint32_t, void *, uint32_t, bool ) = 0; - virtual bool IsDataAvailableOnSocket( uint32_t, uint32_t * ) = 0; - virtual bool RetrieveDataFromSocket( uint32_t, void *, uint32_t, uint32_t * ) = 0; - virtual bool IsDataAvailable( uint32_t, uint32_t *, uint32_t * ) = 0; - virtual bool RetrieveData( uint32_t, void *, uint32_t, uint32_t *, uint32_t * ) = 0; - virtual bool GetSocketInfo( uint32_t, CSteamID *, int32_t *, uint32_t *, uint16_t * ) = 0; - virtual bool GetListenSocketInfo( uint32_t, uint32_t *, uint16_t * ) = 0; + virtual int8_t DestroySocket( uint32_t, int8_t ) = 0; + virtual int8_t DestroyListenSocket( uint32_t, int8_t ) = 0; + virtual int8_t SendDataOnSocket( uint32_t, void *, uint32_t, int8_t ) = 0; + virtual int8_t IsDataAvailableOnSocket( uint32_t, uint32_t * ) = 0; + virtual int8_t RetrieveDataFromSocket( uint32_t, void *, uint32_t, uint32_t * ) = 0; + virtual int8_t IsDataAvailable( uint32_t, uint32_t *, uint32_t * ) = 0; + virtual int8_t RetrieveData( uint32_t, void *, uint32_t, uint32_t *, uint32_t * ) = 0; + virtual int8_t GetSocketInfo( uint32_t, CSteamID *, int32_t *, uint32_t *, uint16_t * ) = 0; + virtual int8_t GetListenSocketInfo( uint32_t, uint32_t *, uint16_t * ) = 0; virtual uint32_t GetSocketConnectionType( uint32_t ) = 0; virtual int32_t GetMaxPacketSize( uint32_t ) = 0; #endif /* __cplusplus */ @@ -1150,20 +1150,20 @@ struct u_ISteamGameServer_SteamGameServer009 #ifdef __cplusplus virtual void LogOn( ) = 0; virtual void LogOff( ) = 0; - virtual bool BLoggedOn( ) = 0; - virtual bool BSecure( ) = 0; + virtual int8_t BLoggedOn( ) = 0; + virtual int8_t BSecure( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual bool SendUserConnectAndAuthenticate( uint32_t, const void *, uint32_t, CSteamID * ) = 0; + virtual int8_t SendUserConnectAndAuthenticate( uint32_t, const void *, uint32_t, CSteamID * ) = 0; virtual CSteamID CreateUnauthenticatedUserConnection( ) = 0; virtual void SendUserDisconnect( CSteamID ) = 0; - virtual bool BUpdateUserData( CSteamID, const char *, uint32_t ) = 0; - virtual bool BSetServerType( uint32_t, uint32_t, uint16_t, uint16_t, uint16_t, const char *, const char *, bool ) = 0; + virtual int8_t BUpdateUserData( CSteamID, const char *, uint32_t ) = 0; + virtual int8_t BSetServerType( uint32_t, uint32_t, uint16_t, uint16_t, uint16_t, const char *, const char *, int8_t ) = 0; virtual void UpdateServerStatus( int32_t, int32_t, int32_t, const char *, const char *, const char * ) = 0; virtual void UpdateSpectatorPort( uint16_t ) = 0; virtual void SetGameType( const char * ) = 0; - virtual bool BGetUserAchievementStatus( CSteamID, const char * ) = 0; + virtual int8_t BGetUserAchievementStatus( CSteamID, const char * ) = 0; virtual void GetGameplayStats( ) = 0; - virtual bool RequestUserGroupStatus( CSteamID, CSteamID ) = 0; + virtual int8_t RequestUserGroupStatus( CSteamID, CSteamID ) = 0; virtual uint32_t GetPublicIP( ) = 0; virtual void SetGameData( const char * ) = 0; virtual uint32_t UserHasLicenseForApp( CSteamID, uint32_t ) = 0; @@ -1174,16 +1174,16 @@ struct u_ISteamUser_SteamUser013 { #ifdef __cplusplus virtual int32_t GetHSteamUser( ) = 0; - virtual bool BLoggedOn( ) = 0; + virtual int8_t BLoggedOn( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, uint32_t, uint16_t, bool ) = 0; + virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, uint32_t, uint16_t, int8_t ) = 0; virtual void TerminateGameConnection( uint32_t, uint16_t ) = 0; virtual void TrackAppUsageEvent( CGameID, int32_t, const char * ) = 0; - virtual bool GetUserDataFolder( char *, int32_t ) = 0; + virtual int8_t GetUserDataFolder( char *, int32_t ) = 0; virtual void StartVoiceRecording( ) = 0; virtual void StopVoiceRecording( ) = 0; virtual uint32_t GetAvailableVoice( uint32_t *, uint32_t * ) = 0; - virtual uint32_t GetVoice( bool, void *, uint32_t, uint32_t *, bool, void *, uint32_t, uint32_t * ) = 0; + virtual uint32_t GetVoice( int8_t, void *, uint32_t, uint32_t *, int8_t, void *, uint32_t, uint32_t * ) = 0; virtual uint32_t DecompressVoice( const void *, uint32_t, void *, uint32_t, uint32_t * ) = 0; virtual uint32_t GetAuthSessionTicket( void *, int32_t, uint32_t * ) = 0; virtual uint32_t BeginAuthSession( const void *, int32_t, CSteamID ) = 0; @@ -1206,7 +1206,7 @@ struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 virtual gameserveritem_t_105 * GetServerDetails( void *, int32_t ) = 0; virtual void CancelQuery( void * ) = 0; virtual void RefreshQuery( void * ) = 0; - virtual bool IsRefreshing( void * ) = 0; + virtual int8_t IsRefreshing( void * ) = 0; virtual int32_t GetServerCount( void * ) = 0; virtual void RefreshServer( void *, int32_t ) = 0; virtual int32_t PingServer( uint32_t, uint16_t, u_ISteamMatchmakingPingResponse * ) = 0; @@ -1224,24 +1224,24 @@ struct u_ISteamUtils_SteamUtils005 virtual uint32_t GetConnectedUniverse( ) = 0; virtual uint32_t GetServerRealTime( ) = 0; virtual const char * GetIPCountry( ) = 0; - virtual bool GetImageSize( int32_t, uint32_t *, uint32_t * ) = 0; - virtual bool GetImageRGBA( int32_t, uint8_t *, int32_t ) = 0; - virtual bool GetCSERIPPort( uint32_t *, uint16_t * ) = 0; + virtual int8_t GetImageSize( int32_t, uint32_t *, uint32_t * ) = 0; + virtual int8_t GetImageRGBA( int32_t, uint8_t *, int32_t ) = 0; + virtual int8_t GetCSERIPPort( uint32_t *, uint16_t * ) = 0; virtual uint8_t GetCurrentBatteryPower( ) = 0; virtual uint32_t GetAppID( ) = 0; virtual void SetOverlayNotificationPosition( uint32_t ) = 0; - virtual bool IsAPICallCompleted( uint64_t, bool * ) = 0; + virtual int8_t IsAPICallCompleted( uint64_t, int8_t * ) = 0; virtual uint32_t GetAPICallFailureReason( uint64_t ) = 0; - virtual bool GetAPICallResult( uint64_t, void *, int32_t, int32_t, bool * ) = 0; + virtual int8_t GetAPICallResult( uint64_t, void *, int32_t, int32_t, int8_t * ) = 0; virtual void RunFrame( ) = 0; virtual uint32_t GetIPCCallCount( ) = 0; virtual void SetWarningMessageHook( void (*U_CDECL )(int32_t, const char *) ) = 0; - virtual bool IsOverlayEnabled( ) = 0; - virtual bool BOverlayNeedsPresent( ) = 0; + virtual int8_t IsOverlayEnabled( ) = 0; + virtual int8_t BOverlayNeedsPresent( ) = 0; virtual uint64_t CheckFileSignature( const char * ) = 0; - virtual bool ShowGamepadTextInput( uint32_t, uint32_t, const char *, uint32_t ) = 0; + virtual int8_t ShowGamepadTextInput( uint32_t, uint32_t, const char *, uint32_t ) = 0; virtual uint32_t GetEnteredGamepadTextLength( ) = 0; - virtual bool GetEnteredGamepadTextInput( char *, uint32_t ) = 0; + virtual int8_t GetEnteredGamepadTextInput( char *, uint32_t ) = 0; #endif /* __cplusplus */ }; @@ -1249,7 +1249,7 @@ struct u_ISteamClient_SteamClient009 { #ifdef __cplusplus virtual int32_t CreateSteamPipe( ) = 0; - virtual bool BReleaseSteamPipe( int32_t ) = 0; + virtual int8_t BReleaseSteamPipe( int32_t ) = 0; virtual int32_t ConnectToGlobalUser( int32_t ) = 0; virtual int32_t CreateLocalUser( int32_t *, uint32_t ) = 0; virtual void ReleaseUser( int32_t, int32_t ) = 0; @@ -1277,9 +1277,9 @@ struct u_ISteamMatchmaking_SteamMatchMaking008 { #ifdef __cplusplus virtual int32_t GetFavoriteGameCount( ) = 0; - virtual bool GetFavoriteGame( int32_t, uint32_t *, uint32_t *, uint16_t *, uint16_t *, uint32_t *, uint32_t * ) = 0; + virtual int8_t GetFavoriteGame( int32_t, uint32_t *, uint32_t *, uint16_t *, uint16_t *, uint32_t *, uint32_t * ) = 0; virtual int32_t AddFavoriteGame( uint32_t, uint32_t, uint16_t, uint16_t, uint32_t, uint32_t ) = 0; - virtual bool RemoveFavoriteGame( uint32_t, uint32_t, uint16_t, uint16_t, uint32_t ) = 0; + virtual int8_t RemoveFavoriteGame( uint32_t, uint32_t, uint16_t, uint16_t, uint32_t ) = 0; virtual uint64_t RequestLobbyList( ) = 0; virtual void AddRequestLobbyListStringFilter( const char *, const char *, uint32_t ) = 0; virtual void AddRequestLobbyListNumericalFilter( const char *, int32_t, uint32_t ) = 0; @@ -1291,53 +1291,53 @@ struct u_ISteamMatchmaking_SteamMatchMaking008 virtual uint64_t CreateLobby( uint32_t, int32_t ) = 0; virtual uint64_t JoinLobby( CSteamID ) = 0; virtual void LeaveLobby( CSteamID ) = 0; - virtual bool InviteUserToLobby( CSteamID, CSteamID ) = 0; + virtual int8_t InviteUserToLobby( CSteamID, CSteamID ) = 0; virtual int32_t GetNumLobbyMembers( CSteamID ) = 0; virtual CSteamID GetLobbyMemberByIndex( CSteamID, int32_t ) = 0; virtual const char * GetLobbyData( CSteamID, const char * ) = 0; - virtual bool SetLobbyData( CSteamID, const char *, const char * ) = 0; + virtual int8_t SetLobbyData( CSteamID, const char *, const char * ) = 0; virtual int32_t GetLobbyDataCount( CSteamID ) = 0; - virtual bool GetLobbyDataByIndex( CSteamID, int32_t, char *, int32_t, char *, int32_t ) = 0; - virtual bool DeleteLobbyData( CSteamID, const char * ) = 0; + virtual int8_t GetLobbyDataByIndex( CSteamID, int32_t, char *, int32_t, char *, int32_t ) = 0; + virtual int8_t DeleteLobbyData( CSteamID, const char * ) = 0; virtual const char * GetLobbyMemberData( CSteamID, CSteamID, const char * ) = 0; virtual void SetLobbyMemberData( CSteamID, const char *, const char * ) = 0; - virtual bool SendLobbyChatMsg( CSteamID, const void *, int32_t ) = 0; + virtual int8_t SendLobbyChatMsg( CSteamID, const void *, int32_t ) = 0; virtual int32_t GetLobbyChatEntry( CSteamID, int32_t, CSteamID *, void *, int32_t, uint32_t * ) = 0; - virtual bool RequestLobbyData( CSteamID ) = 0; + virtual int8_t RequestLobbyData( CSteamID ) = 0; virtual void SetLobbyGameServer( CSteamID, uint32_t, uint16_t, CSteamID ) = 0; - virtual bool GetLobbyGameServer( CSteamID, uint32_t *, uint16_t *, CSteamID * ) = 0; - virtual bool SetLobbyMemberLimit( CSteamID, int32_t ) = 0; + virtual int8_t GetLobbyGameServer( CSteamID, uint32_t *, uint16_t *, CSteamID * ) = 0; + virtual int8_t SetLobbyMemberLimit( CSteamID, int32_t ) = 0; virtual int32_t GetLobbyMemberLimit( CSteamID ) = 0; - virtual bool SetLobbyType( CSteamID, uint32_t ) = 0; - virtual bool SetLobbyJoinable( CSteamID, bool ) = 0; + virtual int8_t SetLobbyType( CSteamID, uint32_t ) = 0; + virtual int8_t SetLobbyJoinable( CSteamID, int8_t ) = 0; virtual CSteamID GetLobbyOwner( CSteamID ) = 0; - virtual bool SetLobbyOwner( CSteamID, CSteamID ) = 0; + virtual int8_t SetLobbyOwner( CSteamID, CSteamID ) = 0; #endif /* __cplusplus */ }; struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 { #ifdef __cplusplus - virtual bool RequestCurrentStats( ) = 0; - virtual bool GetStat( const char *, int32_t * ) = 0; - virtual bool GetStat( const char *, float * ) = 0; - virtual bool SetStat( const char *, int32_t ) = 0; - virtual bool SetStat( const char *, float ) = 0; - virtual bool UpdateAvgRateStat( const char *, float, double ) = 0; - virtual bool GetAchievement( const char *, bool * ) = 0; - virtual bool SetAchievement( const char * ) = 0; - virtual bool ClearAchievement( const char * ) = 0; - virtual bool GetAchievementAndUnlockTime( const char *, bool *, uint32_t * ) = 0; - virtual bool StoreStats( ) = 0; + virtual int8_t RequestCurrentStats( ) = 0; + virtual int8_t GetStat( const char *, int32_t * ) = 0; + virtual int8_t GetStat( const char *, float * ) = 0; + virtual int8_t SetStat( const char *, int32_t ) = 0; + virtual int8_t SetStat( const char *, float ) = 0; + virtual int8_t UpdateAvgRateStat( const char *, float, double ) = 0; + virtual int8_t GetAchievement( const char *, int8_t * ) = 0; + virtual int8_t SetAchievement( const char * ) = 0; + virtual int8_t ClearAchievement( const char * ) = 0; + virtual int8_t GetAchievementAndUnlockTime( const char *, int8_t *, uint32_t * ) = 0; + virtual int8_t StoreStats( ) = 0; virtual int32_t GetAchievementIcon( const char * ) = 0; virtual const char * GetAchievementDisplayAttribute( const char *, const char * ) = 0; - virtual bool IndicateAchievementProgress( const char *, uint32_t, uint32_t ) = 0; + virtual int8_t IndicateAchievementProgress( const char *, uint32_t, uint32_t ) = 0; virtual uint64_t RequestUserStats( CSteamID ) = 0; - virtual bool GetUserStat( CSteamID, const char *, int32_t * ) = 0; - virtual bool GetUserStat( CSteamID, const char *, float * ) = 0; - virtual bool GetUserAchievement( CSteamID, const char *, bool * ) = 0; - virtual bool GetUserAchievementAndUnlockTime( CSteamID, const char *, bool *, uint32_t * ) = 0; - virtual bool ResetAllStats( bool ) = 0; + virtual int8_t GetUserStat( CSteamID, const char *, int32_t * ) = 0; + virtual int8_t GetUserStat( CSteamID, const char *, float * ) = 0; + virtual int8_t GetUserAchievement( CSteamID, const char *, int8_t * ) = 0; + virtual int8_t GetUserAchievementAndUnlockTime( CSteamID, const char *, int8_t *, uint32_t * ) = 0; + virtual int8_t ResetAllStats( int8_t ) = 0; virtual uint64_t FindOrCreateLeaderboard( const char *, uint32_t, uint32_t ) = 0; virtual uint64_t FindLeaderboard( const char * ) = 0; virtual const char * GetLeaderboardName( uint64_t ) = 0; @@ -1345,7 +1345,7 @@ struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 virtual uint32_t GetLeaderboardSortMethod( uint64_t ) = 0; virtual uint32_t GetLeaderboardDisplayType( uint64_t ) = 0; virtual uint64_t DownloadLeaderboardEntries( uint64_t, uint32_t, int32_t, int32_t ) = 0; - virtual bool GetDownloadedLeaderboardEntry( uint64_t, int32_t, u_LeaderboardEntry_t_104 *, int32_t *, int32_t ) = 0; + virtual int8_t GetDownloadedLeaderboardEntry( uint64_t, int32_t, u_LeaderboardEntry_t_104 *, int32_t *, int32_t ) = 0; virtual uint64_t UploadLeaderboardScore( uint64_t, uint32_t, int32_t, const int32_t *, int32_t ) = 0; virtual uint64_t GetNumberOfCurrentPlayers( ) = 0; #endif /* __cplusplus */ @@ -1356,20 +1356,20 @@ struct u_ISteamGameServer_SteamGameServer010 #ifdef __cplusplus virtual void LogOn( ) = 0; virtual void LogOff( ) = 0; - virtual bool BLoggedOn( ) = 0; - virtual bool BSecure( ) = 0; + virtual int8_t BLoggedOn( ) = 0; + virtual int8_t BSecure( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual bool SendUserConnectAndAuthenticate( uint32_t, const void *, uint32_t, CSteamID * ) = 0; + virtual int8_t SendUserConnectAndAuthenticate( uint32_t, const void *, uint32_t, CSteamID * ) = 0; virtual CSteamID CreateUnauthenticatedUserConnection( ) = 0; virtual void SendUserDisconnect( CSteamID ) = 0; - virtual bool BUpdateUserData( CSteamID, const char *, uint32_t ) = 0; - virtual bool BSetServerType( uint32_t, uint32_t, uint16_t, uint16_t, uint16_t, const char *, const char *, bool ) = 0; + virtual int8_t BUpdateUserData( CSteamID, const char *, uint32_t ) = 0; + virtual int8_t BSetServerType( uint32_t, uint32_t, uint16_t, uint16_t, uint16_t, const char *, const char *, int8_t ) = 0; virtual void UpdateServerStatus( int32_t, int32_t, int32_t, const char *, const char *, const char * ) = 0; virtual void UpdateSpectatorPort( uint16_t ) = 0; virtual void SetGameTags( const char * ) = 0; virtual void GetGameplayStats( ) = 0; virtual uint64_t GetServerReputation( ) = 0; - virtual bool RequestUserGroupStatus( CSteamID, CSteamID ) = 0; + virtual int8_t RequestUserGroupStatus( CSteamID, CSteamID ) = 0; virtual uint32_t GetPublicIP( ) = 0; virtual void SetGameData( const char * ) = 0; virtual uint32_t UserHasLicenseForApp( CSteamID, uint32_t ) = 0; @@ -1384,14 +1384,14 @@ struct u_ISteamGameServerStats_SteamGameServerStats001 { #ifdef __cplusplus virtual uint64_t RequestUserStats( CSteamID ) = 0; - virtual bool GetUserStat( CSteamID, const char *, int32_t * ) = 0; - virtual bool GetUserStat( CSteamID, const char *, float * ) = 0; - virtual bool GetUserAchievement( CSteamID, const char *, bool * ) = 0; - virtual bool SetUserStat( CSteamID, const char *, int32_t ) = 0; - virtual bool SetUserStat( CSteamID, const char *, float ) = 0; - virtual bool UpdateUserAvgRateStat( CSteamID, const char *, float, double ) = 0; - virtual bool SetUserAchievement( CSteamID, const char * ) = 0; - virtual bool ClearUserAchievement( CSteamID, const char * ) = 0; + virtual int8_t GetUserStat( CSteamID, const char *, int32_t * ) = 0; + virtual int8_t GetUserStat( CSteamID, const char *, float * ) = 0; + virtual int8_t GetUserAchievement( CSteamID, const char *, int8_t * ) = 0; + virtual int8_t SetUserStat( CSteamID, const char *, int32_t ) = 0; + virtual int8_t SetUserStat( CSteamID, const char *, float ) = 0; + virtual int8_t UpdateUserAvgRateStat( CSteamID, const char *, float, double ) = 0; + virtual int8_t SetUserAchievement( CSteamID, const char * ) = 0; + virtual int8_t ClearUserAchievement( CSteamID, const char * ) = 0; virtual uint64_t StoreUserStats( CSteamID ) = 0; #endif /* __cplusplus */ }; @@ -1419,7 +1419,7 @@ struct u_ISteamGameCoordinator_SteamGameCoordinator001 { #ifdef __cplusplus virtual uint32_t SendMessage( uint32_t, const void *, uint32_t ) = 0; - virtual bool IsMessageAvailable( uint32_t * ) = 0; + virtual int8_t IsMessageAvailable( uint32_t * ) = 0; virtual uint32_t RetrieveMessage( uint32_t *, void *, uint32_t, uint32_t * ) = 0; #endif /* __cplusplus */ }; @@ -1436,17 +1436,17 @@ struct u_ISteamFriends_SteamFriends006 virtual uint32_t GetFriendPersonaState( CSteamID ) = 0; virtual const char * GetFriendPersonaName( CSteamID ) = 0; virtual int32_t GetFriendAvatar( CSteamID, int32_t ) = 0; - virtual bool GetFriendGamePlayed( CSteamID, FriendGameInfo_t * ) = 0; + virtual int8_t GetFriendGamePlayed( CSteamID, FriendGameInfo_t * ) = 0; virtual const char * GetFriendPersonaNameHistory( CSteamID, int32_t ) = 0; - virtual bool HasFriend( CSteamID, int32_t ) = 0; + virtual int8_t HasFriend( CSteamID, int32_t ) = 0; virtual int32_t GetClanCount( ) = 0; virtual CSteamID GetClanByIndex( int32_t ) = 0; virtual const char * GetClanName( CSteamID ) = 0; virtual const char * GetClanTag( CSteamID ) = 0; virtual int32_t GetFriendCountFromSource( CSteamID ) = 0; virtual CSteamID GetFriendFromSourceByIndex( CSteamID, int32_t ) = 0; - virtual bool IsUserInSource( CSteamID, CSteamID ) = 0; - virtual void SetInGameVoiceSpeaking( CSteamID, bool ) = 0; + virtual int8_t IsUserInSource( CSteamID, CSteamID ) = 0; + virtual void SetInGameVoiceSpeaking( CSteamID, int8_t ) = 0; virtual void ActivateGameOverlay( const char * ) = 0; virtual void ActivateGameOverlayToUser( const char *, CSteamID ) = 0; virtual void ActivateGameOverlayToWebPage( const char * ) = 0; @@ -1460,26 +1460,26 @@ struct u_ISteamUser_SteamUser014 { #ifdef __cplusplus virtual int32_t GetHSteamUser( ) = 0; - virtual bool BLoggedOn( ) = 0; + virtual int8_t BLoggedOn( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, uint32_t, uint16_t, bool ) = 0; + virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, uint32_t, uint16_t, int8_t ) = 0; virtual void TerminateGameConnection( uint32_t, uint16_t ) = 0; virtual void TrackAppUsageEvent( CGameID, int32_t, const char * ) = 0; - virtual bool GetUserDataFolder( char *, int32_t ) = 0; + virtual int8_t GetUserDataFolder( char *, int32_t ) = 0; virtual void StartVoiceRecording( ) = 0; virtual void StopVoiceRecording( ) = 0; virtual uint32_t GetAvailableVoice( uint32_t *, uint32_t * ) = 0; - virtual uint32_t GetVoice( bool, void *, uint32_t, uint32_t *, bool, void *, uint32_t, uint32_t * ) = 0; + virtual uint32_t GetVoice( int8_t, void *, uint32_t, uint32_t *, int8_t, void *, uint32_t, uint32_t * ) = 0; virtual uint32_t DecompressVoice( const void *, uint32_t, void *, uint32_t, uint32_t * ) = 0; virtual uint32_t GetAuthSessionTicket( void *, int32_t, uint32_t * ) = 0; virtual uint32_t BeginAuthSession( const void *, int32_t, CSteamID ) = 0; virtual void EndAuthSession( CSteamID ) = 0; virtual void CancelAuthTicket( uint32_t ) = 0; virtual uint32_t UserHasLicenseForApp( CSteamID, uint32_t ) = 0; - virtual bool BIsBehindNAT( ) = 0; + virtual int8_t BIsBehindNAT( ) = 0; virtual void AdvertiseGame( CSteamID, uint32_t, uint16_t ) = 0; virtual uint64_t RequestEncryptedAppTicket( void *, int32_t ) = 0; - virtual bool GetEncryptedAppTicket( void *, int32_t, uint32_t * ) = 0; + virtual int8_t GetEncryptedAppTicket( void *, int32_t, uint32_t * ) = 0; #endif /* __cplusplus */ }; @@ -1494,17 +1494,17 @@ struct u_ISteamFriends_SteamFriends007 virtual uint32_t GetFriendRelationship( CSteamID ) = 0; virtual uint32_t GetFriendPersonaState( CSteamID ) = 0; virtual const char * GetFriendPersonaName( CSteamID ) = 0; - virtual bool GetFriendGamePlayed( CSteamID, FriendGameInfo_t * ) = 0; + virtual int8_t GetFriendGamePlayed( CSteamID, FriendGameInfo_t * ) = 0; virtual const char * GetFriendPersonaNameHistory( CSteamID, int32_t ) = 0; - virtual bool HasFriend( CSteamID, int32_t ) = 0; + virtual int8_t HasFriend( CSteamID, int32_t ) = 0; virtual int32_t GetClanCount( ) = 0; virtual CSteamID GetClanByIndex( int32_t ) = 0; virtual const char * GetClanName( CSteamID ) = 0; virtual const char * GetClanTag( CSteamID ) = 0; virtual int32_t GetFriendCountFromSource( CSteamID ) = 0; virtual CSteamID GetFriendFromSourceByIndex( CSteamID, int32_t ) = 0; - virtual bool IsUserInSource( CSteamID, CSteamID ) = 0; - virtual void SetInGameVoiceSpeaking( CSteamID, bool ) = 0; + virtual int8_t IsUserInSource( CSteamID, CSteamID ) = 0; + virtual void SetInGameVoiceSpeaking( CSteamID, int8_t ) = 0; virtual void ActivateGameOverlay( const char * ) = 0; virtual void ActivateGameOverlayToUser( const char *, CSteamID ) = 0; virtual void ActivateGameOverlayToWebPage( const char * ) = 0; @@ -1520,24 +1520,24 @@ struct u_ISteamFriends_SteamFriends007 struct u_ISteamNetworking_SteamNetworking004 { #ifdef __cplusplus - virtual bool SendP2PPacket( CSteamID, const void *, uint32_t, uint32_t, int32_t ) = 0; - virtual bool IsP2PPacketAvailable( uint32_t *, int32_t ) = 0; - virtual bool ReadP2PPacket( void *, uint32_t, uint32_t *, CSteamID *, int32_t ) = 0; - virtual bool AcceptP2PSessionWithUser( CSteamID ) = 0; - virtual bool CloseP2PSessionWithUser( CSteamID ) = 0; - virtual bool GetP2PSessionState( CSteamID, P2PSessionState_t * ) = 0; - virtual uint32_t CreateListenSocket( int32_t, uint32_t, uint16_t, bool ) = 0; - virtual uint32_t CreateP2PConnectionSocket( CSteamID, int32_t, int32_t, bool ) = 0; + virtual int8_t SendP2PPacket( CSteamID, const void *, uint32_t, uint32_t, int32_t ) = 0; + virtual int8_t IsP2PPacketAvailable( uint32_t *, int32_t ) = 0; + virtual int8_t ReadP2PPacket( void *, uint32_t, uint32_t *, CSteamID *, int32_t ) = 0; + virtual int8_t AcceptP2PSessionWithUser( CSteamID ) = 0; + virtual int8_t CloseP2PSessionWithUser( CSteamID ) = 0; + virtual int8_t GetP2PSessionState( CSteamID, P2PSessionState_t * ) = 0; + virtual uint32_t CreateListenSocket( int32_t, uint32_t, uint16_t, int8_t ) = 0; + virtual uint32_t CreateP2PConnectionSocket( CSteamID, int32_t, int32_t, int8_t ) = 0; virtual uint32_t CreateConnectionSocket( uint32_t, uint16_t, int32_t ) = 0; - virtual bool DestroySocket( uint32_t, bool ) = 0; - virtual bool DestroyListenSocket( uint32_t, bool ) = 0; - virtual bool SendDataOnSocket( uint32_t, void *, uint32_t, bool ) = 0; - virtual bool IsDataAvailableOnSocket( uint32_t, uint32_t * ) = 0; - virtual bool RetrieveDataFromSocket( uint32_t, void *, uint32_t, uint32_t * ) = 0; - virtual bool IsDataAvailable( uint32_t, uint32_t *, uint32_t * ) = 0; - virtual bool RetrieveData( uint32_t, void *, uint32_t, uint32_t *, uint32_t * ) = 0; - virtual bool GetSocketInfo( uint32_t, CSteamID *, int32_t *, uint32_t *, uint16_t * ) = 0; - virtual bool GetListenSocketInfo( uint32_t, uint32_t *, uint16_t * ) = 0; + virtual int8_t DestroySocket( uint32_t, int8_t ) = 0; + virtual int8_t DestroyListenSocket( uint32_t, int8_t ) = 0; + virtual int8_t SendDataOnSocket( uint32_t, void *, uint32_t, int8_t ) = 0; + virtual int8_t IsDataAvailableOnSocket( uint32_t, uint32_t * ) = 0; + virtual int8_t RetrieveDataFromSocket( uint32_t, void *, uint32_t, uint32_t * ) = 0; + virtual int8_t IsDataAvailable( uint32_t, uint32_t *, uint32_t * ) = 0; + virtual int8_t RetrieveData( uint32_t, void *, uint32_t, uint32_t *, uint32_t * ) = 0; + virtual int8_t GetSocketInfo( uint32_t, CSteamID *, int32_t *, uint32_t *, uint16_t * ) = 0; + virtual int8_t GetListenSocketInfo( uint32_t, uint32_t *, uint16_t * ) = 0; virtual uint32_t GetSocketConnectionType( uint32_t ) = 0; virtual int32_t GetMaxPacketSize( uint32_t ) = 0; #endif /* __cplusplus */ @@ -1547,7 +1547,7 @@ struct u_ISteamClient_SteamClient010 { #ifdef __cplusplus virtual int32_t CreateSteamPipe( ) = 0; - virtual bool BReleaseSteamPipe( int32_t ) = 0; + virtual int8_t BReleaseSteamPipe( int32_t ) = 0; virtual int32_t ConnectToGlobalUser( int32_t ) = 0; virtual int32_t CreateLocalUser( int32_t *, uint32_t ) = 0; virtual void ReleaseUser( int32_t, int32_t ) = 0; @@ -1568,7 +1568,7 @@ struct u_ISteamClient_SteamClient010 virtual void RunFrame( ) = 0; virtual uint32_t GetIPCCallCount( ) = 0; virtual void SetWarningMessageHook( void (*U_CDECL )(int32_t, const char *) ) = 0; - virtual bool BShutdownIfAllPipesClosed( ) = 0; + virtual int8_t BShutdownIfAllPipesClosed( ) = 0; virtual void /*ISteamHTTP*/ * GetISteamHTTP( int32_t, int32_t, const char * ) = 0; #endif /* __cplusplus */ }; @@ -1584,17 +1584,17 @@ struct u_ISteamFriends_SteamFriends008 virtual uint32_t GetFriendRelationship( CSteamID ) = 0; virtual uint32_t GetFriendPersonaState( CSteamID ) = 0; virtual const char * GetFriendPersonaName( CSteamID ) = 0; - virtual bool GetFriendGamePlayed( CSteamID, FriendGameInfo_t * ) = 0; + virtual int8_t GetFriendGamePlayed( CSteamID, FriendGameInfo_t * ) = 0; virtual const char * GetFriendPersonaNameHistory( CSteamID, int32_t ) = 0; - virtual bool HasFriend( CSteamID, int32_t ) = 0; + virtual int8_t HasFriend( CSteamID, int32_t ) = 0; virtual int32_t GetClanCount( ) = 0; virtual CSteamID GetClanByIndex( int32_t ) = 0; virtual const char * GetClanName( CSteamID ) = 0; virtual const char * GetClanTag( CSteamID ) = 0; virtual int32_t GetFriendCountFromSource( CSteamID ) = 0; virtual CSteamID GetFriendFromSourceByIndex( CSteamID, int32_t ) = 0; - virtual bool IsUserInSource( CSteamID, CSteamID ) = 0; - virtual void SetInGameVoiceSpeaking( CSteamID, bool ) = 0; + virtual int8_t IsUserInSource( CSteamID, CSteamID ) = 0; + virtual void SetInGameVoiceSpeaking( CSteamID, int8_t ) = 0; virtual void ActivateGameOverlay( const char * ) = 0; virtual void ActivateGameOverlayToUser( const char *, CSteamID ) = 0; virtual void ActivateGameOverlayToWebPage( const char * ) = 0; @@ -1604,7 +1604,7 @@ struct u_ISteamFriends_SteamFriends008 virtual int32_t GetSmallFriendAvatar( CSteamID ) = 0; virtual int32_t GetMediumFriendAvatar( CSteamID ) = 0; virtual int32_t GetLargeFriendAvatar( CSteamID ) = 0; - virtual bool RequestUserInformation( CSteamID, bool ) = 0; + virtual int8_t RequestUserInformation( CSteamID, int8_t ) = 0; virtual uint64_t RequestClanOfficerList( CSteamID ) = 0; virtual CSteamID GetClanOwner( CSteamID ) = 0; virtual int32_t GetClanOfficerCount( CSteamID ) = 0; @@ -1616,23 +1616,23 @@ struct u_ISteamFriends_SteamFriends008 struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 { #ifdef __cplusplus - virtual bool FileWrite( const char *, const void *, int32_t ) = 0; + virtual int8_t FileWrite( const char *, const void *, int32_t ) = 0; virtual int32_t FileRead( const char *, void *, int32_t ) = 0; - virtual bool FileForget( const char * ) = 0; - virtual bool FileDelete( const char * ) = 0; + virtual int8_t FileForget( const char * ) = 0; + virtual int8_t FileDelete( const char * ) = 0; virtual uint64_t FileShare( const char * ) = 0; - virtual bool FileExists( const char * ) = 0; - virtual bool FilePersisted( const char * ) = 0; + virtual int8_t FileExists( const char * ) = 0; + virtual int8_t FilePersisted( const char * ) = 0; virtual int32_t GetFileSize( const char * ) = 0; virtual int64_t GetFileTimestamp( const char * ) = 0; virtual int32_t GetFileCount( ) = 0; virtual const char * GetFileNameAndSize( int32_t, int32_t * ) = 0; - virtual bool GetQuota( int32_t *, int32_t * ) = 0; - virtual bool IsCloudEnabledForAccount( ) = 0; - virtual bool IsCloudEnabledForApp( ) = 0; - virtual void SetCloudEnabledForApp( bool ) = 0; + virtual int8_t GetQuota( int32_t *, int32_t * ) = 0; + virtual int8_t IsCloudEnabledForAccount( ) = 0; + virtual int8_t IsCloudEnabledForApp( ) = 0; + virtual void SetCloudEnabledForApp( int8_t ) = 0; virtual uint64_t UGCDownload( uint64_t ) = 0; - virtual bool GetUGCDetails( uint64_t, uint32_t *, char **, int32_t *, CSteamID * ) = 0; + virtual int8_t GetUGCDetails( uint64_t, uint32_t *, char **, int32_t *, CSteamID * ) = 0; virtual int32_t UGCRead( uint64_t, void *, int32_t ) = 0; virtual int32_t GetCachedUGCCount( ) = 0; virtual uint64_t GetCachedUGCHandle( int32_t ) = 0; @@ -1642,26 +1642,26 @@ struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 { #ifdef __cplusplus - virtual bool RequestCurrentStats( ) = 0; - virtual bool GetStat( const char *, int32_t * ) = 0; - virtual bool GetStat( const char *, float * ) = 0; - virtual bool SetStat( const char *, int32_t ) = 0; - virtual bool SetStat( const char *, float ) = 0; - virtual bool UpdateAvgRateStat( const char *, float, double ) = 0; - virtual bool GetAchievement( const char *, bool * ) = 0; - virtual bool SetAchievement( const char * ) = 0; - virtual bool ClearAchievement( const char * ) = 0; - virtual bool GetAchievementAndUnlockTime( const char *, bool *, uint32_t * ) = 0; - virtual bool StoreStats( ) = 0; + virtual int8_t RequestCurrentStats( ) = 0; + virtual int8_t GetStat( const char *, int32_t * ) = 0; + virtual int8_t GetStat( const char *, float * ) = 0; + virtual int8_t SetStat( const char *, int32_t ) = 0; + virtual int8_t SetStat( const char *, float ) = 0; + virtual int8_t UpdateAvgRateStat( const char *, float, double ) = 0; + virtual int8_t GetAchievement( const char *, int8_t * ) = 0; + virtual int8_t SetAchievement( const char * ) = 0; + virtual int8_t ClearAchievement( const char * ) = 0; + virtual int8_t GetAchievementAndUnlockTime( const char *, int8_t *, uint32_t * ) = 0; + virtual int8_t StoreStats( ) = 0; virtual int32_t GetAchievementIcon( const char * ) = 0; virtual const char * GetAchievementDisplayAttribute( const char *, const char * ) = 0; - virtual bool IndicateAchievementProgress( const char *, uint32_t, uint32_t ) = 0; + virtual int8_t IndicateAchievementProgress( const char *, uint32_t, uint32_t ) = 0; virtual uint64_t RequestUserStats( CSteamID ) = 0; - virtual bool GetUserStat( CSteamID, const char *, int32_t * ) = 0; - virtual bool GetUserStat( CSteamID, const char *, float * ) = 0; - virtual bool GetUserAchievement( CSteamID, const char *, bool * ) = 0; - virtual bool GetUserAchievementAndUnlockTime( CSteamID, const char *, bool *, uint32_t * ) = 0; - virtual bool ResetAllStats( bool ) = 0; + virtual int8_t GetUserStat( CSteamID, const char *, int32_t * ) = 0; + virtual int8_t GetUserStat( CSteamID, const char *, float * ) = 0; + virtual int8_t GetUserAchievement( CSteamID, const char *, int8_t * ) = 0; + virtual int8_t GetUserAchievementAndUnlockTime( CSteamID, const char *, int8_t *, uint32_t * ) = 0; + virtual int8_t ResetAllStats( int8_t ) = 0; virtual uint64_t FindOrCreateLeaderboard( const char *, uint32_t, uint32_t ) = 0; virtual uint64_t FindLeaderboard( const char * ) = 0; virtual const char * GetLeaderboardName( uint64_t ) = 0; @@ -1669,7 +1669,7 @@ struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 virtual uint32_t GetLeaderboardSortMethod( uint64_t ) = 0; virtual uint32_t GetLeaderboardDisplayType( uint64_t ) = 0; virtual uint64_t DownloadLeaderboardEntries( uint64_t, uint32_t, int32_t, int32_t ) = 0; - virtual bool GetDownloadedLeaderboardEntry( uint64_t, int32_t, u_LeaderboardEntry_t_111x *, int32_t *, int32_t ) = 0; + virtual int8_t GetDownloadedLeaderboardEntry( uint64_t, int32_t, u_LeaderboardEntry_t_111x *, int32_t *, int32_t ) = 0; virtual uint64_t UploadLeaderboardScore( uint64_t, uint32_t, int32_t, const int32_t *, int32_t ) = 0; virtual uint64_t AttachLeaderboardUGC( uint64_t, uint64_t ) = 0; virtual uint64_t GetNumberOfCurrentPlayers( ) = 0; @@ -1679,18 +1679,18 @@ struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 { #ifdef __cplusplus - virtual bool BIsSubscribed( ) = 0; - virtual bool BIsLowViolence( ) = 0; - virtual bool BIsCybercafe( ) = 0; - virtual bool BIsVACBanned( ) = 0; + virtual int8_t BIsSubscribed( ) = 0; + virtual int8_t BIsLowViolence( ) = 0; + virtual int8_t BIsCybercafe( ) = 0; + virtual int8_t BIsVACBanned( ) = 0; virtual const char * GetCurrentGameLanguage( ) = 0; virtual const char * GetAvailableGameLanguages( ) = 0; - virtual bool BIsSubscribedApp( uint32_t ) = 0; - virtual bool BIsDlcInstalled( uint32_t ) = 0; + virtual int8_t BIsSubscribedApp( uint32_t ) = 0; + virtual int8_t BIsDlcInstalled( uint32_t ) = 0; virtual uint32_t GetEarliestPurchaseUnixTime( uint32_t ) = 0; - virtual bool BIsSubscribedFromFreeWeekend( ) = 0; + virtual int8_t BIsSubscribedFromFreeWeekend( ) = 0; virtual int32_t GetDLCCount( ) = 0; - virtual bool BGetDLCDataByIndex( int32_t, uint32_t *, bool *, char *, int32_t ) = 0; + virtual int8_t BGetDLCDataByIndex( int32_t, uint32_t *, int8_t *, char *, int32_t ) = 0; virtual void InstallDLC( uint32_t ) = 0; virtual void UninstallDLC( uint32_t ) = 0; #endif /* __cplusplus */ @@ -1706,25 +1706,25 @@ struct u_ISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001 struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 { #ifdef __cplusplus - virtual bool FileWrite( const char *, const void *, int32_t ) = 0; + virtual int8_t FileWrite( const char *, const void *, int32_t ) = 0; virtual int32_t FileRead( const char *, void *, int32_t ) = 0; - virtual bool FileForget( const char * ) = 0; - virtual bool FileDelete( const char * ) = 0; + virtual int8_t FileForget( const char * ) = 0; + virtual int8_t FileDelete( const char * ) = 0; virtual uint64_t FileShare( const char * ) = 0; - virtual bool SetSyncPlatforms( const char *, uint32_t ) = 0; - virtual bool FileExists( const char * ) = 0; - virtual bool FilePersisted( const char * ) = 0; + virtual int8_t SetSyncPlatforms( const char *, uint32_t ) = 0; + virtual int8_t FileExists( const char * ) = 0; + virtual int8_t FilePersisted( const char * ) = 0; virtual int32_t GetFileSize( const char * ) = 0; virtual int64_t GetFileTimestamp( const char * ) = 0; virtual uint32_t GetSyncPlatforms( const char * ) = 0; virtual int32_t GetFileCount( ) = 0; virtual const char * GetFileNameAndSize( int32_t, int32_t * ) = 0; - virtual bool GetQuota( int32_t *, int32_t * ) = 0; - virtual bool IsCloudEnabledForAccount( ) = 0; - virtual bool IsCloudEnabledForApp( ) = 0; - virtual void SetCloudEnabledForApp( bool ) = 0; + virtual int8_t GetQuota( int32_t *, int32_t * ) = 0; + virtual int8_t IsCloudEnabledForAccount( ) = 0; + virtual int8_t IsCloudEnabledForApp( ) = 0; + virtual void SetCloudEnabledForApp( int8_t ) = 0; virtual uint64_t UGCDownload( uint64_t ) = 0; - virtual bool GetUGCDetails( uint64_t, uint32_t *, char **, int32_t *, CSteamID * ) = 0; + virtual int8_t GetUGCDetails( uint64_t, uint32_t *, char **, int32_t *, CSteamID * ) = 0; virtual int32_t UGCRead( uint64_t, void *, int32_t ) = 0; virtual int32_t GetCachedUGCCount( ) = 0; virtual uint64_t GetCachedUGCHandle( int32_t ) = 0; @@ -1734,26 +1734,26 @@ struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 { #ifdef __cplusplus - virtual bool RequestCurrentStats( ) = 0; - virtual bool GetStat( const char *, int32_t * ) = 0; - virtual bool GetStat( const char *, float * ) = 0; - virtual bool SetStat( const char *, int32_t ) = 0; - virtual bool SetStat( const char *, float ) = 0; - virtual bool UpdateAvgRateStat( const char *, float, double ) = 0; - virtual bool GetAchievement( const char *, bool * ) = 0; - virtual bool SetAchievement( const char * ) = 0; - virtual bool ClearAchievement( const char * ) = 0; - virtual bool GetAchievementAndUnlockTime( const char *, bool *, uint32_t * ) = 0; - virtual bool StoreStats( ) = 0; + virtual int8_t RequestCurrentStats( ) = 0; + virtual int8_t GetStat( const char *, int32_t * ) = 0; + virtual int8_t GetStat( const char *, float * ) = 0; + virtual int8_t SetStat( const char *, int32_t ) = 0; + virtual int8_t SetStat( const char *, float ) = 0; + virtual int8_t UpdateAvgRateStat( const char *, float, double ) = 0; + virtual int8_t GetAchievement( const char *, int8_t * ) = 0; + virtual int8_t SetAchievement( const char * ) = 0; + virtual int8_t ClearAchievement( const char * ) = 0; + virtual int8_t GetAchievementAndUnlockTime( const char *, int8_t *, uint32_t * ) = 0; + virtual int8_t StoreStats( ) = 0; virtual int32_t GetAchievementIcon( const char * ) = 0; virtual const char * GetAchievementDisplayAttribute( const char *, const char * ) = 0; - virtual bool IndicateAchievementProgress( const char *, uint32_t, uint32_t ) = 0; + virtual int8_t IndicateAchievementProgress( const char *, uint32_t, uint32_t ) = 0; virtual uint64_t RequestUserStats( CSteamID ) = 0; - virtual bool GetUserStat( CSteamID, const char *, int32_t * ) = 0; - virtual bool GetUserStat( CSteamID, const char *, float * ) = 0; - virtual bool GetUserAchievement( CSteamID, const char *, bool * ) = 0; - virtual bool GetUserAchievementAndUnlockTime( CSteamID, const char *, bool *, uint32_t * ) = 0; - virtual bool ResetAllStats( bool ) = 0; + virtual int8_t GetUserStat( CSteamID, const char *, int32_t * ) = 0; + virtual int8_t GetUserStat( CSteamID, const char *, float * ) = 0; + virtual int8_t GetUserAchievement( CSteamID, const char *, int8_t * ) = 0; + virtual int8_t GetUserAchievementAndUnlockTime( CSteamID, const char *, int8_t *, uint32_t * ) = 0; + virtual int8_t ResetAllStats( int8_t ) = 0; virtual uint64_t FindOrCreateLeaderboard( const char *, uint32_t, uint32_t ) = 0; virtual uint64_t FindLeaderboard( const char * ) = 0; virtual const char * GetLeaderboardName( uint64_t ) = 0; @@ -1762,7 +1762,7 @@ struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 virtual uint32_t GetLeaderboardDisplayType( uint64_t ) = 0; virtual uint64_t DownloadLeaderboardEntries( uint64_t, uint32_t, int32_t, int32_t ) = 0; virtual uint64_t DownloadLeaderboardEntriesForUsers( uint64_t, CSteamID *, int32_t ) = 0; - virtual bool GetDownloadedLeaderboardEntry( uint64_t, int32_t, u_LeaderboardEntry_t_111x *, int32_t *, int32_t ) = 0; + virtual int8_t GetDownloadedLeaderboardEntry( uint64_t, int32_t, u_LeaderboardEntry_t_111x *, int32_t *, int32_t ) = 0; virtual uint64_t UploadLeaderboardScore( uint64_t, uint32_t, int32_t, const int32_t *, int32_t ) = 0; virtual uint64_t AttachLeaderboardUGC( uint64_t, uint64_t ) = 0; virtual uint64_t GetNumberOfCurrentPlayers( ) = 0; @@ -1773,16 +1773,16 @@ struct u_ISteamUser_SteamUser015 { #ifdef __cplusplus virtual int32_t GetHSteamUser( ) = 0; - virtual bool BLoggedOn( ) = 0; + virtual int8_t BLoggedOn( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, uint32_t, uint16_t, bool ) = 0; + virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, uint32_t, uint16_t, int8_t ) = 0; virtual void TerminateGameConnection( uint32_t, uint16_t ) = 0; virtual void TrackAppUsageEvent( CGameID, int32_t, const char * ) = 0; - virtual bool GetUserDataFolder( char *, int32_t ) = 0; + virtual int8_t GetUserDataFolder( char *, int32_t ) = 0; virtual void StartVoiceRecording( ) = 0; virtual void StopVoiceRecording( ) = 0; virtual uint32_t GetAvailableVoice( uint32_t *, uint32_t * ) = 0; - virtual uint32_t GetVoice( bool, void *, uint32_t, uint32_t *, bool, void *, uint32_t, uint32_t * ) = 0; + virtual uint32_t GetVoice( int8_t, void *, uint32_t, uint32_t *, int8_t, void *, uint32_t, uint32_t * ) = 0; virtual uint32_t DecompressVoice( const void *, uint32_t, void *, uint32_t, uint32_t *, uint32_t ) = 0; virtual uint32_t GetVoiceOptimalSampleRate( ) = 0; virtual uint32_t GetAuthSessionTicket( void *, int32_t, uint32_t * ) = 0; @@ -1790,10 +1790,10 @@ struct u_ISteamUser_SteamUser015 virtual void EndAuthSession( CSteamID ) = 0; virtual void CancelAuthTicket( uint32_t ) = 0; virtual uint32_t UserHasLicenseForApp( CSteamID, uint32_t ) = 0; - virtual bool BIsBehindNAT( ) = 0; + virtual int8_t BIsBehindNAT( ) = 0; virtual void AdvertiseGame( CSteamID, uint32_t, uint16_t ) = 0; virtual uint64_t RequestEncryptedAppTicket( void *, int32_t ) = 0; - virtual bool GetEncryptedAppTicket( void *, int32_t, uint32_t * ) = 0; + virtual int8_t GetEncryptedAppTicket( void *, int32_t, uint32_t * ) = 0; #endif /* __cplusplus */ }; @@ -1808,17 +1808,17 @@ struct u_ISteamFriends_SteamFriends009 virtual uint32_t GetFriendRelationship( CSteamID ) = 0; virtual uint32_t GetFriendPersonaState( CSteamID ) = 0; virtual const char * GetFriendPersonaName( CSteamID ) = 0; - virtual bool GetFriendGamePlayed( CSteamID, FriendGameInfo_t * ) = 0; + virtual int8_t GetFriendGamePlayed( CSteamID, FriendGameInfo_t * ) = 0; virtual const char * GetFriendPersonaNameHistory( CSteamID, int32_t ) = 0; - virtual bool HasFriend( CSteamID, int32_t ) = 0; + virtual int8_t HasFriend( CSteamID, int32_t ) = 0; virtual int32_t GetClanCount( ) = 0; virtual CSteamID GetClanByIndex( int32_t ) = 0; virtual const char * GetClanName( CSteamID ) = 0; virtual const char * GetClanTag( CSteamID ) = 0; virtual int32_t GetFriendCountFromSource( CSteamID ) = 0; virtual CSteamID GetFriendFromSourceByIndex( CSteamID, int32_t ) = 0; - virtual bool IsUserInSource( CSteamID, CSteamID ) = 0; - virtual void SetInGameVoiceSpeaking( CSteamID, bool ) = 0; + virtual int8_t IsUserInSource( CSteamID, CSteamID ) = 0; + virtual void SetInGameVoiceSpeaking( CSteamID, int8_t ) = 0; virtual void ActivateGameOverlay( const char * ) = 0; virtual void ActivateGameOverlayToUser( const char *, CSteamID ) = 0; virtual void ActivateGameOverlayToWebPage( const char * ) = 0; @@ -1828,18 +1828,18 @@ struct u_ISteamFriends_SteamFriends009 virtual int32_t GetSmallFriendAvatar( CSteamID ) = 0; virtual int32_t GetMediumFriendAvatar( CSteamID ) = 0; virtual int32_t GetLargeFriendAvatar( CSteamID ) = 0; - virtual bool RequestUserInformation( CSteamID, bool ) = 0; + virtual int8_t RequestUserInformation( CSteamID, int8_t ) = 0; virtual uint64_t RequestClanOfficerList( CSteamID ) = 0; virtual CSteamID GetClanOwner( CSteamID ) = 0; virtual int32_t GetClanOfficerCount( CSteamID ) = 0; virtual CSteamID GetClanOfficerByIndex( CSteamID, int32_t ) = 0; virtual uint32_t GetUserRestrictions( ) = 0; - virtual bool SetRichPresence( const char *, const char * ) = 0; + virtual int8_t SetRichPresence( const char *, const char * ) = 0; virtual void ClearRichPresence( ) = 0; virtual const char * GetFriendRichPresence( CSteamID, const char * ) = 0; virtual int32_t GetFriendRichPresenceKeyCount( CSteamID ) = 0; virtual const char * GetFriendRichPresenceKeyByIndex( CSteamID, int32_t ) = 0; - virtual bool InviteUserToGame( CSteamID, const char * ) = 0; + virtual int8_t InviteUserToGame( CSteamID, const char * ) = 0; virtual int32_t GetCoplayFriendCount( ) = 0; virtual CSteamID GetCoplayFriend( int32_t ) = 0; virtual int32_t GetFriendCoplayTime( CSteamID ) = 0; @@ -1850,26 +1850,26 @@ struct u_ISteamFriends_SteamFriends009 struct u_ISteamNetworking_SteamNetworking005 { #ifdef __cplusplus - virtual bool SendP2PPacket( CSteamID, const void *, uint32_t, uint32_t, int32_t ) = 0; - virtual bool IsP2PPacketAvailable( uint32_t *, int32_t ) = 0; - virtual bool ReadP2PPacket( void *, uint32_t, uint32_t *, CSteamID *, int32_t ) = 0; - virtual bool AcceptP2PSessionWithUser( CSteamID ) = 0; - virtual bool CloseP2PSessionWithUser( CSteamID ) = 0; - virtual bool CloseP2PChannelWithUser( CSteamID, int32_t ) = 0; - virtual bool GetP2PSessionState( CSteamID, P2PSessionState_t * ) = 0; - virtual bool AllowP2PPacketRelay( bool ) = 0; - virtual uint32_t CreateListenSocket( int32_t, uint32_t, uint16_t, bool ) = 0; - virtual uint32_t CreateP2PConnectionSocket( CSteamID, int32_t, int32_t, bool ) = 0; + virtual int8_t SendP2PPacket( CSteamID, const void *, uint32_t, uint32_t, int32_t ) = 0; + virtual int8_t IsP2PPacketAvailable( uint32_t *, int32_t ) = 0; + virtual int8_t ReadP2PPacket( void *, uint32_t, uint32_t *, CSteamID *, int32_t ) = 0; + virtual int8_t AcceptP2PSessionWithUser( CSteamID ) = 0; + virtual int8_t CloseP2PSessionWithUser( CSteamID ) = 0; + virtual int8_t CloseP2PChannelWithUser( CSteamID, int32_t ) = 0; + virtual int8_t GetP2PSessionState( CSteamID, P2PSessionState_t * ) = 0; + virtual int8_t AllowP2PPacketRelay( int8_t ) = 0; + virtual uint32_t CreateListenSocket( int32_t, uint32_t, uint16_t, int8_t ) = 0; + virtual uint32_t CreateP2PConnectionSocket( CSteamID, int32_t, int32_t, int8_t ) = 0; virtual uint32_t CreateConnectionSocket( uint32_t, uint16_t, int32_t ) = 0; - virtual bool DestroySocket( uint32_t, bool ) = 0; - virtual bool DestroyListenSocket( uint32_t, bool ) = 0; - virtual bool SendDataOnSocket( uint32_t, void *, uint32_t, bool ) = 0; - virtual bool IsDataAvailableOnSocket( uint32_t, uint32_t * ) = 0; - virtual bool RetrieveDataFromSocket( uint32_t, void *, uint32_t, uint32_t * ) = 0; - virtual bool IsDataAvailable( uint32_t, uint32_t *, uint32_t * ) = 0; - virtual bool RetrieveData( uint32_t, void *, uint32_t, uint32_t *, uint32_t * ) = 0; - virtual bool GetSocketInfo( uint32_t, CSteamID *, int32_t *, uint32_t *, uint16_t * ) = 0; - virtual bool GetListenSocketInfo( uint32_t, uint32_t *, uint16_t * ) = 0; + virtual int8_t DestroySocket( uint32_t, int8_t ) = 0; + virtual int8_t DestroyListenSocket( uint32_t, int8_t ) = 0; + virtual int8_t SendDataOnSocket( uint32_t, void *, uint32_t, int8_t ) = 0; + virtual int8_t IsDataAvailableOnSocket( uint32_t, uint32_t * ) = 0; + virtual int8_t RetrieveDataFromSocket( uint32_t, void *, uint32_t, uint32_t * ) = 0; + virtual int8_t IsDataAvailable( uint32_t, uint32_t *, uint32_t * ) = 0; + virtual int8_t RetrieveData( uint32_t, void *, uint32_t, uint32_t *, uint32_t * ) = 0; + virtual int8_t GetSocketInfo( uint32_t, CSteamID *, int32_t *, uint32_t *, uint16_t * ) = 0; + virtual int8_t GetListenSocketInfo( uint32_t, uint32_t *, uint16_t * ) = 0; virtual uint32_t GetSocketConnectionType( uint32_t ) = 0; virtual int32_t GetMaxPacketSize( uint32_t ) = 0; #endif /* __cplusplus */ @@ -1879,16 +1879,16 @@ struct u_ISteamUser_SteamUser016 { #ifdef __cplusplus virtual int32_t GetHSteamUser( ) = 0; - virtual bool BLoggedOn( ) = 0; + virtual int8_t BLoggedOn( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, uint32_t, uint16_t, bool ) = 0; + virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, uint32_t, uint16_t, int8_t ) = 0; virtual void TerminateGameConnection( uint32_t, uint16_t ) = 0; virtual void TrackAppUsageEvent( CGameID, int32_t, const char * ) = 0; - virtual bool GetUserDataFolder( char *, int32_t ) = 0; + virtual int8_t GetUserDataFolder( char *, int32_t ) = 0; virtual void StartVoiceRecording( ) = 0; virtual void StopVoiceRecording( ) = 0; virtual uint32_t GetAvailableVoice( uint32_t *, uint32_t *, uint32_t ) = 0; - virtual uint32_t GetVoice( bool, void *, uint32_t, uint32_t *, bool, void *, uint32_t, uint32_t *, uint32_t ) = 0; + virtual uint32_t GetVoice( int8_t, void *, uint32_t, uint32_t *, int8_t, void *, uint32_t, uint32_t *, uint32_t ) = 0; virtual uint32_t DecompressVoice( const void *, uint32_t, void *, uint32_t, uint32_t *, uint32_t ) = 0; virtual uint32_t GetVoiceOptimalSampleRate( ) = 0; virtual uint32_t GetAuthSessionTicket( void *, int32_t, uint32_t * ) = 0; @@ -1896,36 +1896,36 @@ struct u_ISteamUser_SteamUser016 virtual void EndAuthSession( CSteamID ) = 0; virtual void CancelAuthTicket( uint32_t ) = 0; virtual uint32_t UserHasLicenseForApp( CSteamID, uint32_t ) = 0; - virtual bool BIsBehindNAT( ) = 0; + virtual int8_t BIsBehindNAT( ) = 0; virtual void AdvertiseGame( CSteamID, uint32_t, uint16_t ) = 0; virtual uint64_t RequestEncryptedAppTicket( void *, int32_t ) = 0; - virtual bool GetEncryptedAppTicket( void *, int32_t, uint32_t * ) = 0; + virtual int8_t GetEncryptedAppTicket( void *, int32_t, uint32_t * ) = 0; #endif /* __cplusplus */ }; struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 { #ifdef __cplusplus - virtual bool RequestCurrentStats( ) = 0; - virtual bool GetStat( const char *, int32_t * ) = 0; - virtual bool GetStat( const char *, float * ) = 0; - virtual bool SetStat( const char *, int32_t ) = 0; - virtual bool SetStat( const char *, float ) = 0; - virtual bool UpdateAvgRateStat( const char *, float, double ) = 0; - virtual bool GetAchievement( const char *, bool * ) = 0; - virtual bool SetAchievement( const char * ) = 0; - virtual bool ClearAchievement( const char * ) = 0; - virtual bool GetAchievementAndUnlockTime( const char *, bool *, uint32_t * ) = 0; - virtual bool StoreStats( ) = 0; + virtual int8_t RequestCurrentStats( ) = 0; + virtual int8_t GetStat( const char *, int32_t * ) = 0; + virtual int8_t GetStat( const char *, float * ) = 0; + virtual int8_t SetStat( const char *, int32_t ) = 0; + virtual int8_t SetStat( const char *, float ) = 0; + virtual int8_t UpdateAvgRateStat( const char *, float, double ) = 0; + virtual int8_t GetAchievement( const char *, int8_t * ) = 0; + virtual int8_t SetAchievement( const char * ) = 0; + virtual int8_t ClearAchievement( const char * ) = 0; + virtual int8_t GetAchievementAndUnlockTime( const char *, int8_t *, uint32_t * ) = 0; + virtual int8_t StoreStats( ) = 0; virtual int32_t GetAchievementIcon( const char * ) = 0; virtual const char * GetAchievementDisplayAttribute( const char *, const char * ) = 0; - virtual bool IndicateAchievementProgress( const char *, uint32_t, uint32_t ) = 0; + virtual int8_t IndicateAchievementProgress( const char *, uint32_t, uint32_t ) = 0; virtual uint64_t RequestUserStats( CSteamID ) = 0; - virtual bool GetUserStat( CSteamID, const char *, int32_t * ) = 0; - virtual bool GetUserStat( CSteamID, const char *, float * ) = 0; - virtual bool GetUserAchievement( CSteamID, const char *, bool * ) = 0; - virtual bool GetUserAchievementAndUnlockTime( CSteamID, const char *, bool *, uint32_t * ) = 0; - virtual bool ResetAllStats( bool ) = 0; + virtual int8_t GetUserStat( CSteamID, const char *, int32_t * ) = 0; + virtual int8_t GetUserStat( CSteamID, const char *, float * ) = 0; + virtual int8_t GetUserAchievement( CSteamID, const char *, int8_t * ) = 0; + virtual int8_t GetUserAchievementAndUnlockTime( CSteamID, const char *, int8_t *, uint32_t * ) = 0; + virtual int8_t ResetAllStats( int8_t ) = 0; virtual uint64_t FindOrCreateLeaderboard( const char *, uint32_t, uint32_t ) = 0; virtual uint64_t FindLeaderboard( const char * ) = 0; virtual const char * GetLeaderboardName( uint64_t ) = 0; @@ -1934,17 +1934,17 @@ struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 virtual uint32_t GetLeaderboardDisplayType( uint64_t ) = 0; virtual uint64_t DownloadLeaderboardEntries( uint64_t, uint32_t, int32_t, int32_t ) = 0; virtual uint64_t DownloadLeaderboardEntriesForUsers( uint64_t, CSteamID *, int32_t ) = 0; - virtual bool GetDownloadedLeaderboardEntry( uint64_t, int32_t, u_LeaderboardEntry_t_111x *, int32_t *, int32_t ) = 0; + virtual int8_t GetDownloadedLeaderboardEntry( uint64_t, int32_t, u_LeaderboardEntry_t_111x *, int32_t *, int32_t ) = 0; virtual uint64_t UploadLeaderboardScore( uint64_t, uint32_t, int32_t, const int32_t *, int32_t ) = 0; virtual uint64_t AttachLeaderboardUGC( uint64_t, uint64_t ) = 0; virtual uint64_t GetNumberOfCurrentPlayers( ) = 0; virtual uint64_t RequestGlobalAchievementPercentages( ) = 0; - virtual int32_t GetMostAchievedAchievementInfo( char *, uint32_t, float *, bool * ) = 0; - virtual int32_t GetNextMostAchievedAchievementInfo( int32_t, char *, uint32_t, float *, bool * ) = 0; - virtual bool GetAchievementAchievedPercent( const char *, float * ) = 0; + virtual int32_t GetMostAchievedAchievementInfo( char *, uint32_t, float *, int8_t * ) = 0; + virtual int32_t GetNextMostAchievedAchievementInfo( int32_t, char *, uint32_t, float *, int8_t * ) = 0; + virtual int8_t GetAchievementAchievedPercent( const char *, float * ) = 0; virtual uint64_t RequestGlobalStats( int32_t ) = 0; - virtual bool GetGlobalStat( const char *, int64_t * ) = 0; - virtual bool GetGlobalStat( const char *, double * ) = 0; + virtual int8_t GetGlobalStat( const char *, int64_t * ) = 0; + virtual int8_t GetGlobalStat( const char *, double * ) = 0; virtual int32_t GetGlobalStatHistory( const char *, int64_t *, uint32_t ) = 0; virtual int32_t GetGlobalStatHistory( const char *, double *, uint32_t ) = 0; #endif /* __cplusplus */ @@ -1954,20 +1954,20 @@ struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 { #ifdef __cplusplus virtual uint32_t CreateHTTPRequest( uint32_t, const char * ) = 0; - virtual bool SetHTTPRequestContextValue( uint32_t, uint64_t ) = 0; - virtual bool SetHTTPRequestNetworkActivityTimeout( uint32_t, uint32_t ) = 0; - virtual bool SetHTTPRequestHeaderValue( uint32_t, const char *, const char * ) = 0; - virtual bool SetHTTPRequestGetOrPostParameter( uint32_t, const char *, const char * ) = 0; - virtual bool SendHTTPRequest( uint32_t, uint64_t * ) = 0; - virtual bool DeferHTTPRequest( uint32_t ) = 0; - virtual bool PrioritizeHTTPRequest( uint32_t ) = 0; - virtual bool GetHTTPResponseHeaderSize( uint32_t, const char *, uint32_t * ) = 0; - virtual bool GetHTTPResponseHeaderValue( uint32_t, const char *, uint8_t *, uint32_t ) = 0; - virtual bool GetHTTPResponseBodySize( uint32_t, uint32_t * ) = 0; - virtual bool GetHTTPResponseBodyData( uint32_t, uint8_t *, uint32_t ) = 0; - virtual bool ReleaseHTTPRequest( uint32_t ) = 0; - virtual bool GetHTTPDownloadProgressPct( uint32_t, float * ) = 0; - virtual bool SetHTTPRequestRawPostBody( uint32_t, const char *, uint8_t *, uint32_t ) = 0; + virtual int8_t SetHTTPRequestContextValue( uint32_t, uint64_t ) = 0; + virtual int8_t SetHTTPRequestNetworkActivityTimeout( uint32_t, uint32_t ) = 0; + virtual int8_t SetHTTPRequestHeaderValue( uint32_t, const char *, const char * ) = 0; + virtual int8_t SetHTTPRequestGetOrPostParameter( uint32_t, const char *, const char * ) = 0; + virtual int8_t SendHTTPRequest( uint32_t, uint64_t * ) = 0; + virtual int8_t DeferHTTPRequest( uint32_t ) = 0; + virtual int8_t PrioritizeHTTPRequest( uint32_t ) = 0; + virtual int8_t GetHTTPResponseHeaderSize( uint32_t, const char *, uint32_t * ) = 0; + virtual int8_t GetHTTPResponseHeaderValue( uint32_t, const char *, uint8_t *, uint32_t ) = 0; + virtual int8_t GetHTTPResponseBodySize( uint32_t, uint32_t * ) = 0; + virtual int8_t GetHTTPResponseBodyData( uint32_t, uint8_t *, uint32_t ) = 0; + virtual int8_t ReleaseHTTPRequest( uint32_t ) = 0; + virtual int8_t GetHTTPDownloadProgressPct( uint32_t, float * ) = 0; + virtual int8_t SetHTTPRequestRawPostBody( uint32_t, const char *, uint8_t *, uint32_t ) = 0; #endif /* __cplusplus */ }; @@ -1975,7 +1975,7 @@ struct u_ISteamClient_SteamClient011 { #ifdef __cplusplus virtual int32_t CreateSteamPipe( ) = 0; - virtual bool BReleaseSteamPipe( int32_t ) = 0; + virtual int8_t BReleaseSteamPipe( int32_t ) = 0; virtual int32_t ConnectToGlobalUser( int32_t ) = 0; virtual int32_t CreateLocalUser( int32_t *, uint32_t ) = 0; virtual void ReleaseUser( int32_t, int32_t ) = 0; @@ -1997,7 +1997,7 @@ struct u_ISteamClient_SteamClient011 virtual void RunFrame( ) = 0; virtual uint32_t GetIPCCallCount( ) = 0; virtual void SetWarningMessageHook( void (*U_CDECL )(int32_t, const char *) ) = 0; - virtual bool BShutdownIfAllPipesClosed( ) = 0; + virtual int8_t BShutdownIfAllPipesClosed( ) = 0; virtual void /*ISteamHTTP*/ * GetISteamHTTP( int32_t, int32_t, const char * ) = 0; #endif /* __cplusplus */ }; @@ -2008,9 +2008,9 @@ struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001 virtual uint32_t WriteScreenshot( void *, uint32_t, int32_t, int32_t ) = 0; virtual uint32_t AddScreenshotToLibrary( const char *, const char *, int32_t, int32_t ) = 0; virtual void TriggerScreenshot( ) = 0; - virtual void HookScreenshots( bool ) = 0; - virtual bool SetLocation( uint32_t, const char * ) = 0; - virtual bool TagUser( uint32_t, CSteamID ) = 0; + virtual void HookScreenshots( int8_t ) = 0; + virtual int8_t SetLocation( uint32_t, const char * ) = 0; + virtual int8_t TagUser( uint32_t, CSteamID ) = 0; #endif /* __cplusplus */ }; @@ -2018,7 +2018,7 @@ struct u_ISteamClient_SteamClient012 { #ifdef __cplusplus virtual int32_t CreateSteamPipe( ) = 0; - virtual bool BReleaseSteamPipe( int32_t ) = 0; + virtual int8_t BReleaseSteamPipe( int32_t ) = 0; virtual int32_t ConnectToGlobalUser( int32_t ) = 0; virtual int32_t CreateLocalUser( int32_t *, uint32_t ) = 0; virtual void ReleaseUser( int32_t, int32_t ) = 0; @@ -2039,7 +2039,7 @@ struct u_ISteamClient_SteamClient012 virtual void RunFrame( ) = 0; virtual uint32_t GetIPCCallCount( ) = 0; virtual void SetWarningMessageHook( void (*U_CDECL )(int32_t, const char *) ) = 0; - virtual bool BShutdownIfAllPipesClosed( ) = 0; + virtual int8_t BShutdownIfAllPipesClosed( ) = 0; virtual void /*ISteamHTTP*/ * GetISteamHTTP( int32_t, int32_t, const char * ) = 0; virtual void /*ISteamUnifiedMessages*/ * GetISteamUnifiedMessages( int32_t, int32_t, const char * ) = 0; virtual void /*ISteamController*/ * GetISteamController( int32_t, int32_t, const char * ) = 0; @@ -2058,19 +2058,19 @@ struct u_ISteamFriends_SteamFriends010 virtual uint32_t GetFriendRelationship( CSteamID ) = 0; virtual uint32_t GetFriendPersonaState( CSteamID ) = 0; virtual const char * GetFriendPersonaName( CSteamID ) = 0; - virtual bool GetFriendGamePlayed( CSteamID, FriendGameInfo_t * ) = 0; + virtual int8_t GetFriendGamePlayed( CSteamID, FriendGameInfo_t * ) = 0; virtual const char * GetFriendPersonaNameHistory( CSteamID, int32_t ) = 0; - virtual bool HasFriend( CSteamID, int32_t ) = 0; + virtual int8_t HasFriend( CSteamID, int32_t ) = 0; virtual int32_t GetClanCount( ) = 0; virtual CSteamID GetClanByIndex( int32_t ) = 0; virtual const char * GetClanName( CSteamID ) = 0; virtual const char * GetClanTag( CSteamID ) = 0; - virtual bool GetClanActivityCounts( CSteamID, int32_t *, int32_t *, int32_t * ) = 0; + virtual int8_t GetClanActivityCounts( CSteamID, int32_t *, int32_t *, int32_t * ) = 0; virtual uint64_t DownloadClanActivityCounts( CSteamID *, int32_t ) = 0; virtual int32_t GetFriendCountFromSource( CSteamID ) = 0; virtual CSteamID GetFriendFromSourceByIndex( CSteamID, int32_t ) = 0; - virtual bool IsUserInSource( CSteamID, CSteamID ) = 0; - virtual void SetInGameVoiceSpeaking( CSteamID, bool ) = 0; + virtual int8_t IsUserInSource( CSteamID, CSteamID ) = 0; + virtual void SetInGameVoiceSpeaking( CSteamID, int8_t ) = 0; virtual void ActivateGameOverlay( const char * ) = 0; virtual void ActivateGameOverlayToUser( const char *, CSteamID ) = 0; virtual void ActivateGameOverlayToWebPage( const char * ) = 0; @@ -2080,34 +2080,34 @@ struct u_ISteamFriends_SteamFriends010 virtual int32_t GetSmallFriendAvatar( CSteamID ) = 0; virtual int32_t GetMediumFriendAvatar( CSteamID ) = 0; virtual int32_t GetLargeFriendAvatar( CSteamID ) = 0; - virtual bool RequestUserInformation( CSteamID, bool ) = 0; + virtual int8_t RequestUserInformation( CSteamID, int8_t ) = 0; virtual uint64_t RequestClanOfficerList( CSteamID ) = 0; virtual CSteamID GetClanOwner( CSteamID ) = 0; virtual int32_t GetClanOfficerCount( CSteamID ) = 0; virtual CSteamID GetClanOfficerByIndex( CSteamID, int32_t ) = 0; virtual uint32_t GetUserRestrictions( ) = 0; - virtual bool SetRichPresence( const char *, const char * ) = 0; + virtual int8_t SetRichPresence( const char *, const char * ) = 0; virtual void ClearRichPresence( ) = 0; virtual const char * GetFriendRichPresence( CSteamID, const char * ) = 0; virtual int32_t GetFriendRichPresenceKeyCount( CSteamID ) = 0; virtual const char * GetFriendRichPresenceKeyByIndex( CSteamID, int32_t ) = 0; - virtual bool InviteUserToGame( CSteamID, const char * ) = 0; + virtual int8_t InviteUserToGame( CSteamID, const char * ) = 0; virtual int32_t GetCoplayFriendCount( ) = 0; virtual CSteamID GetCoplayFriend( int32_t ) = 0; virtual int32_t GetFriendCoplayTime( CSteamID ) = 0; virtual uint32_t GetFriendCoplayGame( CSteamID ) = 0; virtual uint64_t JoinClanChatRoom( CSteamID ) = 0; - virtual bool LeaveClanChatRoom( CSteamID ) = 0; + virtual int8_t LeaveClanChatRoom( CSteamID ) = 0; virtual int32_t GetClanChatMemberCount( CSteamID ) = 0; virtual CSteamID GetChatMemberByIndex( CSteamID, int32_t ) = 0; - virtual bool SendClanChatMessage( CSteamID, const char * ) = 0; + virtual int8_t SendClanChatMessage( CSteamID, const char * ) = 0; virtual int32_t GetClanChatMessage( CSteamID, int32_t, void *, int32_t, uint32_t *, CSteamID * ) = 0; - virtual bool IsClanChatAdmin( CSteamID, CSteamID ) = 0; - virtual bool IsClanChatWindowOpenInSteam( CSteamID ) = 0; - virtual bool OpenClanChatWindowInSteam( CSteamID ) = 0; - virtual bool CloseClanChatWindowInSteam( CSteamID ) = 0; - virtual bool SetListenForFriendsMessages( bool ) = 0; - virtual bool ReplyToFriendMessage( CSteamID, const char * ) = 0; + virtual int8_t IsClanChatAdmin( CSteamID, CSteamID ) = 0; + virtual int8_t IsClanChatWindowOpenInSteam( CSteamID ) = 0; + virtual int8_t OpenClanChatWindowInSteam( CSteamID ) = 0; + virtual int8_t CloseClanChatWindowInSteam( CSteamID ) = 0; + virtual int8_t SetListenForFriendsMessages( int8_t ) = 0; + virtual int8_t ReplyToFriendMessage( CSteamID, const char * ) = 0; virtual int32_t GetFriendMessage( CSteamID, int32_t, void *, int32_t, uint32_t * ) = 0; #endif /* __cplusplus */ }; @@ -2116,9 +2116,9 @@ struct u_ISteamMatchmaking_SteamMatchMaking009 { #ifdef __cplusplus virtual int32_t GetFavoriteGameCount( ) = 0; - virtual bool GetFavoriteGame( int32_t, uint32_t *, uint32_t *, uint16_t *, uint16_t *, uint32_t *, uint32_t * ) = 0; + virtual int8_t GetFavoriteGame( int32_t, uint32_t *, uint32_t *, uint16_t *, uint16_t *, uint32_t *, uint32_t * ) = 0; virtual int32_t AddFavoriteGame( uint32_t, uint32_t, uint16_t, uint16_t, uint32_t, uint32_t ) = 0; - virtual bool RemoveFavoriteGame( uint32_t, uint32_t, uint16_t, uint16_t, uint32_t ) = 0; + virtual int8_t RemoveFavoriteGame( uint32_t, uint32_t, uint16_t, uint16_t, uint32_t ) = 0; virtual uint64_t RequestLobbyList( ) = 0; virtual void AddRequestLobbyListStringFilter( const char *, const char *, uint32_t ) = 0; virtual void AddRequestLobbyListNumericalFilter( const char *, int32_t, uint32_t ) = 0; @@ -2131,53 +2131,53 @@ struct u_ISteamMatchmaking_SteamMatchMaking009 virtual uint64_t CreateLobby( uint32_t, int32_t ) = 0; virtual uint64_t JoinLobby( CSteamID ) = 0; virtual void LeaveLobby( CSteamID ) = 0; - virtual bool InviteUserToLobby( CSteamID, CSteamID ) = 0; + virtual int8_t InviteUserToLobby( CSteamID, CSteamID ) = 0; virtual int32_t GetNumLobbyMembers( CSteamID ) = 0; virtual CSteamID GetLobbyMemberByIndex( CSteamID, int32_t ) = 0; virtual const char * GetLobbyData( CSteamID, const char * ) = 0; - virtual bool SetLobbyData( CSteamID, const char *, const char * ) = 0; + virtual int8_t SetLobbyData( CSteamID, const char *, const char * ) = 0; virtual int32_t GetLobbyDataCount( CSteamID ) = 0; - virtual bool GetLobbyDataByIndex( CSteamID, int32_t, char *, int32_t, char *, int32_t ) = 0; - virtual bool DeleteLobbyData( CSteamID, const char * ) = 0; + virtual int8_t GetLobbyDataByIndex( CSteamID, int32_t, char *, int32_t, char *, int32_t ) = 0; + virtual int8_t DeleteLobbyData( CSteamID, const char * ) = 0; virtual const char * GetLobbyMemberData( CSteamID, CSteamID, const char * ) = 0; virtual void SetLobbyMemberData( CSteamID, const char *, const char * ) = 0; - virtual bool SendLobbyChatMsg( CSteamID, const void *, int32_t ) = 0; + virtual int8_t SendLobbyChatMsg( CSteamID, const void *, int32_t ) = 0; virtual int32_t GetLobbyChatEntry( CSteamID, int32_t, CSteamID *, void *, int32_t, uint32_t * ) = 0; - virtual bool RequestLobbyData( CSteamID ) = 0; + virtual int8_t RequestLobbyData( CSteamID ) = 0; virtual void SetLobbyGameServer( CSteamID, uint32_t, uint16_t, CSteamID ) = 0; - virtual bool GetLobbyGameServer( CSteamID, uint32_t *, uint16_t *, CSteamID * ) = 0; - virtual bool SetLobbyMemberLimit( CSteamID, int32_t ) = 0; + virtual int8_t GetLobbyGameServer( CSteamID, uint32_t *, uint16_t *, CSteamID * ) = 0; + virtual int8_t SetLobbyMemberLimit( CSteamID, int32_t ) = 0; virtual int32_t GetLobbyMemberLimit( CSteamID ) = 0; - virtual bool SetLobbyType( CSteamID, uint32_t ) = 0; - virtual bool SetLobbyJoinable( CSteamID, bool ) = 0; + virtual int8_t SetLobbyType( CSteamID, uint32_t ) = 0; + virtual int8_t SetLobbyJoinable( CSteamID, int8_t ) = 0; virtual CSteamID GetLobbyOwner( CSteamID ) = 0; - virtual bool SetLobbyOwner( CSteamID, CSteamID ) = 0; - virtual bool SetLinkedLobby( CSteamID, CSteamID ) = 0; + virtual int8_t SetLobbyOwner( CSteamID, CSteamID ) = 0; + virtual int8_t SetLinkedLobby( CSteamID, CSteamID ) = 0; #endif /* __cplusplus */ }; struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 { #ifdef __cplusplus - virtual bool FileWrite( const char *, const void *, int32_t ) = 0; + virtual int8_t FileWrite( const char *, const void *, int32_t ) = 0; virtual int32_t FileRead( const char *, void *, int32_t ) = 0; - virtual bool FileForget( const char * ) = 0; - virtual bool FileDelete( const char * ) = 0; + virtual int8_t FileForget( const char * ) = 0; + virtual int8_t FileDelete( const char * ) = 0; virtual uint64_t FileShare( const char * ) = 0; - virtual bool SetSyncPlatforms( const char *, uint32_t ) = 0; - virtual bool FileExists( const char * ) = 0; - virtual bool FilePersisted( const char * ) = 0; + virtual int8_t SetSyncPlatforms( const char *, uint32_t ) = 0; + virtual int8_t FileExists( const char * ) = 0; + virtual int8_t FilePersisted( const char * ) = 0; virtual int32_t GetFileSize( const char * ) = 0; virtual int64_t GetFileTimestamp( const char * ) = 0; virtual uint32_t GetSyncPlatforms( const char * ) = 0; virtual int32_t GetFileCount( ) = 0; virtual const char * GetFileNameAndSize( int32_t, int32_t * ) = 0; - virtual bool GetQuota( int32_t *, int32_t * ) = 0; - virtual bool IsCloudEnabledForAccount( ) = 0; - virtual bool IsCloudEnabledForApp( ) = 0; - virtual void SetCloudEnabledForApp( bool ) = 0; + virtual int8_t GetQuota( int32_t *, int32_t * ) = 0; + virtual int8_t IsCloudEnabledForAccount( ) = 0; + virtual int8_t IsCloudEnabledForApp( ) = 0; + virtual void SetCloudEnabledForApp( int8_t ) = 0; virtual uint64_t UGCDownload( uint64_t ) = 0; - virtual bool GetUGCDetails( uint64_t, uint32_t *, char **, int32_t *, CSteamID * ) = 0; + virtual int8_t GetUGCDetails( uint64_t, uint32_t *, char **, int32_t *, CSteamID * ) = 0; virtual int32_t UGCRead( uint64_t, void *, int32_t ) = 0; virtual int32_t GetCachedUGCCount( ) = 0; virtual uint64_t GetCachedUGCHandle( int32_t ) = 0; @@ -2196,23 +2196,23 @@ struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 struct u_ISteamGameServer_SteamGameServer011 { #ifdef __cplusplus - virtual bool InitGameServer( uint32_t, uint16_t, uint16_t, uint32_t, uint32_t, const char * ) = 0; + virtual int8_t InitGameServer( uint32_t, uint16_t, uint16_t, uint32_t, uint32_t, const char * ) = 0; virtual void SetProduct( const char * ) = 0; virtual void SetGameDescription( const char * ) = 0; virtual void SetModDir( const char * ) = 0; - virtual void SetDedicatedServer( bool ) = 0; + virtual void SetDedicatedServer( int8_t ) = 0; virtual void LogOn( const char *, const char * ) = 0; virtual void LogOnAnonymous( ) = 0; virtual void LogOff( ) = 0; - virtual bool BLoggedOn( ) = 0; - virtual bool BSecure( ) = 0; + virtual int8_t BLoggedOn( ) = 0; + virtual int8_t BSecure( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual bool WasRestartRequested( ) = 0; + virtual int8_t WasRestartRequested( ) = 0; virtual void SetMaxPlayerCount( int32_t ) = 0; virtual void SetBotPlayerCount( int32_t ) = 0; virtual void SetServerName( const char * ) = 0; virtual void SetMapName( const char * ) = 0; - virtual void SetPasswordProtected( bool ) = 0; + virtual void SetPasswordProtected( int8_t ) = 0; virtual void SetSpectatorPort( uint16_t ) = 0; virtual void SetSpectatorServerName( const char * ) = 0; virtual void ClearAllKeyValues( ) = 0; @@ -2220,22 +2220,22 @@ struct u_ISteamGameServer_SteamGameServer011 virtual void SetGameTags( const char * ) = 0; virtual void SetGameData( const char * ) = 0; virtual void SetRegion( const char * ) = 0; - virtual bool SendUserConnectAndAuthenticate( uint32_t, const void *, uint32_t, CSteamID * ) = 0; + virtual int8_t SendUserConnectAndAuthenticate( uint32_t, const void *, uint32_t, CSteamID * ) = 0; virtual CSteamID CreateUnauthenticatedUserConnection( ) = 0; virtual void SendUserDisconnect( CSteamID ) = 0; - virtual bool BUpdateUserData( CSteamID, const char *, uint32_t ) = 0; + virtual int8_t BUpdateUserData( CSteamID, const char *, uint32_t ) = 0; virtual uint32_t GetAuthSessionTicket( void *, int32_t, uint32_t * ) = 0; virtual uint32_t BeginAuthSession( const void *, int32_t, CSteamID ) = 0; virtual void EndAuthSession( CSteamID ) = 0; virtual void CancelAuthTicket( uint32_t ) = 0; virtual uint32_t UserHasLicenseForApp( CSteamID, uint32_t ) = 0; - virtual bool RequestUserGroupStatus( CSteamID, CSteamID ) = 0; + virtual int8_t RequestUserGroupStatus( CSteamID, CSteamID ) = 0; virtual void GetGameplayStats( ) = 0; virtual uint64_t GetServerReputation( ) = 0; virtual uint32_t GetPublicIP( ) = 0; - virtual bool HandleIncomingPacket( const void *, int32_t, uint32_t, uint16_t ) = 0; + virtual int8_t HandleIncomingPacket( const void *, int32_t, uint32_t, uint16_t ) = 0; virtual int32_t GetNextOutgoingPacket( void *, int32_t, uint32_t *, uint16_t * ) = 0; - virtual void EnableHeartbeats( bool ) = 0; + virtual void EnableHeartbeats( int8_t ) = 0; virtual void SetHeartbeatInterval( int32_t ) = 0; virtual void ForceHeartbeat( ) = 0; virtual uint64_t AssociateWithClan( CSteamID ) = 0; @@ -2254,19 +2254,19 @@ struct u_ISteamFriends_SteamFriends011 virtual uint32_t GetFriendRelationship( CSteamID ) = 0; virtual uint32_t GetFriendPersonaState( CSteamID ) = 0; virtual const char * GetFriendPersonaName( CSteamID ) = 0; - virtual bool GetFriendGamePlayed( CSteamID, FriendGameInfo_t * ) = 0; + virtual int8_t GetFriendGamePlayed( CSteamID, FriendGameInfo_t * ) = 0; virtual const char * GetFriendPersonaNameHistory( CSteamID, int32_t ) = 0; - virtual bool HasFriend( CSteamID, int32_t ) = 0; + virtual int8_t HasFriend( CSteamID, int32_t ) = 0; virtual int32_t GetClanCount( ) = 0; virtual CSteamID GetClanByIndex( int32_t ) = 0; virtual const char * GetClanName( CSteamID ) = 0; virtual const char * GetClanTag( CSteamID ) = 0; - virtual bool GetClanActivityCounts( CSteamID, int32_t *, int32_t *, int32_t * ) = 0; + virtual int8_t GetClanActivityCounts( CSteamID, int32_t *, int32_t *, int32_t * ) = 0; virtual uint64_t DownloadClanActivityCounts( CSteamID *, int32_t ) = 0; virtual int32_t GetFriendCountFromSource( CSteamID ) = 0; virtual CSteamID GetFriendFromSourceByIndex( CSteamID, int32_t ) = 0; - virtual bool IsUserInSource( CSteamID, CSteamID ) = 0; - virtual void SetInGameVoiceSpeaking( CSteamID, bool ) = 0; + virtual int8_t IsUserInSource( CSteamID, CSteamID ) = 0; + virtual void SetInGameVoiceSpeaking( CSteamID, int8_t ) = 0; virtual void ActivateGameOverlay( const char * ) = 0; virtual void ActivateGameOverlayToUser( const char *, CSteamID ) = 0; virtual void ActivateGameOverlayToWebPage( const char * ) = 0; @@ -2276,35 +2276,35 @@ struct u_ISteamFriends_SteamFriends011 virtual int32_t GetSmallFriendAvatar( CSteamID ) = 0; virtual int32_t GetMediumFriendAvatar( CSteamID ) = 0; virtual int32_t GetLargeFriendAvatar( CSteamID ) = 0; - virtual bool RequestUserInformation( CSteamID, bool ) = 0; + virtual int8_t RequestUserInformation( CSteamID, int8_t ) = 0; virtual uint64_t RequestClanOfficerList( CSteamID ) = 0; virtual CSteamID GetClanOwner( CSteamID ) = 0; virtual int32_t GetClanOfficerCount( CSteamID ) = 0; virtual CSteamID GetClanOfficerByIndex( CSteamID, int32_t ) = 0; virtual uint32_t GetUserRestrictions( ) = 0; - virtual bool SetRichPresence( const char *, const char * ) = 0; + virtual int8_t SetRichPresence( const char *, const char * ) = 0; virtual void ClearRichPresence( ) = 0; virtual const char * GetFriendRichPresence( CSteamID, const char * ) = 0; virtual int32_t GetFriendRichPresenceKeyCount( CSteamID ) = 0; virtual const char * GetFriendRichPresenceKeyByIndex( CSteamID, int32_t ) = 0; virtual void RequestFriendRichPresence( CSteamID ) = 0; - virtual bool InviteUserToGame( CSteamID, const char * ) = 0; + virtual int8_t InviteUserToGame( CSteamID, const char * ) = 0; virtual int32_t GetCoplayFriendCount( ) = 0; virtual CSteamID GetCoplayFriend( int32_t ) = 0; virtual int32_t GetFriendCoplayTime( CSteamID ) = 0; virtual uint32_t GetFriendCoplayGame( CSteamID ) = 0; virtual uint64_t JoinClanChatRoom( CSteamID ) = 0; - virtual bool LeaveClanChatRoom( CSteamID ) = 0; + virtual int8_t LeaveClanChatRoom( CSteamID ) = 0; virtual int32_t GetClanChatMemberCount( CSteamID ) = 0; virtual CSteamID GetChatMemberByIndex( CSteamID, int32_t ) = 0; - virtual bool SendClanChatMessage( CSteamID, const char * ) = 0; + virtual int8_t SendClanChatMessage( CSteamID, const char * ) = 0; virtual int32_t GetClanChatMessage( CSteamID, int32_t, void *, int32_t, uint32_t *, CSteamID * ) = 0; - virtual bool IsClanChatAdmin( CSteamID, CSteamID ) = 0; - virtual bool IsClanChatWindowOpenInSteam( CSteamID ) = 0; - virtual bool OpenClanChatWindowInSteam( CSteamID ) = 0; - virtual bool CloseClanChatWindowInSteam( CSteamID ) = 0; - virtual bool SetListenForFriendsMessages( bool ) = 0; - virtual bool ReplyToFriendMessage( CSteamID, const char * ) = 0; + virtual int8_t IsClanChatAdmin( CSteamID, CSteamID ) = 0; + virtual int8_t IsClanChatWindowOpenInSteam( CSteamID ) = 0; + virtual int8_t OpenClanChatWindowInSteam( CSteamID ) = 0; + virtual int8_t CloseClanChatWindowInSteam( CSteamID ) = 0; + virtual int8_t SetListenForFriendsMessages( int8_t ) = 0; + virtual int8_t ReplyToFriendMessage( CSteamID, const char * ) = 0; virtual int32_t GetFriendMessage( CSteamID, int32_t, void *, int32_t, uint32_t * ) = 0; virtual uint64_t GetFollowerCount( CSteamID ) = 0; virtual uint64_t IsFollowing( CSteamID ) = 0; @@ -2315,37 +2315,37 @@ struct u_ISteamFriends_SteamFriends011 struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 { #ifdef __cplusplus - virtual bool FileWrite( const char *, const void *, int32_t ) = 0; + virtual int8_t FileWrite( const char *, const void *, int32_t ) = 0; virtual int32_t FileRead( const char *, void *, int32_t ) = 0; - virtual bool FileForget( const char * ) = 0; - virtual bool FileDelete( const char * ) = 0; + virtual int8_t FileForget( const char * ) = 0; + virtual int8_t FileDelete( const char * ) = 0; virtual uint64_t FileShare( const char * ) = 0; - virtual bool SetSyncPlatforms( const char *, uint32_t ) = 0; - virtual bool FileExists( const char * ) = 0; - virtual bool FilePersisted( const char * ) = 0; + virtual int8_t SetSyncPlatforms( const char *, uint32_t ) = 0; + virtual int8_t FileExists( const char * ) = 0; + virtual int8_t FilePersisted( const char * ) = 0; virtual int32_t GetFileSize( const char * ) = 0; virtual int64_t GetFileTimestamp( const char * ) = 0; virtual uint32_t GetSyncPlatforms( const char * ) = 0; virtual int32_t GetFileCount( ) = 0; virtual const char * GetFileNameAndSize( int32_t, int32_t * ) = 0; - virtual bool GetQuota( int32_t *, int32_t * ) = 0; - virtual bool IsCloudEnabledForAccount( ) = 0; - virtual bool IsCloudEnabledForApp( ) = 0; - virtual void SetCloudEnabledForApp( bool ) = 0; + virtual int8_t GetQuota( int32_t *, int32_t * ) = 0; + virtual int8_t IsCloudEnabledForAccount( ) = 0; + virtual int8_t IsCloudEnabledForApp( ) = 0; + virtual void SetCloudEnabledForApp( int8_t ) = 0; virtual uint64_t UGCDownload( uint64_t ) = 0; - virtual bool GetUGCDownloadProgress( uint64_t, int32_t *, int32_t * ) = 0; - virtual bool GetUGCDetails( uint64_t, uint32_t *, char **, int32_t *, CSteamID * ) = 0; + virtual int8_t GetUGCDownloadProgress( uint64_t, int32_t *, int32_t * ) = 0; + virtual int8_t GetUGCDetails( uint64_t, uint32_t *, char **, int32_t *, CSteamID * ) = 0; virtual int32_t UGCRead( uint64_t, void *, int32_t ) = 0; virtual int32_t GetCachedUGCCount( ) = 0; virtual uint64_t GetCachedUGCHandle( int32_t ) = 0; virtual uint64_t PublishWorkshopFile( const char *, const char *, uint32_t, const char *, const char *, uint32_t, u_SteamParamStringArray_t *, uint32_t ) = 0; virtual uint64_t CreatePublishedFileUpdateRequest( uint64_t ) = 0; - virtual bool UpdatePublishedFileFile( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFilePreviewFile( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFileTitle( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFileDescription( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFileVisibility( uint64_t, uint32_t ) = 0; - virtual bool UpdatePublishedFileTags( uint64_t, u_SteamParamStringArray_t * ) = 0; + virtual int8_t UpdatePublishedFileFile( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFilePreviewFile( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileTitle( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileDescription( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileVisibility( uint64_t, uint32_t ) = 0; + virtual int8_t UpdatePublishedFileTags( uint64_t, u_SteamParamStringArray_t * ) = 0; virtual uint64_t CommitPublishedFileUpdate( uint64_t ) = 0; virtual uint64_t GetPublishedFileDetails( uint64_t ) = 0; virtual uint64_t DeletePublishedFile( uint64_t ) = 0; @@ -2353,9 +2353,9 @@ struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 virtual uint64_t SubscribePublishedFile( uint64_t ) = 0; virtual uint64_t EnumerateUserSubscribedFiles( uint32_t ) = 0; virtual uint64_t UnsubscribePublishedFile( uint64_t ) = 0; - virtual bool UpdatePublishedFileSetChangeDescription( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileSetChangeDescription( uint64_t, const char * ) = 0; virtual uint64_t GetPublishedItemVoteDetails( uint64_t ) = 0; - virtual uint64_t UpdateUserPublishedItemVote( uint64_t, bool ) = 0; + virtual uint64_t UpdateUserPublishedItemVote( uint64_t, int8_t ) = 0; virtual uint64_t GetUserPublishedItemVoteDetails( uint64_t ) = 0; virtual uint64_t EnumerateUserSharedWorkshopFiles( CSteamID, uint32_t, u_SteamParamStringArray_t *, u_SteamParamStringArray_t * ) = 0; virtual uint64_t PublishVideo( const char *, const char *, uint32_t, const char *, const char *, uint32_t, u_SteamParamStringArray_t * ) = 0; @@ -2368,26 +2368,26 @@ struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 { #ifdef __cplusplus - virtual bool BIsSubscribed( ) = 0; - virtual bool BIsLowViolence( ) = 0; - virtual bool BIsCybercafe( ) = 0; - virtual bool BIsVACBanned( ) = 0; + virtual int8_t BIsSubscribed( ) = 0; + virtual int8_t BIsLowViolence( ) = 0; + virtual int8_t BIsCybercafe( ) = 0; + virtual int8_t BIsVACBanned( ) = 0; virtual const char * GetCurrentGameLanguage( ) = 0; virtual const char * GetAvailableGameLanguages( ) = 0; - virtual bool BIsSubscribedApp( uint32_t ) = 0; - virtual bool BIsDlcInstalled( uint32_t ) = 0; + virtual int8_t BIsSubscribedApp( uint32_t ) = 0; + virtual int8_t BIsDlcInstalled( uint32_t ) = 0; virtual uint32_t GetEarliestPurchaseUnixTime( uint32_t ) = 0; - virtual bool BIsSubscribedFromFreeWeekend( ) = 0; + virtual int8_t BIsSubscribedFromFreeWeekend( ) = 0; virtual int32_t GetDLCCount( ) = 0; - virtual bool BGetDLCDataByIndex( int32_t, uint32_t *, bool *, char *, int32_t ) = 0; + virtual int8_t BGetDLCDataByIndex( int32_t, uint32_t *, int8_t *, char *, int32_t ) = 0; virtual void InstallDLC( uint32_t ) = 0; virtual void UninstallDLC( uint32_t ) = 0; virtual void RequestAppProofOfPurchaseKey( uint32_t ) = 0; - virtual bool GetCurrentBetaName( char *, int32_t ) = 0; - virtual bool MarkContentCorrupt( bool ) = 0; + virtual int8_t GetCurrentBetaName( char *, int32_t ) = 0; + virtual int8_t MarkContentCorrupt( int8_t ) = 0; virtual uint32_t GetInstalledDepots( uint32_t *, uint32_t ) = 0; virtual uint32_t GetAppInstallDir( uint32_t, char *, uint32_t ) = 0; - virtual bool BIsAppInstalled( uint32_t ) = 0; + virtual int8_t BIsAppInstalled( uint32_t ) = 0; #endif /* __cplusplus */ }; @@ -2402,19 +2402,19 @@ struct u_ISteamFriends_SteamFriends012 virtual uint32_t GetFriendRelationship( CSteamID ) = 0; virtual uint32_t GetFriendPersonaState( CSteamID ) = 0; virtual const char * GetFriendPersonaName( CSteamID ) = 0; - virtual bool GetFriendGamePlayed( CSteamID, FriendGameInfo_t * ) = 0; + virtual int8_t GetFriendGamePlayed( CSteamID, FriendGameInfo_t * ) = 0; virtual const char * GetFriendPersonaNameHistory( CSteamID, int32_t ) = 0; - virtual bool HasFriend( CSteamID, int32_t ) = 0; + virtual int8_t HasFriend( CSteamID, int32_t ) = 0; virtual int32_t GetClanCount( ) = 0; virtual CSteamID GetClanByIndex( int32_t ) = 0; virtual const char * GetClanName( CSteamID ) = 0; virtual const char * GetClanTag( CSteamID ) = 0; - virtual bool GetClanActivityCounts( CSteamID, int32_t *, int32_t *, int32_t * ) = 0; + virtual int8_t GetClanActivityCounts( CSteamID, int32_t *, int32_t *, int32_t * ) = 0; virtual uint64_t DownloadClanActivityCounts( CSteamID *, int32_t ) = 0; virtual int32_t GetFriendCountFromSource( CSteamID ) = 0; virtual CSteamID GetFriendFromSourceByIndex( CSteamID, int32_t ) = 0; - virtual bool IsUserInSource( CSteamID, CSteamID ) = 0; - virtual void SetInGameVoiceSpeaking( CSteamID, bool ) = 0; + virtual int8_t IsUserInSource( CSteamID, CSteamID ) = 0; + virtual void SetInGameVoiceSpeaking( CSteamID, int8_t ) = 0; virtual void ActivateGameOverlay( const char * ) = 0; virtual void ActivateGameOverlayToUser( const char *, CSteamID ) = 0; virtual void ActivateGameOverlayToWebPage( const char * ) = 0; @@ -2424,35 +2424,35 @@ struct u_ISteamFriends_SteamFriends012 virtual int32_t GetSmallFriendAvatar( CSteamID ) = 0; virtual int32_t GetMediumFriendAvatar( CSteamID ) = 0; virtual int32_t GetLargeFriendAvatar( CSteamID ) = 0; - virtual bool RequestUserInformation( CSteamID, bool ) = 0; + virtual int8_t RequestUserInformation( CSteamID, int8_t ) = 0; virtual uint64_t RequestClanOfficerList( CSteamID ) = 0; virtual CSteamID GetClanOwner( CSteamID ) = 0; virtual int32_t GetClanOfficerCount( CSteamID ) = 0; virtual CSteamID GetClanOfficerByIndex( CSteamID, int32_t ) = 0; virtual uint32_t GetUserRestrictions( ) = 0; - virtual bool SetRichPresence( const char *, const char * ) = 0; + virtual int8_t SetRichPresence( const char *, const char * ) = 0; virtual void ClearRichPresence( ) = 0; virtual const char * GetFriendRichPresence( CSteamID, const char * ) = 0; virtual int32_t GetFriendRichPresenceKeyCount( CSteamID ) = 0; virtual const char * GetFriendRichPresenceKeyByIndex( CSteamID, int32_t ) = 0; virtual void RequestFriendRichPresence( CSteamID ) = 0; - virtual bool InviteUserToGame( CSteamID, const char * ) = 0; + virtual int8_t InviteUserToGame( CSteamID, const char * ) = 0; virtual int32_t GetCoplayFriendCount( ) = 0; virtual CSteamID GetCoplayFriend( int32_t ) = 0; virtual int32_t GetFriendCoplayTime( CSteamID ) = 0; virtual uint32_t GetFriendCoplayGame( CSteamID ) = 0; virtual uint64_t JoinClanChatRoom( CSteamID ) = 0; - virtual bool LeaveClanChatRoom( CSteamID ) = 0; + virtual int8_t LeaveClanChatRoom( CSteamID ) = 0; virtual int32_t GetClanChatMemberCount( CSteamID ) = 0; virtual CSteamID GetChatMemberByIndex( CSteamID, int32_t ) = 0; - virtual bool SendClanChatMessage( CSteamID, const char * ) = 0; + virtual int8_t SendClanChatMessage( CSteamID, const char * ) = 0; virtual int32_t GetClanChatMessage( CSteamID, int32_t, void *, int32_t, uint32_t *, CSteamID * ) = 0; - virtual bool IsClanChatAdmin( CSteamID, CSteamID ) = 0; - virtual bool IsClanChatWindowOpenInSteam( CSteamID ) = 0; - virtual bool OpenClanChatWindowInSteam( CSteamID ) = 0; - virtual bool CloseClanChatWindowInSteam( CSteamID ) = 0; - virtual bool SetListenForFriendsMessages( bool ) = 0; - virtual bool ReplyToFriendMessage( CSteamID, const char * ) = 0; + virtual int8_t IsClanChatAdmin( CSteamID, CSteamID ) = 0; + virtual int8_t IsClanChatWindowOpenInSteam( CSteamID ) = 0; + virtual int8_t OpenClanChatWindowInSteam( CSteamID ) = 0; + virtual int8_t CloseClanChatWindowInSteam( CSteamID ) = 0; + virtual int8_t SetListenForFriendsMessages( int8_t ) = 0; + virtual int8_t ReplyToFriendMessage( CSteamID, const char * ) = 0; virtual int32_t GetFriendMessage( CSteamID, int32_t, void *, int32_t, uint32_t * ) = 0; virtual uint64_t GetFollowerCount( CSteamID ) = 0; virtual uint64_t IsFollowing( CSteamID ) = 0; @@ -2463,37 +2463,37 @@ struct u_ISteamFriends_SteamFriends012 struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 { #ifdef __cplusplus - virtual bool FileWrite( const char *, const void *, int32_t ) = 0; + virtual int8_t FileWrite( const char *, const void *, int32_t ) = 0; virtual int32_t FileRead( const char *, void *, int32_t ) = 0; - virtual bool FileForget( const char * ) = 0; - virtual bool FileDelete( const char * ) = 0; + virtual int8_t FileForget( const char * ) = 0; + virtual int8_t FileDelete( const char * ) = 0; virtual uint64_t FileShare( const char * ) = 0; - virtual bool SetSyncPlatforms( const char *, uint32_t ) = 0; - virtual bool FileExists( const char * ) = 0; - virtual bool FilePersisted( const char * ) = 0; + virtual int8_t SetSyncPlatforms( const char *, uint32_t ) = 0; + virtual int8_t FileExists( const char * ) = 0; + virtual int8_t FilePersisted( const char * ) = 0; virtual int32_t GetFileSize( const char * ) = 0; virtual int64_t GetFileTimestamp( const char * ) = 0; virtual uint32_t GetSyncPlatforms( const char * ) = 0; virtual int32_t GetFileCount( ) = 0; virtual const char * GetFileNameAndSize( int32_t, int32_t * ) = 0; - virtual bool GetQuota( int32_t *, int32_t * ) = 0; - virtual bool IsCloudEnabledForAccount( ) = 0; - virtual bool IsCloudEnabledForApp( ) = 0; - virtual void SetCloudEnabledForApp( bool ) = 0; + virtual int8_t GetQuota( int32_t *, int32_t * ) = 0; + virtual int8_t IsCloudEnabledForAccount( ) = 0; + virtual int8_t IsCloudEnabledForApp( ) = 0; + virtual void SetCloudEnabledForApp( int8_t ) = 0; virtual uint64_t UGCDownload( uint64_t ) = 0; - virtual bool GetUGCDownloadProgress( uint64_t, int32_t *, int32_t * ) = 0; - virtual bool GetUGCDetails( uint64_t, uint32_t *, char **, int32_t *, CSteamID * ) = 0; + virtual int8_t GetUGCDownloadProgress( uint64_t, int32_t *, int32_t * ) = 0; + virtual int8_t GetUGCDetails( uint64_t, uint32_t *, char **, int32_t *, CSteamID * ) = 0; virtual int32_t UGCRead( uint64_t, void *, int32_t ) = 0; virtual int32_t GetCachedUGCCount( ) = 0; virtual uint64_t GetCachedUGCHandle( int32_t ) = 0; virtual uint64_t PublishWorkshopFile( const char *, const char *, uint32_t, const char *, const char *, uint32_t, u_SteamParamStringArray_t *, uint32_t ) = 0; virtual uint64_t CreatePublishedFileUpdateRequest( uint64_t ) = 0; - virtual bool UpdatePublishedFileFile( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFilePreviewFile( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFileTitle( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFileDescription( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFileVisibility( uint64_t, uint32_t ) = 0; - virtual bool UpdatePublishedFileTags( uint64_t, u_SteamParamStringArray_t * ) = 0; + virtual int8_t UpdatePublishedFileFile( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFilePreviewFile( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileTitle( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileDescription( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileVisibility( uint64_t, uint32_t ) = 0; + virtual int8_t UpdatePublishedFileTags( uint64_t, u_SteamParamStringArray_t * ) = 0; virtual uint64_t CommitPublishedFileUpdate( uint64_t ) = 0; virtual uint64_t GetPublishedFileDetails( uint64_t ) = 0; virtual uint64_t DeletePublishedFile( uint64_t ) = 0; @@ -2501,9 +2501,9 @@ struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 virtual uint64_t SubscribePublishedFile( uint64_t ) = 0; virtual uint64_t EnumerateUserSubscribedFiles( uint32_t ) = 0; virtual uint64_t UnsubscribePublishedFile( uint64_t ) = 0; - virtual bool UpdatePublishedFileSetChangeDescription( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileSetChangeDescription( uint64_t, const char * ) = 0; virtual uint64_t GetPublishedItemVoteDetails( uint64_t ) = 0; - virtual uint64_t UpdateUserPublishedItemVote( uint64_t, bool ) = 0; + virtual uint64_t UpdateUserPublishedItemVote( uint64_t, int8_t ) = 0; virtual uint64_t GetUserPublishedItemVoteDetails( uint64_t ) = 0; virtual uint64_t EnumerateUserSharedWorkshopFiles( CSteamID, uint32_t, u_SteamParamStringArray_t *, u_SteamParamStringArray_t * ) = 0; virtual uint64_t PublishVideo( uint32_t, const char *, const char *, const char *, uint32_t, const char *, const char *, uint32_t, u_SteamParamStringArray_t * ) = 0; @@ -2516,28 +2516,28 @@ struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 { #ifdef __cplusplus - virtual bool RequestCurrentStats( ) = 0; - virtual bool GetStat( const char *, int32_t * ) = 0; - virtual bool GetStat( const char *, float * ) = 0; - virtual bool SetStat( const char *, int32_t ) = 0; - virtual bool SetStat( const char *, float ) = 0; - virtual bool UpdateAvgRateStat( const char *, float, double ) = 0; - virtual bool GetAchievement( const char *, bool * ) = 0; - virtual bool SetAchievement( const char * ) = 0; - virtual bool ClearAchievement( const char * ) = 0; - virtual bool GetAchievementAndUnlockTime( const char *, bool *, uint32_t * ) = 0; - virtual bool StoreStats( ) = 0; + virtual int8_t RequestCurrentStats( ) = 0; + virtual int8_t GetStat( const char *, int32_t * ) = 0; + virtual int8_t GetStat( const char *, float * ) = 0; + virtual int8_t SetStat( const char *, int32_t ) = 0; + virtual int8_t SetStat( const char *, float ) = 0; + virtual int8_t UpdateAvgRateStat( const char *, float, double ) = 0; + virtual int8_t GetAchievement( const char *, int8_t * ) = 0; + virtual int8_t SetAchievement( const char * ) = 0; + virtual int8_t ClearAchievement( const char * ) = 0; + virtual int8_t GetAchievementAndUnlockTime( const char *, int8_t *, uint32_t * ) = 0; + virtual int8_t StoreStats( ) = 0; virtual int32_t GetAchievementIcon( const char * ) = 0; virtual const char * GetAchievementDisplayAttribute( const char *, const char * ) = 0; - virtual bool IndicateAchievementProgress( const char *, uint32_t, uint32_t ) = 0; + virtual int8_t IndicateAchievementProgress( const char *, uint32_t, uint32_t ) = 0; virtual uint32_t GetNumAchievements( ) = 0; virtual const char * GetAchievementName( uint32_t ) = 0; virtual uint64_t RequestUserStats( CSteamID ) = 0; - virtual bool GetUserStat( CSteamID, const char *, int32_t * ) = 0; - virtual bool GetUserStat( CSteamID, const char *, float * ) = 0; - virtual bool GetUserAchievement( CSteamID, const char *, bool * ) = 0; - virtual bool GetUserAchievementAndUnlockTime( CSteamID, const char *, bool *, uint32_t * ) = 0; - virtual bool ResetAllStats( bool ) = 0; + virtual int8_t GetUserStat( CSteamID, const char *, int32_t * ) = 0; + virtual int8_t GetUserStat( CSteamID, const char *, float * ) = 0; + virtual int8_t GetUserAchievement( CSteamID, const char *, int8_t * ) = 0; + virtual int8_t GetUserAchievementAndUnlockTime( CSteamID, const char *, int8_t *, uint32_t * ) = 0; + virtual int8_t ResetAllStats( int8_t ) = 0; virtual uint64_t FindOrCreateLeaderboard( const char *, uint32_t, uint32_t ) = 0; virtual uint64_t FindLeaderboard( const char * ) = 0; virtual const char * GetLeaderboardName( uint64_t ) = 0; @@ -2546,17 +2546,17 @@ struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 virtual uint32_t GetLeaderboardDisplayType( uint64_t ) = 0; virtual uint64_t DownloadLeaderboardEntries( uint64_t, uint32_t, int32_t, int32_t ) = 0; virtual uint64_t DownloadLeaderboardEntriesForUsers( uint64_t, CSteamID *, int32_t ) = 0; - virtual bool GetDownloadedLeaderboardEntry( uint64_t, int32_t, u_LeaderboardEntry_t_123 *, int32_t *, int32_t ) = 0; + virtual int8_t GetDownloadedLeaderboardEntry( uint64_t, int32_t, u_LeaderboardEntry_t_123 *, int32_t *, int32_t ) = 0; virtual uint64_t UploadLeaderboardScore( uint64_t, uint32_t, int32_t, const int32_t *, int32_t ) = 0; virtual uint64_t AttachLeaderboardUGC( uint64_t, uint64_t ) = 0; virtual uint64_t GetNumberOfCurrentPlayers( ) = 0; virtual uint64_t RequestGlobalAchievementPercentages( ) = 0; - virtual int32_t GetMostAchievedAchievementInfo( char *, uint32_t, float *, bool * ) = 0; - virtual int32_t GetNextMostAchievedAchievementInfo( int32_t, char *, uint32_t, float *, bool * ) = 0; - virtual bool GetAchievementAchievedPercent( const char *, float * ) = 0; + virtual int32_t GetMostAchievedAchievementInfo( char *, uint32_t, float *, int8_t * ) = 0; + virtual int32_t GetNextMostAchievedAchievementInfo( int32_t, char *, uint32_t, float *, int8_t * ) = 0; + virtual int8_t GetAchievementAchievedPercent( const char *, float * ) = 0; virtual uint64_t RequestGlobalStats( int32_t ) = 0; - virtual bool GetGlobalStat( const char *, int64_t * ) = 0; - virtual bool GetGlobalStat( const char *, double * ) = 0; + virtual int8_t GetGlobalStat( const char *, int64_t * ) = 0; + virtual int8_t GetGlobalStat( const char *, double * ) = 0; virtual int32_t GetGlobalStatHistory( const char *, int64_t *, uint32_t ) = 0; virtual int32_t GetGlobalStatHistory( const char *, double *, uint32_t ) = 0; #endif /* __cplusplus */ @@ -2573,19 +2573,19 @@ struct u_ISteamFriends_SteamFriends013 virtual uint32_t GetFriendRelationship( CSteamID ) = 0; virtual uint32_t GetFriendPersonaState( CSteamID ) = 0; virtual const char * GetFriendPersonaName( CSteamID ) = 0; - virtual bool GetFriendGamePlayed( CSteamID, FriendGameInfo_t * ) = 0; + virtual int8_t GetFriendGamePlayed( CSteamID, FriendGameInfo_t * ) = 0; virtual const char * GetFriendPersonaNameHistory( CSteamID, int32_t ) = 0; - virtual bool HasFriend( CSteamID, int32_t ) = 0; + virtual int8_t HasFriend( CSteamID, int32_t ) = 0; virtual int32_t GetClanCount( ) = 0; virtual CSteamID GetClanByIndex( int32_t ) = 0; virtual const char * GetClanName( CSteamID ) = 0; virtual const char * GetClanTag( CSteamID ) = 0; - virtual bool GetClanActivityCounts( CSteamID, int32_t *, int32_t *, int32_t * ) = 0; + virtual int8_t GetClanActivityCounts( CSteamID, int32_t *, int32_t *, int32_t * ) = 0; virtual uint64_t DownloadClanActivityCounts( CSteamID *, int32_t ) = 0; virtual int32_t GetFriendCountFromSource( CSteamID ) = 0; virtual CSteamID GetFriendFromSourceByIndex( CSteamID, int32_t ) = 0; - virtual bool IsUserInSource( CSteamID, CSteamID ) = 0; - virtual void SetInGameVoiceSpeaking( CSteamID, bool ) = 0; + virtual int8_t IsUserInSource( CSteamID, CSteamID ) = 0; + virtual void SetInGameVoiceSpeaking( CSteamID, int8_t ) = 0; virtual void ActivateGameOverlay( const char * ) = 0; virtual void ActivateGameOverlayToUser( const char *, CSteamID ) = 0; virtual void ActivateGameOverlayToWebPage( const char * ) = 0; @@ -2595,35 +2595,35 @@ struct u_ISteamFriends_SteamFriends013 virtual int32_t GetSmallFriendAvatar( CSteamID ) = 0; virtual int32_t GetMediumFriendAvatar( CSteamID ) = 0; virtual int32_t GetLargeFriendAvatar( CSteamID ) = 0; - virtual bool RequestUserInformation( CSteamID, bool ) = 0; + virtual int8_t RequestUserInformation( CSteamID, int8_t ) = 0; virtual uint64_t RequestClanOfficerList( CSteamID ) = 0; virtual CSteamID GetClanOwner( CSteamID ) = 0; virtual int32_t GetClanOfficerCount( CSteamID ) = 0; virtual CSteamID GetClanOfficerByIndex( CSteamID, int32_t ) = 0; virtual uint32_t GetUserRestrictions( ) = 0; - virtual bool SetRichPresence( const char *, const char * ) = 0; + virtual int8_t SetRichPresence( const char *, const char * ) = 0; virtual void ClearRichPresence( ) = 0; virtual const char * GetFriendRichPresence( CSteamID, const char * ) = 0; virtual int32_t GetFriendRichPresenceKeyCount( CSteamID ) = 0; virtual const char * GetFriendRichPresenceKeyByIndex( CSteamID, int32_t ) = 0; virtual void RequestFriendRichPresence( CSteamID ) = 0; - virtual bool InviteUserToGame( CSteamID, const char * ) = 0; + virtual int8_t InviteUserToGame( CSteamID, const char * ) = 0; virtual int32_t GetCoplayFriendCount( ) = 0; virtual CSteamID GetCoplayFriend( int32_t ) = 0; virtual int32_t GetFriendCoplayTime( CSteamID ) = 0; virtual uint32_t GetFriendCoplayGame( CSteamID ) = 0; virtual uint64_t JoinClanChatRoom( CSteamID ) = 0; - virtual bool LeaveClanChatRoom( CSteamID ) = 0; + virtual int8_t LeaveClanChatRoom( CSteamID ) = 0; virtual int32_t GetClanChatMemberCount( CSteamID ) = 0; virtual CSteamID GetChatMemberByIndex( CSteamID, int32_t ) = 0; - virtual bool SendClanChatMessage( CSteamID, const char * ) = 0; + virtual int8_t SendClanChatMessage( CSteamID, const char * ) = 0; virtual int32_t GetClanChatMessage( CSteamID, int32_t, void *, int32_t, uint32_t *, CSteamID * ) = 0; - virtual bool IsClanChatAdmin( CSteamID, CSteamID ) = 0; - virtual bool IsClanChatWindowOpenInSteam( CSteamID ) = 0; - virtual bool OpenClanChatWindowInSteam( CSteamID ) = 0; - virtual bool CloseClanChatWindowInSteam( CSteamID ) = 0; - virtual bool SetListenForFriendsMessages( bool ) = 0; - virtual bool ReplyToFriendMessage( CSteamID, const char * ) = 0; + virtual int8_t IsClanChatAdmin( CSteamID, CSteamID ) = 0; + virtual int8_t IsClanChatWindowOpenInSteam( CSteamID ) = 0; + virtual int8_t OpenClanChatWindowInSteam( CSteamID ) = 0; + virtual int8_t CloseClanChatWindowInSteam( CSteamID ) = 0; + virtual int8_t SetListenForFriendsMessages( int8_t ) = 0; + virtual int8_t ReplyToFriendMessage( CSteamID, const char * ) = 0; virtual int32_t GetFriendMessage( CSteamID, int32_t, void *, int32_t, uint32_t * ) = 0; virtual uint64_t GetFollowerCount( CSteamID ) = 0; virtual uint64_t IsFollowing( CSteamID ) = 0; @@ -2634,41 +2634,41 @@ struct u_ISteamFriends_SteamFriends013 struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 { #ifdef __cplusplus - virtual bool FileWrite( const char *, const void *, int32_t ) = 0; + virtual int8_t FileWrite( const char *, const void *, int32_t ) = 0; virtual int32_t FileRead( const char *, void *, int32_t ) = 0; - virtual bool FileForget( const char * ) = 0; - virtual bool FileDelete( const char * ) = 0; + virtual int8_t FileForget( const char * ) = 0; + virtual int8_t FileDelete( const char * ) = 0; virtual uint64_t FileShare( const char * ) = 0; - virtual bool SetSyncPlatforms( const char *, uint32_t ) = 0; + virtual int8_t SetSyncPlatforms( const char *, uint32_t ) = 0; virtual uint64_t FileWriteStreamOpen( const char * ) = 0; - virtual bool FileWriteStreamWriteChunk( uint64_t, const void *, int32_t ) = 0; - virtual bool FileWriteStreamClose( uint64_t ) = 0; - virtual bool FileWriteStreamCancel( uint64_t ) = 0; - virtual bool FileExists( const char * ) = 0; - virtual bool FilePersisted( const char * ) = 0; + virtual int8_t FileWriteStreamWriteChunk( uint64_t, const void *, int32_t ) = 0; + virtual int8_t FileWriteStreamClose( uint64_t ) = 0; + virtual int8_t FileWriteStreamCancel( uint64_t ) = 0; + virtual int8_t FileExists( const char * ) = 0; + virtual int8_t FilePersisted( const char * ) = 0; virtual int32_t GetFileSize( const char * ) = 0; virtual int64_t GetFileTimestamp( const char * ) = 0; virtual uint32_t GetSyncPlatforms( const char * ) = 0; virtual int32_t GetFileCount( ) = 0; virtual const char * GetFileNameAndSize( int32_t, int32_t * ) = 0; - virtual bool GetQuota( int32_t *, int32_t * ) = 0; - virtual bool IsCloudEnabledForAccount( ) = 0; - virtual bool IsCloudEnabledForApp( ) = 0; - virtual void SetCloudEnabledForApp( bool ) = 0; + virtual int8_t GetQuota( int32_t *, int32_t * ) = 0; + virtual int8_t IsCloudEnabledForAccount( ) = 0; + virtual int8_t IsCloudEnabledForApp( ) = 0; + virtual void SetCloudEnabledForApp( int8_t ) = 0; virtual uint64_t UGCDownload( uint64_t ) = 0; - virtual bool GetUGCDownloadProgress( uint64_t, int32_t *, int32_t * ) = 0; - virtual bool GetUGCDetails( uint64_t, uint32_t *, char **, int32_t *, CSteamID * ) = 0; + virtual int8_t GetUGCDownloadProgress( uint64_t, int32_t *, int32_t * ) = 0; + virtual int8_t GetUGCDetails( uint64_t, uint32_t *, char **, int32_t *, CSteamID * ) = 0; virtual int32_t UGCRead( uint64_t, void *, int32_t ) = 0; virtual int32_t GetCachedUGCCount( ) = 0; virtual uint64_t GetCachedUGCHandle( int32_t ) = 0; virtual uint64_t PublishWorkshopFile( const char *, const char *, uint32_t, const char *, const char *, uint32_t, u_SteamParamStringArray_t *, uint32_t ) = 0; virtual uint64_t CreatePublishedFileUpdateRequest( uint64_t ) = 0; - virtual bool UpdatePublishedFileFile( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFilePreviewFile( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFileTitle( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFileDescription( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFileVisibility( uint64_t, uint32_t ) = 0; - virtual bool UpdatePublishedFileTags( uint64_t, u_SteamParamStringArray_t * ) = 0; + virtual int8_t UpdatePublishedFileFile( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFilePreviewFile( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileTitle( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileDescription( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileVisibility( uint64_t, uint32_t ) = 0; + virtual int8_t UpdatePublishedFileTags( uint64_t, u_SteamParamStringArray_t * ) = 0; virtual uint64_t CommitPublishedFileUpdate( uint64_t ) = 0; virtual uint64_t GetPublishedFileDetails( uint64_t ) = 0; virtual uint64_t DeletePublishedFile( uint64_t ) = 0; @@ -2676,9 +2676,9 @@ struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 virtual uint64_t SubscribePublishedFile( uint64_t ) = 0; virtual uint64_t EnumerateUserSubscribedFiles( uint32_t ) = 0; virtual uint64_t UnsubscribePublishedFile( uint64_t ) = 0; - virtual bool UpdatePublishedFileSetChangeDescription( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileSetChangeDescription( uint64_t, const char * ) = 0; virtual uint64_t GetPublishedItemVoteDetails( uint64_t ) = 0; - virtual uint64_t UpdateUserPublishedItemVote( uint64_t, bool ) = 0; + virtual uint64_t UpdateUserPublishedItemVote( uint64_t, int8_t ) = 0; virtual uint64_t GetUserPublishedItemVoteDetails( uint64_t ) = 0; virtual uint64_t EnumerateUserSharedWorkshopFiles( CSteamID, uint32_t, u_SteamParamStringArray_t *, u_SteamParamStringArray_t * ) = 0; virtual uint64_t PublishVideo( uint32_t, const char *, const char *, const char *, uint32_t, const char *, const char *, uint32_t, u_SteamParamStringArray_t * ) = 0; @@ -2691,41 +2691,41 @@ struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 { #ifdef __cplusplus - virtual bool FileWrite( const char *, const void *, int32_t ) = 0; + virtual int8_t FileWrite( const char *, const void *, int32_t ) = 0; virtual int32_t FileRead( const char *, void *, int32_t ) = 0; - virtual bool FileForget( const char * ) = 0; - virtual bool FileDelete( const char * ) = 0; + virtual int8_t FileForget( const char * ) = 0; + virtual int8_t FileDelete( const char * ) = 0; virtual uint64_t FileShare( const char * ) = 0; - virtual bool SetSyncPlatforms( const char *, uint32_t ) = 0; + virtual int8_t SetSyncPlatforms( const char *, uint32_t ) = 0; virtual uint64_t FileWriteStreamOpen( const char * ) = 0; - virtual bool FileWriteStreamWriteChunk( uint64_t, const void *, int32_t ) = 0; - virtual bool FileWriteStreamClose( uint64_t ) = 0; - virtual bool FileWriteStreamCancel( uint64_t ) = 0; - virtual bool FileExists( const char * ) = 0; - virtual bool FilePersisted( const char * ) = 0; + virtual int8_t FileWriteStreamWriteChunk( uint64_t, const void *, int32_t ) = 0; + virtual int8_t FileWriteStreamClose( uint64_t ) = 0; + virtual int8_t FileWriteStreamCancel( uint64_t ) = 0; + virtual int8_t FileExists( const char * ) = 0; + virtual int8_t FilePersisted( const char * ) = 0; virtual int32_t GetFileSize( const char * ) = 0; virtual int64_t GetFileTimestamp( const char * ) = 0; virtual uint32_t GetSyncPlatforms( const char * ) = 0; virtual int32_t GetFileCount( ) = 0; virtual const char * GetFileNameAndSize( int32_t, int32_t * ) = 0; - virtual bool GetQuota( int32_t *, int32_t * ) = 0; - virtual bool IsCloudEnabledForAccount( ) = 0; - virtual bool IsCloudEnabledForApp( ) = 0; - virtual void SetCloudEnabledForApp( bool ) = 0; + virtual int8_t GetQuota( int32_t *, int32_t * ) = 0; + virtual int8_t IsCloudEnabledForAccount( ) = 0; + virtual int8_t IsCloudEnabledForApp( ) = 0; + virtual void SetCloudEnabledForApp( int8_t ) = 0; virtual uint64_t UGCDownload( uint64_t ) = 0; - virtual bool GetUGCDownloadProgress( uint64_t, int32_t *, int32_t * ) = 0; - virtual bool GetUGCDetails( uint64_t, uint32_t *, char **, int32_t *, CSteamID * ) = 0; + virtual int8_t GetUGCDownloadProgress( uint64_t, int32_t *, int32_t * ) = 0; + virtual int8_t GetUGCDetails( uint64_t, uint32_t *, char **, int32_t *, CSteamID * ) = 0; virtual int32_t UGCRead( uint64_t, void *, int32_t, uint32_t ) = 0; virtual int32_t GetCachedUGCCount( ) = 0; virtual uint64_t GetCachedUGCHandle( int32_t ) = 0; virtual uint64_t PublishWorkshopFile( const char *, const char *, uint32_t, const char *, const char *, uint32_t, u_SteamParamStringArray_t *, uint32_t ) = 0; virtual uint64_t CreatePublishedFileUpdateRequest( uint64_t ) = 0; - virtual bool UpdatePublishedFileFile( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFilePreviewFile( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFileTitle( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFileDescription( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFileVisibility( uint64_t, uint32_t ) = 0; - virtual bool UpdatePublishedFileTags( uint64_t, u_SteamParamStringArray_t * ) = 0; + virtual int8_t UpdatePublishedFileFile( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFilePreviewFile( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileTitle( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileDescription( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileVisibility( uint64_t, uint32_t ) = 0; + virtual int8_t UpdatePublishedFileTags( uint64_t, u_SteamParamStringArray_t * ) = 0; virtual uint64_t CommitPublishedFileUpdate( uint64_t ) = 0; virtual uint64_t GetPublishedFileDetails( uint64_t ) = 0; virtual uint64_t DeletePublishedFile( uint64_t ) = 0; @@ -2733,9 +2733,9 @@ struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 virtual uint64_t SubscribePublishedFile( uint64_t ) = 0; virtual uint64_t EnumerateUserSubscribedFiles( uint32_t ) = 0; virtual uint64_t UnsubscribePublishedFile( uint64_t ) = 0; - virtual bool UpdatePublishedFileSetChangeDescription( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileSetChangeDescription( uint64_t, const char * ) = 0; virtual uint64_t GetPublishedItemVoteDetails( uint64_t ) = 0; - virtual uint64_t UpdateUserPublishedItemVote( uint64_t, bool ) = 0; + virtual uint64_t UpdateUserPublishedItemVote( uint64_t, int8_t ) = 0; virtual uint64_t GetUserPublishedItemVoteDetails( uint64_t ) = 0; virtual uint64_t EnumerateUserSharedWorkshopFiles( CSteamID, uint32_t, u_SteamParamStringArray_t *, u_SteamParamStringArray_t * ) = 0; virtual uint64_t PublishVideo( uint32_t, const char *, const char *, const char *, uint32_t, const char *, const char *, uint32_t, u_SteamParamStringArray_t * ) = 0; @@ -2749,71 +2749,71 @@ struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 { #ifdef __cplusplus virtual uint32_t CreateHTTPRequest( uint32_t, const char * ) = 0; - virtual bool SetHTTPRequestContextValue( uint32_t, uint64_t ) = 0; - virtual bool SetHTTPRequestNetworkActivityTimeout( uint32_t, uint32_t ) = 0; - virtual bool SetHTTPRequestHeaderValue( uint32_t, const char *, const char * ) = 0; - virtual bool SetHTTPRequestGetOrPostParameter( uint32_t, const char *, const char * ) = 0; - virtual bool SendHTTPRequest( uint32_t, uint64_t * ) = 0; - virtual bool SendHTTPRequestAndStreamResponse( uint32_t, uint64_t * ) = 0; - virtual bool DeferHTTPRequest( uint32_t ) = 0; - virtual bool PrioritizeHTTPRequest( uint32_t ) = 0; - virtual bool GetHTTPResponseHeaderSize( uint32_t, const char *, uint32_t * ) = 0; - virtual bool GetHTTPResponseHeaderValue( uint32_t, const char *, uint8_t *, uint32_t ) = 0; - virtual bool GetHTTPResponseBodySize( uint32_t, uint32_t * ) = 0; - virtual bool GetHTTPResponseBodyData( uint32_t, uint8_t *, uint32_t ) = 0; - virtual bool GetHTTPStreamingResponseBodyData( uint32_t, uint32_t, uint8_t *, uint32_t ) = 0; - virtual bool ReleaseHTTPRequest( uint32_t ) = 0; - virtual bool GetHTTPDownloadProgressPct( uint32_t, float * ) = 0; - virtual bool SetHTTPRequestRawPostBody( uint32_t, const char *, uint8_t *, uint32_t ) = 0; - virtual uint32_t CreateCookieContainer( bool ) = 0; - virtual bool ReleaseCookieContainer( uint32_t ) = 0; - virtual bool SetCookie( uint32_t, const char *, const char *, const char * ) = 0; - virtual bool SetHTTPRequestCookieContainer( uint32_t, uint32_t ) = 0; - virtual bool SetHTTPRequestUserAgentInfo( uint32_t, const char * ) = 0; - virtual bool SetHTTPRequestRequiresVerifiedCertificate( uint32_t, bool ) = 0; - virtual bool SetHTTPRequestAbsoluteTimeoutMS( uint32_t, uint32_t ) = 0; - virtual bool GetHTTPRequestWasTimedOut( uint32_t, bool * ) = 0; + virtual int8_t SetHTTPRequestContextValue( uint32_t, uint64_t ) = 0; + virtual int8_t SetHTTPRequestNetworkActivityTimeout( uint32_t, uint32_t ) = 0; + virtual int8_t SetHTTPRequestHeaderValue( uint32_t, const char *, const char * ) = 0; + virtual int8_t SetHTTPRequestGetOrPostParameter( uint32_t, const char *, const char * ) = 0; + virtual int8_t SendHTTPRequest( uint32_t, uint64_t * ) = 0; + virtual int8_t SendHTTPRequestAndStreamResponse( uint32_t, uint64_t * ) = 0; + virtual int8_t DeferHTTPRequest( uint32_t ) = 0; + virtual int8_t PrioritizeHTTPRequest( uint32_t ) = 0; + virtual int8_t GetHTTPResponseHeaderSize( uint32_t, const char *, uint32_t * ) = 0; + virtual int8_t GetHTTPResponseHeaderValue( uint32_t, const char *, uint8_t *, uint32_t ) = 0; + virtual int8_t GetHTTPResponseBodySize( uint32_t, uint32_t * ) = 0; + virtual int8_t GetHTTPResponseBodyData( uint32_t, uint8_t *, uint32_t ) = 0; + virtual int8_t GetHTTPStreamingResponseBodyData( uint32_t, uint32_t, uint8_t *, uint32_t ) = 0; + virtual int8_t ReleaseHTTPRequest( uint32_t ) = 0; + virtual int8_t GetHTTPDownloadProgressPct( uint32_t, float * ) = 0; + virtual int8_t SetHTTPRequestRawPostBody( uint32_t, const char *, uint8_t *, uint32_t ) = 0; + virtual uint32_t CreateCookieContainer( int8_t ) = 0; + virtual int8_t ReleaseCookieContainer( uint32_t ) = 0; + virtual int8_t SetCookie( uint32_t, const char *, const char *, const char * ) = 0; + virtual int8_t SetHTTPRequestCookieContainer( uint32_t, uint32_t ) = 0; + virtual int8_t SetHTTPRequestUserAgentInfo( uint32_t, const char * ) = 0; + virtual int8_t SetHTTPRequestRequiresVerifiedCertificate( uint32_t, int8_t ) = 0; + virtual int8_t SetHTTPRequestAbsoluteTimeoutMS( uint32_t, uint32_t ) = 0; + virtual int8_t GetHTTPRequestWasTimedOut( uint32_t, int8_t * ) = 0; #endif /* __cplusplus */ }; struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 { #ifdef __cplusplus - virtual bool FileWrite( const char *, const void *, int32_t ) = 0; + virtual int8_t FileWrite( const char *, const void *, int32_t ) = 0; virtual int32_t FileRead( const char *, void *, int32_t ) = 0; - virtual bool FileForget( const char * ) = 0; - virtual bool FileDelete( const char * ) = 0; + virtual int8_t FileForget( const char * ) = 0; + virtual int8_t FileDelete( const char * ) = 0; virtual uint64_t FileShare( const char * ) = 0; - virtual bool SetSyncPlatforms( const char *, uint32_t ) = 0; + virtual int8_t SetSyncPlatforms( const char *, uint32_t ) = 0; virtual uint64_t FileWriteStreamOpen( const char * ) = 0; - virtual bool FileWriteStreamWriteChunk( uint64_t, const void *, int32_t ) = 0; - virtual bool FileWriteStreamClose( uint64_t ) = 0; - virtual bool FileWriteStreamCancel( uint64_t ) = 0; - virtual bool FileExists( const char * ) = 0; - virtual bool FilePersisted( const char * ) = 0; + virtual int8_t FileWriteStreamWriteChunk( uint64_t, const void *, int32_t ) = 0; + virtual int8_t FileWriteStreamClose( uint64_t ) = 0; + virtual int8_t FileWriteStreamCancel( uint64_t ) = 0; + virtual int8_t FileExists( const char * ) = 0; + virtual int8_t FilePersisted( const char * ) = 0; virtual int32_t GetFileSize( const char * ) = 0; virtual int64_t GetFileTimestamp( const char * ) = 0; virtual uint32_t GetSyncPlatforms( const char * ) = 0; virtual int32_t GetFileCount( ) = 0; virtual const char * GetFileNameAndSize( int32_t, int32_t * ) = 0; - virtual bool GetQuota( int32_t *, int32_t * ) = 0; - virtual bool IsCloudEnabledForAccount( ) = 0; - virtual bool IsCloudEnabledForApp( ) = 0; - virtual void SetCloudEnabledForApp( bool ) = 0; + virtual int8_t GetQuota( int32_t *, int32_t * ) = 0; + virtual int8_t IsCloudEnabledForAccount( ) = 0; + virtual int8_t IsCloudEnabledForApp( ) = 0; + virtual void SetCloudEnabledForApp( int8_t ) = 0; virtual uint64_t UGCDownload( uint64_t, uint32_t ) = 0; - virtual bool GetUGCDownloadProgress( uint64_t, int32_t *, int32_t * ) = 0; - virtual bool GetUGCDetails( uint64_t, uint32_t *, char **, int32_t *, CSteamID * ) = 0; + virtual int8_t GetUGCDownloadProgress( uint64_t, int32_t *, int32_t * ) = 0; + virtual int8_t GetUGCDetails( uint64_t, uint32_t *, char **, int32_t *, CSteamID * ) = 0; virtual int32_t UGCRead( uint64_t, void *, int32_t, uint32_t ) = 0; virtual int32_t GetCachedUGCCount( ) = 0; virtual uint64_t GetCachedUGCHandle( int32_t ) = 0; virtual uint64_t PublishWorkshopFile( const char *, const char *, uint32_t, const char *, const char *, uint32_t, u_SteamParamStringArray_t *, uint32_t ) = 0; virtual uint64_t CreatePublishedFileUpdateRequest( uint64_t ) = 0; - virtual bool UpdatePublishedFileFile( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFilePreviewFile( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFileTitle( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFileDescription( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFileVisibility( uint64_t, uint32_t ) = 0; - virtual bool UpdatePublishedFileTags( uint64_t, u_SteamParamStringArray_t * ) = 0; + virtual int8_t UpdatePublishedFileFile( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFilePreviewFile( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileTitle( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileDescription( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileVisibility( uint64_t, uint32_t ) = 0; + virtual int8_t UpdatePublishedFileTags( uint64_t, u_SteamParamStringArray_t * ) = 0; virtual uint64_t CommitPublishedFileUpdate( uint64_t ) = 0; virtual uint64_t GetPublishedFileDetails( uint64_t ) = 0; virtual uint64_t DeletePublishedFile( uint64_t ) = 0; @@ -2821,9 +2821,9 @@ struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 virtual uint64_t SubscribePublishedFile( uint64_t ) = 0; virtual uint64_t EnumerateUserSubscribedFiles( uint32_t ) = 0; virtual uint64_t UnsubscribePublishedFile( uint64_t ) = 0; - virtual bool UpdatePublishedFileSetChangeDescription( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileSetChangeDescription( uint64_t, const char * ) = 0; virtual uint64_t GetPublishedItemVoteDetails( uint64_t ) = 0; - virtual uint64_t UpdateUserPublishedItemVote( uint64_t, bool ) = 0; + virtual uint64_t UpdateUserPublishedItemVote( uint64_t, int8_t ) = 0; virtual uint64_t GetUserPublishedItemVoteDetails( uint64_t ) = 0; virtual uint64_t EnumerateUserSharedWorkshopFiles( CSteamID, uint32_t, u_SteamParamStringArray_t *, u_SteamParamStringArray_t * ) = 0; virtual uint64_t PublishVideo( uint32_t, const char *, const char *, const char *, uint32_t, const char *, const char *, uint32_t, u_SteamParamStringArray_t * ) = 0; @@ -2840,10 +2840,10 @@ struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002 virtual uint32_t WriteScreenshot( void *, uint32_t, int32_t, int32_t ) = 0; virtual uint32_t AddScreenshotToLibrary( const char *, const char *, int32_t, int32_t ) = 0; virtual void TriggerScreenshot( ) = 0; - virtual void HookScreenshots( bool ) = 0; - virtual bool SetLocation( uint32_t, const char * ) = 0; - virtual bool TagUser( uint32_t, CSteamID ) = 0; - virtual bool TagPublishedFile( uint32_t, uint64_t ) = 0; + virtual void HookScreenshots( int8_t ) = 0; + virtual int8_t SetLocation( uint32_t, const char * ) = 0; + virtual int8_t TagUser( uint32_t, CSteamID ) = 0; + virtual int8_t TagPublishedFile( uint32_t, uint64_t ) = 0; #endif /* __cplusplus */ }; @@ -2851,10 +2851,10 @@ struct u_ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001 { #ifdef __cplusplus virtual uint64_t SendMethod( const char *, const void *, uint32_t, uint64_t ) = 0; - virtual bool GetMethodResponseInfo( uint64_t, uint32_t *, uint32_t * ) = 0; - virtual bool GetMethodResponseData( uint64_t, void *, uint32_t, bool ) = 0; - virtual bool ReleaseMethod( uint64_t ) = 0; - virtual bool SendNotification( const char *, const void *, uint32_t ) = 0; + virtual int8_t GetMethodResponseInfo( uint64_t, uint32_t *, uint32_t * ) = 0; + virtual int8_t GetMethodResponseData( uint64_t, void *, uint32_t, int8_t ) = 0; + virtual int8_t ReleaseMethod( uint64_t ) = 0; + virtual int8_t SendNotification( const char *, const void *, uint32_t ) = 0; #endif /* __cplusplus */ }; @@ -2862,16 +2862,16 @@ struct u_ISteamUser_SteamUser017 { #ifdef __cplusplus virtual int32_t GetHSteamUser( ) = 0; - virtual bool BLoggedOn( ) = 0; + virtual int8_t BLoggedOn( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, uint32_t, uint16_t, bool ) = 0; + virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, uint32_t, uint16_t, int8_t ) = 0; virtual void TerminateGameConnection( uint32_t, uint16_t ) = 0; virtual void TrackAppUsageEvent( CGameID, int32_t, const char * ) = 0; - virtual bool GetUserDataFolder( char *, int32_t ) = 0; + virtual int8_t GetUserDataFolder( char *, int32_t ) = 0; virtual void StartVoiceRecording( ) = 0; virtual void StopVoiceRecording( ) = 0; virtual uint32_t GetAvailableVoice( uint32_t *, uint32_t *, uint32_t ) = 0; - virtual uint32_t GetVoice( bool, void *, uint32_t, uint32_t *, bool, void *, uint32_t, uint32_t *, uint32_t ) = 0; + virtual uint32_t GetVoice( int8_t, void *, uint32_t, uint32_t *, int8_t, void *, uint32_t, uint32_t *, uint32_t ) = 0; virtual uint32_t DecompressVoice( const void *, uint32_t, void *, uint32_t, uint32_t *, uint32_t ) = 0; virtual uint32_t GetVoiceOptimalSampleRate( ) = 0; virtual uint32_t GetAuthSessionTicket( void *, int32_t, uint32_t * ) = 0; @@ -2879,11 +2879,11 @@ struct u_ISteamUser_SteamUser017 virtual void EndAuthSession( CSteamID ) = 0; virtual void CancelAuthTicket( uint32_t ) = 0; virtual uint32_t UserHasLicenseForApp( CSteamID, uint32_t ) = 0; - virtual bool BIsBehindNAT( ) = 0; + virtual int8_t BIsBehindNAT( ) = 0; virtual void AdvertiseGame( CSteamID, uint32_t, uint16_t ) = 0; virtual uint64_t RequestEncryptedAppTicket( void *, int32_t ) = 0; - virtual bool GetEncryptedAppTicket( void *, int32_t, uint32_t * ) = 0; - virtual int32_t GetGameBadgeLevel( int32_t, bool ) = 0; + virtual int8_t GetEncryptedAppTicket( void *, int32_t, uint32_t * ) = 0; + virtual int32_t GetGameBadgeLevel( int32_t, int8_t ) = 0; virtual int32_t GetPlayerSteamLevel( ) = 0; #endif /* __cplusplus */ }; @@ -2896,36 +2896,36 @@ struct u_ISteamUtils_SteamUtils006 virtual uint32_t GetConnectedUniverse( ) = 0; virtual uint32_t GetServerRealTime( ) = 0; virtual const char * GetIPCountry( ) = 0; - virtual bool GetImageSize( int32_t, uint32_t *, uint32_t * ) = 0; - virtual bool GetImageRGBA( int32_t, uint8_t *, int32_t ) = 0; - virtual bool GetCSERIPPort( uint32_t *, uint16_t * ) = 0; + virtual int8_t GetImageSize( int32_t, uint32_t *, uint32_t * ) = 0; + virtual int8_t GetImageRGBA( int32_t, uint8_t *, int32_t ) = 0; + virtual int8_t GetCSERIPPort( uint32_t *, uint16_t * ) = 0; virtual uint8_t GetCurrentBatteryPower( ) = 0; virtual uint32_t GetAppID( ) = 0; virtual void SetOverlayNotificationPosition( uint32_t ) = 0; - virtual bool IsAPICallCompleted( uint64_t, bool * ) = 0; + virtual int8_t IsAPICallCompleted( uint64_t, int8_t * ) = 0; virtual uint32_t GetAPICallFailureReason( uint64_t ) = 0; - virtual bool GetAPICallResult( uint64_t, void *, int32_t, int32_t, bool * ) = 0; + virtual int8_t GetAPICallResult( uint64_t, void *, int32_t, int32_t, int8_t * ) = 0; virtual void RunFrame( ) = 0; virtual uint32_t GetIPCCallCount( ) = 0; virtual void SetWarningMessageHook( void (*U_CDECL )(int32_t, const char *) ) = 0; - virtual bool IsOverlayEnabled( ) = 0; - virtual bool BOverlayNeedsPresent( ) = 0; + virtual int8_t IsOverlayEnabled( ) = 0; + virtual int8_t BOverlayNeedsPresent( ) = 0; virtual uint64_t CheckFileSignature( const char * ) = 0; - virtual bool ShowGamepadTextInput( uint32_t, uint32_t, const char *, uint32_t ) = 0; + virtual int8_t ShowGamepadTextInput( uint32_t, uint32_t, const char *, uint32_t ) = 0; virtual uint32_t GetEnteredGamepadTextLength( ) = 0; - virtual bool GetEnteredGamepadTextInput( char *, uint32_t ) = 0; + virtual int8_t GetEnteredGamepadTextInput( char *, uint32_t ) = 0; virtual const char * GetSteamUILanguage( ) = 0; - virtual bool IsSteamRunningInVR( ) = 0; + virtual int8_t IsSteamRunningInVR( ) = 0; #endif /* __cplusplus */ }; struct u_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION { #ifdef __cplusplus - virtual bool Init( const char * ) = 0; - virtual bool Shutdown( ) = 0; + virtual int8_t Init( const char * ) = 0; + virtual int8_t Shutdown( ) = 0; virtual void RunFrame( ) = 0; - virtual bool GetControllerState( uint32_t, SteamControllerState001_t * ) = 0; + virtual int8_t GetControllerState( uint32_t, SteamControllerState001_t * ) = 0; virtual void TriggerHapticPulse( uint32_t, uint32_t, uint16_t ) = 0; virtual void SetOverrideMode( const char * ) = 0; #endif /* __cplusplus */ @@ -2934,41 +2934,41 @@ struct u_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 { #ifdef __cplusplus - virtual bool FileWrite( const char *, const void *, int32_t ) = 0; + virtual int8_t FileWrite( const char *, const void *, int32_t ) = 0; virtual int32_t FileRead( const char *, void *, int32_t ) = 0; - virtual bool FileForget( const char * ) = 0; - virtual bool FileDelete( const char * ) = 0; + virtual int8_t FileForget( const char * ) = 0; + virtual int8_t FileDelete( const char * ) = 0; virtual uint64_t FileShare( const char * ) = 0; - virtual bool SetSyncPlatforms( const char *, uint32_t ) = 0; + virtual int8_t SetSyncPlatforms( const char *, uint32_t ) = 0; virtual uint64_t FileWriteStreamOpen( const char * ) = 0; - virtual bool FileWriteStreamWriteChunk( uint64_t, const void *, int32_t ) = 0; - virtual bool FileWriteStreamClose( uint64_t ) = 0; - virtual bool FileWriteStreamCancel( uint64_t ) = 0; - virtual bool FileExists( const char * ) = 0; - virtual bool FilePersisted( const char * ) = 0; + virtual int8_t FileWriteStreamWriteChunk( uint64_t, const void *, int32_t ) = 0; + virtual int8_t FileWriteStreamClose( uint64_t ) = 0; + virtual int8_t FileWriteStreamCancel( uint64_t ) = 0; + virtual int8_t FileExists( const char * ) = 0; + virtual int8_t FilePersisted( const char * ) = 0; virtual int32_t GetFileSize( const char * ) = 0; virtual int64_t GetFileTimestamp( const char * ) = 0; virtual uint32_t GetSyncPlatforms( const char * ) = 0; virtual int32_t GetFileCount( ) = 0; virtual const char * GetFileNameAndSize( int32_t, int32_t * ) = 0; - virtual bool GetQuota( int32_t *, int32_t * ) = 0; - virtual bool IsCloudEnabledForAccount( ) = 0; - virtual bool IsCloudEnabledForApp( ) = 0; - virtual void SetCloudEnabledForApp( bool ) = 0; + virtual int8_t GetQuota( int32_t *, int32_t * ) = 0; + virtual int8_t IsCloudEnabledForAccount( ) = 0; + virtual int8_t IsCloudEnabledForApp( ) = 0; + virtual void SetCloudEnabledForApp( int8_t ) = 0; virtual uint64_t UGCDownload( uint64_t, uint32_t ) = 0; - virtual bool GetUGCDownloadProgress( uint64_t, int32_t *, int32_t * ) = 0; - virtual bool GetUGCDetails( uint64_t, uint32_t *, char **, int32_t *, CSteamID * ) = 0; + virtual int8_t GetUGCDownloadProgress( uint64_t, int32_t *, int32_t * ) = 0; + virtual int8_t GetUGCDetails( uint64_t, uint32_t *, char **, int32_t *, CSteamID * ) = 0; virtual int32_t UGCRead( uint64_t, void *, int32_t, uint32_t ) = 0; virtual int32_t GetCachedUGCCount( ) = 0; virtual uint64_t GetCachedUGCHandle( int32_t ) = 0; virtual uint64_t PublishWorkshopFile( const char *, const char *, uint32_t, const char *, const char *, uint32_t, u_SteamParamStringArray_t *, uint32_t ) = 0; virtual uint64_t CreatePublishedFileUpdateRequest( uint64_t ) = 0; - virtual bool UpdatePublishedFileFile( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFilePreviewFile( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFileTitle( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFileDescription( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFileVisibility( uint64_t, uint32_t ) = 0; - virtual bool UpdatePublishedFileTags( uint64_t, u_SteamParamStringArray_t * ) = 0; + virtual int8_t UpdatePublishedFileFile( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFilePreviewFile( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileTitle( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileDescription( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileVisibility( uint64_t, uint32_t ) = 0; + virtual int8_t UpdatePublishedFileTags( uint64_t, u_SteamParamStringArray_t * ) = 0; virtual uint64_t CommitPublishedFileUpdate( uint64_t ) = 0; virtual uint64_t GetPublishedFileDetails( uint64_t, uint32_t ) = 0; virtual uint64_t DeletePublishedFile( uint64_t ) = 0; @@ -2976,9 +2976,9 @@ struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 virtual uint64_t SubscribePublishedFile( uint64_t ) = 0; virtual uint64_t EnumerateUserSubscribedFiles( uint32_t ) = 0; virtual uint64_t UnsubscribePublishedFile( uint64_t ) = 0; - virtual bool UpdatePublishedFileSetChangeDescription( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileSetChangeDescription( uint64_t, const char * ) = 0; virtual uint64_t GetPublishedItemVoteDetails( uint64_t ) = 0; - virtual uint64_t UpdateUserPublishedItemVote( uint64_t, bool ) = 0; + virtual uint64_t UpdateUserPublishedItemVote( uint64_t, int8_t ) = 0; virtual uint64_t GetUserPublishedItemVoteDetails( uint64_t ) = 0; virtual uint64_t EnumerateUserSharedWorkshopFiles( CSteamID, uint32_t, u_SteamParamStringArray_t *, u_SteamParamStringArray_t * ) = 0; virtual uint64_t PublishVideo( uint32_t, const char *, const char *, const char *, uint32_t, const char *, const char *, uint32_t, u_SteamParamStringArray_t * ) = 0; @@ -3000,20 +3000,20 @@ struct u_ISteamFriends_SteamFriends014 virtual uint32_t GetFriendRelationship( CSteamID ) = 0; virtual uint32_t GetFriendPersonaState( CSteamID ) = 0; virtual const char * GetFriendPersonaName( CSteamID ) = 0; - virtual bool GetFriendGamePlayed( CSteamID, FriendGameInfo_t * ) = 0; + virtual int8_t GetFriendGamePlayed( CSteamID, FriendGameInfo_t * ) = 0; virtual const char * GetFriendPersonaNameHistory( CSteamID, int32_t ) = 0; virtual const char * GetPlayerNickname( CSteamID ) = 0; - virtual bool HasFriend( CSteamID, int32_t ) = 0; + virtual int8_t HasFriend( CSteamID, int32_t ) = 0; virtual int32_t GetClanCount( ) = 0; virtual CSteamID GetClanByIndex( int32_t ) = 0; virtual const char * GetClanName( CSteamID ) = 0; virtual const char * GetClanTag( CSteamID ) = 0; - virtual bool GetClanActivityCounts( CSteamID, int32_t *, int32_t *, int32_t * ) = 0; + virtual int8_t GetClanActivityCounts( CSteamID, int32_t *, int32_t *, int32_t * ) = 0; virtual uint64_t DownloadClanActivityCounts( CSteamID *, int32_t ) = 0; virtual int32_t GetFriendCountFromSource( CSteamID ) = 0; virtual CSteamID GetFriendFromSourceByIndex( CSteamID, int32_t ) = 0; - virtual bool IsUserInSource( CSteamID, CSteamID ) = 0; - virtual void SetInGameVoiceSpeaking( CSteamID, bool ) = 0; + virtual int8_t IsUserInSource( CSteamID, CSteamID ) = 0; + virtual void SetInGameVoiceSpeaking( CSteamID, int8_t ) = 0; virtual void ActivateGameOverlay( const char * ) = 0; virtual void ActivateGameOverlayToUser( const char *, CSteamID ) = 0; virtual void ActivateGameOverlayToWebPage( const char * ) = 0; @@ -3023,35 +3023,35 @@ struct u_ISteamFriends_SteamFriends014 virtual int32_t GetSmallFriendAvatar( CSteamID ) = 0; virtual int32_t GetMediumFriendAvatar( CSteamID ) = 0; virtual int32_t GetLargeFriendAvatar( CSteamID ) = 0; - virtual bool RequestUserInformation( CSteamID, bool ) = 0; + virtual int8_t RequestUserInformation( CSteamID, int8_t ) = 0; virtual uint64_t RequestClanOfficerList( CSteamID ) = 0; virtual CSteamID GetClanOwner( CSteamID ) = 0; virtual int32_t GetClanOfficerCount( CSteamID ) = 0; virtual CSteamID GetClanOfficerByIndex( CSteamID, int32_t ) = 0; virtual uint32_t GetUserRestrictions( ) = 0; - virtual bool SetRichPresence( const char *, const char * ) = 0; + virtual int8_t SetRichPresence( const char *, const char * ) = 0; virtual void ClearRichPresence( ) = 0; virtual const char * GetFriendRichPresence( CSteamID, const char * ) = 0; virtual int32_t GetFriendRichPresenceKeyCount( CSteamID ) = 0; virtual const char * GetFriendRichPresenceKeyByIndex( CSteamID, int32_t ) = 0; virtual void RequestFriendRichPresence( CSteamID ) = 0; - virtual bool InviteUserToGame( CSteamID, const char * ) = 0; + virtual int8_t InviteUserToGame( CSteamID, const char * ) = 0; virtual int32_t GetCoplayFriendCount( ) = 0; virtual CSteamID GetCoplayFriend( int32_t ) = 0; virtual int32_t GetFriendCoplayTime( CSteamID ) = 0; virtual uint32_t GetFriendCoplayGame( CSteamID ) = 0; virtual uint64_t JoinClanChatRoom( CSteamID ) = 0; - virtual bool LeaveClanChatRoom( CSteamID ) = 0; + virtual int8_t LeaveClanChatRoom( CSteamID ) = 0; virtual int32_t GetClanChatMemberCount( CSteamID ) = 0; virtual CSteamID GetChatMemberByIndex( CSteamID, int32_t ) = 0; - virtual bool SendClanChatMessage( CSteamID, const char * ) = 0; + virtual int8_t SendClanChatMessage( CSteamID, const char * ) = 0; virtual int32_t GetClanChatMessage( CSteamID, int32_t, void *, int32_t, uint32_t *, CSteamID * ) = 0; - virtual bool IsClanChatAdmin( CSteamID, CSteamID ) = 0; - virtual bool IsClanChatWindowOpenInSteam( CSteamID ) = 0; - virtual bool OpenClanChatWindowInSteam( CSteamID ) = 0; - virtual bool CloseClanChatWindowInSteam( CSteamID ) = 0; - virtual bool SetListenForFriendsMessages( bool ) = 0; - virtual bool ReplyToFriendMessage( CSteamID, const char * ) = 0; + virtual int8_t IsClanChatAdmin( CSteamID, CSteamID ) = 0; + virtual int8_t IsClanChatWindowOpenInSteam( CSteamID ) = 0; + virtual int8_t OpenClanChatWindowInSteam( CSteamID ) = 0; + virtual int8_t CloseClanChatWindowInSteam( CSteamID ) = 0; + virtual int8_t SetListenForFriendsMessages( int8_t ) = 0; + virtual int8_t ReplyToFriendMessage( CSteamID, const char * ) = 0; virtual int32_t GetFriendMessage( CSteamID, int32_t, void *, int32_t, uint32_t * ) = 0; virtual uint64_t GetFollowerCount( CSteamID ) = 0; virtual uint64_t IsFollowing( CSteamID ) = 0; @@ -3062,41 +3062,41 @@ struct u_ISteamFriends_SteamFriends014 struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 { #ifdef __cplusplus - virtual bool FileWrite( const char *, const void *, int32_t ) = 0; + virtual int8_t FileWrite( const char *, const void *, int32_t ) = 0; virtual int32_t FileRead( const char *, void *, int32_t ) = 0; - virtual bool FileForget( const char * ) = 0; - virtual bool FileDelete( const char * ) = 0; + virtual int8_t FileForget( const char * ) = 0; + virtual int8_t FileDelete( const char * ) = 0; virtual uint64_t FileShare( const char * ) = 0; - virtual bool SetSyncPlatforms( const char *, uint32_t ) = 0; + virtual int8_t SetSyncPlatforms( const char *, uint32_t ) = 0; virtual uint64_t FileWriteStreamOpen( const char * ) = 0; - virtual bool FileWriteStreamWriteChunk( uint64_t, const void *, int32_t ) = 0; - virtual bool FileWriteStreamClose( uint64_t ) = 0; - virtual bool FileWriteStreamCancel( uint64_t ) = 0; - virtual bool FileExists( const char * ) = 0; - virtual bool FilePersisted( const char * ) = 0; + virtual int8_t FileWriteStreamWriteChunk( uint64_t, const void *, int32_t ) = 0; + virtual int8_t FileWriteStreamClose( uint64_t ) = 0; + virtual int8_t FileWriteStreamCancel( uint64_t ) = 0; + virtual int8_t FileExists( const char * ) = 0; + virtual int8_t FilePersisted( const char * ) = 0; virtual int32_t GetFileSize( const char * ) = 0; virtual int64_t GetFileTimestamp( const char * ) = 0; virtual uint32_t GetSyncPlatforms( const char * ) = 0; virtual int32_t GetFileCount( ) = 0; virtual const char * GetFileNameAndSize( int32_t, int32_t * ) = 0; - virtual bool GetQuota( int32_t *, int32_t * ) = 0; - virtual bool IsCloudEnabledForAccount( ) = 0; - virtual bool IsCloudEnabledForApp( ) = 0; - virtual void SetCloudEnabledForApp( bool ) = 0; + virtual int8_t GetQuota( int32_t *, int32_t * ) = 0; + virtual int8_t IsCloudEnabledForAccount( ) = 0; + virtual int8_t IsCloudEnabledForApp( ) = 0; + virtual void SetCloudEnabledForApp( int8_t ) = 0; virtual uint64_t UGCDownload( uint64_t, uint32_t ) = 0; - virtual bool GetUGCDownloadProgress( uint64_t, int32_t *, int32_t * ) = 0; - virtual bool GetUGCDetails( uint64_t, uint32_t *, char **, int32_t *, CSteamID * ) = 0; + virtual int8_t GetUGCDownloadProgress( uint64_t, int32_t *, int32_t * ) = 0; + virtual int8_t GetUGCDetails( uint64_t, uint32_t *, char **, int32_t *, CSteamID * ) = 0; virtual int32_t UGCRead( uint64_t, void *, int32_t, uint32_t, uint32_t ) = 0; virtual int32_t GetCachedUGCCount( ) = 0; virtual uint64_t GetCachedUGCHandle( int32_t ) = 0; virtual uint64_t PublishWorkshopFile( const char *, const char *, uint32_t, const char *, const char *, uint32_t, u_SteamParamStringArray_t *, uint32_t ) = 0; virtual uint64_t CreatePublishedFileUpdateRequest( uint64_t ) = 0; - virtual bool UpdatePublishedFileFile( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFilePreviewFile( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFileTitle( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFileDescription( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFileVisibility( uint64_t, uint32_t ) = 0; - virtual bool UpdatePublishedFileTags( uint64_t, u_SteamParamStringArray_t * ) = 0; + virtual int8_t UpdatePublishedFileFile( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFilePreviewFile( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileTitle( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileDescription( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileVisibility( uint64_t, uint32_t ) = 0; + virtual int8_t UpdatePublishedFileTags( uint64_t, u_SteamParamStringArray_t * ) = 0; virtual uint64_t CommitPublishedFileUpdate( uint64_t ) = 0; virtual uint64_t GetPublishedFileDetails( uint64_t, uint32_t ) = 0; virtual uint64_t DeletePublishedFile( uint64_t ) = 0; @@ -3104,9 +3104,9 @@ struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 virtual uint64_t SubscribePublishedFile( uint64_t ) = 0; virtual uint64_t EnumerateUserSubscribedFiles( uint32_t ) = 0; virtual uint64_t UnsubscribePublishedFile( uint64_t ) = 0; - virtual bool UpdatePublishedFileSetChangeDescription( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileSetChangeDescription( uint64_t, const char * ) = 0; virtual uint64_t GetPublishedItemVoteDetails( uint64_t ) = 0; - virtual uint64_t UpdateUserPublishedItemVote( uint64_t, bool ) = 0; + virtual uint64_t UpdateUserPublishedItemVote( uint64_t, int8_t ) = 0; virtual uint64_t GetUserPublishedItemVoteDetails( uint64_t ) = 0; virtual uint64_t EnumerateUserSharedWorkshopFiles( CSteamID, uint32_t, u_SteamParamStringArray_t *, u_SteamParamStringArray_t * ) = 0; virtual uint64_t PublishVideo( uint32_t, const char *, const char *, const char *, uint32_t, const char *, const char *, uint32_t, u_SteamParamStringArray_t * ) = 0; @@ -3120,26 +3120,26 @@ struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 { #ifdef __cplusplus - virtual bool BIsSubscribed( ) = 0; - virtual bool BIsLowViolence( ) = 0; - virtual bool BIsCybercafe( ) = 0; - virtual bool BIsVACBanned( ) = 0; + virtual int8_t BIsSubscribed( ) = 0; + virtual int8_t BIsLowViolence( ) = 0; + virtual int8_t BIsCybercafe( ) = 0; + virtual int8_t BIsVACBanned( ) = 0; virtual const char * GetCurrentGameLanguage( ) = 0; virtual const char * GetAvailableGameLanguages( ) = 0; - virtual bool BIsSubscribedApp( uint32_t ) = 0; - virtual bool BIsDlcInstalled( uint32_t ) = 0; + virtual int8_t BIsSubscribedApp( uint32_t ) = 0; + virtual int8_t BIsDlcInstalled( uint32_t ) = 0; virtual uint32_t GetEarliestPurchaseUnixTime( uint32_t ) = 0; - virtual bool BIsSubscribedFromFreeWeekend( ) = 0; + virtual int8_t BIsSubscribedFromFreeWeekend( ) = 0; virtual int32_t GetDLCCount( ) = 0; - virtual bool BGetDLCDataByIndex( int32_t, uint32_t *, bool *, char *, int32_t ) = 0; + virtual int8_t BGetDLCDataByIndex( int32_t, uint32_t *, int8_t *, char *, int32_t ) = 0; virtual void InstallDLC( uint32_t ) = 0; virtual void UninstallDLC( uint32_t ) = 0; virtual void RequestAppProofOfPurchaseKey( uint32_t ) = 0; - virtual bool GetCurrentBetaName( char *, int32_t ) = 0; - virtual bool MarkContentCorrupt( bool ) = 0; + virtual int8_t GetCurrentBetaName( char *, int32_t ) = 0; + virtual int8_t MarkContentCorrupt( int8_t ) = 0; virtual uint32_t GetInstalledDepots( uint32_t, uint32_t *, uint32_t ) = 0; virtual uint32_t GetAppInstallDir( uint32_t, char *, uint32_t ) = 0; - virtual bool BIsAppInstalled( uint32_t ) = 0; + virtual int8_t BIsAppInstalled( uint32_t ) = 0; virtual CSteamID GetAppOwner( ) = 0; virtual const char * GetLaunchQueryParam( const char * ) = 0; #endif /* __cplusplus */ @@ -3151,16 +3151,16 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 virtual uint64_t CreateQueryUserUGCRequest( uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t ) = 0; virtual uint64_t CreateQueryAllUGCRequest( uint32_t, uint32_t, uint32_t, uint32_t, uint32_t ) = 0; virtual uint64_t SendQueryUGCRequest( uint64_t ) = 0; - virtual bool GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_126 * ) = 0; - virtual bool ReleaseQueryUGCRequest( uint64_t ) = 0; - virtual bool AddRequiredTag( uint64_t, const char * ) = 0; - virtual bool AddExcludedTag( uint64_t, const char * ) = 0; - virtual bool SetReturnLongDescription( uint64_t, bool ) = 0; - virtual bool SetReturnTotalOnly( uint64_t, bool ) = 0; - virtual bool SetCloudFileNameFilter( uint64_t, const char * ) = 0; - virtual bool SetMatchAnyTag( uint64_t, bool ) = 0; - virtual bool SetSearchText( uint64_t, const char * ) = 0; - virtual bool SetRankedByTrendDays( uint64_t, uint32_t ) = 0; + virtual int8_t GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_126 * ) = 0; + virtual int8_t ReleaseQueryUGCRequest( uint64_t ) = 0; + virtual int8_t AddRequiredTag( uint64_t, const char * ) = 0; + virtual int8_t AddExcludedTag( uint64_t, const char * ) = 0; + virtual int8_t SetReturnLongDescription( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnTotalOnly( uint64_t, int8_t ) = 0; + virtual int8_t SetCloudFileNameFilter( uint64_t, const char * ) = 0; + virtual int8_t SetMatchAnyTag( uint64_t, int8_t ) = 0; + virtual int8_t SetSearchText( uint64_t, const char * ) = 0; + virtual int8_t SetRankedByTrendDays( uint64_t, uint32_t ) = 0; virtual uint64_t RequestUGCDetails( uint64_t ) = 0; #endif /* __cplusplus */ }; @@ -3169,7 +3169,7 @@ struct u_ISteamClient_SteamClient013 { #ifdef __cplusplus virtual int32_t CreateSteamPipe( ) = 0; - virtual bool BReleaseSteamPipe( int32_t ) = 0; + virtual int8_t BReleaseSteamPipe( int32_t ) = 0; virtual int32_t ConnectToGlobalUser( int32_t ) = 0; virtual int32_t CreateLocalUser( int32_t *, uint32_t ) = 0; virtual void ReleaseUser( int32_t, int32_t ) = 0; @@ -3190,7 +3190,7 @@ struct u_ISteamClient_SteamClient013 virtual void RunFrame( ) = 0; virtual uint32_t GetIPCCallCount( ) = 0; virtual void SetWarningMessageHook( void (*U_CDECL )(int32_t, const char *) ) = 0; - virtual bool BShutdownIfAllPipesClosed( ) = 0; + virtual int8_t BShutdownIfAllPipesClosed( ) = 0; virtual void /*ISteamHTTP*/ * GetISteamHTTP( int32_t, int32_t, const char * ) = 0; virtual void /*ISteamUnifiedMessages*/ * GetISteamUnifiedMessages( int32_t, int32_t, const char * ) = 0; virtual void /*ISteamController*/ * GetISteamController( int32_t, int32_t, const char * ) = 0; @@ -3209,26 +3209,26 @@ struct u_ISteamUtils_SteamUtils007 virtual uint32_t GetConnectedUniverse( ) = 0; virtual uint32_t GetServerRealTime( ) = 0; virtual const char * GetIPCountry( ) = 0; - virtual bool GetImageSize( int32_t, uint32_t *, uint32_t * ) = 0; - virtual bool GetImageRGBA( int32_t, uint8_t *, int32_t ) = 0; - virtual bool GetCSERIPPort( uint32_t *, uint16_t * ) = 0; + virtual int8_t GetImageSize( int32_t, uint32_t *, uint32_t * ) = 0; + virtual int8_t GetImageRGBA( int32_t, uint8_t *, int32_t ) = 0; + virtual int8_t GetCSERIPPort( uint32_t *, uint16_t * ) = 0; virtual uint8_t GetCurrentBatteryPower( ) = 0; virtual uint32_t GetAppID( ) = 0; virtual void SetOverlayNotificationPosition( uint32_t ) = 0; - virtual bool IsAPICallCompleted( uint64_t, bool * ) = 0; + virtual int8_t IsAPICallCompleted( uint64_t, int8_t * ) = 0; virtual uint32_t GetAPICallFailureReason( uint64_t ) = 0; - virtual bool GetAPICallResult( uint64_t, void *, int32_t, int32_t, bool * ) = 0; + virtual int8_t GetAPICallResult( uint64_t, void *, int32_t, int32_t, int8_t * ) = 0; virtual void RunFrame( ) = 0; virtual uint32_t GetIPCCallCount( ) = 0; virtual void SetWarningMessageHook( void (*U_CDECL )(int32_t, const char *) ) = 0; - virtual bool IsOverlayEnabled( ) = 0; - virtual bool BOverlayNeedsPresent( ) = 0; + virtual int8_t IsOverlayEnabled( ) = 0; + virtual int8_t BOverlayNeedsPresent( ) = 0; virtual uint64_t CheckFileSignature( const char * ) = 0; - virtual bool ShowGamepadTextInput( uint32_t, uint32_t, const char *, uint32_t, const char * ) = 0; + virtual int8_t ShowGamepadTextInput( uint32_t, uint32_t, const char *, uint32_t, const char * ) = 0; virtual uint32_t GetEnteredGamepadTextLength( ) = 0; - virtual bool GetEnteredGamepadTextInput( char *, uint32_t ) = 0; + virtual int8_t GetEnteredGamepadTextInput( char *, uint32_t ) = 0; virtual const char * GetSteamUILanguage( ) = 0; - virtual bool IsSteamRunningInVR( ) = 0; + virtual int8_t IsSteamRunningInVR( ) = 0; virtual void SetOverlayNotificationInset( int32_t, int32_t ) = 0; #endif /* __cplusplus */ }; @@ -3236,8 +3236,8 @@ struct u_ISteamUtils_SteamUtils007 struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 { #ifdef __cplusplus - virtual bool BIsEnabled( ) = 0; - virtual bool BIsPlaying( ) = 0; + virtual int8_t BIsEnabled( ) = 0; + virtual int8_t BIsPlaying( ) = 0; virtual uint32_t GetPlaybackStatus( ) = 0; virtual void Play( ) = 0; virtual void Pause( ) = 0; @@ -3254,34 +3254,34 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 virtual uint64_t CreateQueryUserUGCRequest( uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t ) = 0; virtual uint64_t CreateQueryAllUGCRequest( uint32_t, uint32_t, uint32_t, uint32_t, uint32_t ) = 0; virtual uint64_t SendQueryUGCRequest( uint64_t ) = 0; - virtual bool GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; - virtual bool ReleaseQueryUGCRequest( uint64_t ) = 0; - virtual bool AddRequiredTag( uint64_t, const char * ) = 0; - virtual bool AddExcludedTag( uint64_t, const char * ) = 0; - virtual bool SetReturnLongDescription( uint64_t, bool ) = 0; - virtual bool SetReturnTotalOnly( uint64_t, bool ) = 0; - virtual bool SetAllowCachedResponse( uint64_t, uint32_t ) = 0; - virtual bool SetCloudFileNameFilter( uint64_t, const char * ) = 0; - virtual bool SetMatchAnyTag( uint64_t, bool ) = 0; - virtual bool SetSearchText( uint64_t, const char * ) = 0; - virtual bool SetRankedByTrendDays( uint64_t, uint32_t ) = 0; + virtual int8_t GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; + virtual int8_t ReleaseQueryUGCRequest( uint64_t ) = 0; + virtual int8_t AddRequiredTag( uint64_t, const char * ) = 0; + virtual int8_t AddExcludedTag( uint64_t, const char * ) = 0; + virtual int8_t SetReturnLongDescription( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnTotalOnly( uint64_t, int8_t ) = 0; + virtual int8_t SetAllowCachedResponse( uint64_t, uint32_t ) = 0; + virtual int8_t SetCloudFileNameFilter( uint64_t, const char * ) = 0; + virtual int8_t SetMatchAnyTag( uint64_t, int8_t ) = 0; + virtual int8_t SetSearchText( uint64_t, const char * ) = 0; + virtual int8_t SetRankedByTrendDays( uint64_t, uint32_t ) = 0; virtual uint64_t RequestUGCDetails( uint64_t, uint32_t ) = 0; virtual uint64_t CreateItem( uint32_t, uint32_t ) = 0; virtual uint64_t StartItemUpdate( uint32_t, uint64_t ) = 0; - virtual bool SetItemTitle( uint64_t, const char * ) = 0; - virtual bool SetItemDescription( uint64_t, const char * ) = 0; - virtual bool SetItemVisibility( uint64_t, uint32_t ) = 0; - virtual bool SetItemTags( uint64_t, const u_SteamParamStringArray_t * ) = 0; - virtual bool SetItemContent( uint64_t, const char * ) = 0; - virtual bool SetItemPreview( uint64_t, const char * ) = 0; + virtual int8_t SetItemTitle( uint64_t, const char * ) = 0; + virtual int8_t SetItemDescription( uint64_t, const char * ) = 0; + virtual int8_t SetItemVisibility( uint64_t, uint32_t ) = 0; + virtual int8_t SetItemTags( uint64_t, const u_SteamParamStringArray_t * ) = 0; + virtual int8_t SetItemContent( uint64_t, const char * ) = 0; + virtual int8_t SetItemPreview( uint64_t, const char * ) = 0; virtual uint64_t SubmitItemUpdate( uint64_t, const char * ) = 0; virtual uint32_t GetItemUpdateProgress( uint64_t, uint64_t *, uint64_t * ) = 0; virtual uint64_t SubscribeItem( uint64_t ) = 0; virtual uint64_t UnsubscribeItem( uint64_t ) = 0; virtual uint32_t GetNumSubscribedItems( ) = 0; virtual uint32_t GetSubscribedItems( uint64_t *, uint32_t ) = 0; - virtual bool GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t ) = 0; - virtual bool GetItemUpdateInfo( uint64_t, bool *, bool *, uint64_t *, uint64_t * ) = 0; + virtual int8_t GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t ) = 0; + virtual int8_t GetItemUpdateInfo( uint64_t, int8_t *, int8_t *, uint64_t *, uint64_t * ) = 0; #endif /* __cplusplus */ }; @@ -3299,23 +3299,23 @@ struct u_ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001 struct u_ISteamGameServer_SteamGameServer012 { #ifdef __cplusplus - virtual bool InitGameServer( uint32_t, uint16_t, uint16_t, uint32_t, uint32_t, const char * ) = 0; + virtual int8_t InitGameServer( uint32_t, uint16_t, uint16_t, uint32_t, uint32_t, const char * ) = 0; virtual void SetProduct( const char * ) = 0; virtual void SetGameDescription( const char * ) = 0; virtual void SetModDir( const char * ) = 0; - virtual void SetDedicatedServer( bool ) = 0; + virtual void SetDedicatedServer( int8_t ) = 0; virtual void LogOn( const char * ) = 0; virtual void LogOnAnonymous( ) = 0; virtual void LogOff( ) = 0; - virtual bool BLoggedOn( ) = 0; - virtual bool BSecure( ) = 0; + virtual int8_t BLoggedOn( ) = 0; + virtual int8_t BSecure( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual bool WasRestartRequested( ) = 0; + virtual int8_t WasRestartRequested( ) = 0; virtual void SetMaxPlayerCount( int32_t ) = 0; virtual void SetBotPlayerCount( int32_t ) = 0; virtual void SetServerName( const char * ) = 0; virtual void SetMapName( const char * ) = 0; - virtual void SetPasswordProtected( bool ) = 0; + virtual void SetPasswordProtected( int8_t ) = 0; virtual void SetSpectatorPort( uint16_t ) = 0; virtual void SetSpectatorServerName( const char * ) = 0; virtual void ClearAllKeyValues( ) = 0; @@ -3323,22 +3323,22 @@ struct u_ISteamGameServer_SteamGameServer012 virtual void SetGameTags( const char * ) = 0; virtual void SetGameData( const char * ) = 0; virtual void SetRegion( const char * ) = 0; - virtual bool SendUserConnectAndAuthenticate( uint32_t, const void *, uint32_t, CSteamID * ) = 0; + virtual int8_t SendUserConnectAndAuthenticate( uint32_t, const void *, uint32_t, CSteamID * ) = 0; virtual CSteamID CreateUnauthenticatedUserConnection( ) = 0; virtual void SendUserDisconnect( CSteamID ) = 0; - virtual bool BUpdateUserData( CSteamID, const char *, uint32_t ) = 0; + virtual int8_t BUpdateUserData( CSteamID, const char *, uint32_t ) = 0; virtual uint32_t GetAuthSessionTicket( void *, int32_t, uint32_t * ) = 0; virtual uint32_t BeginAuthSession( const void *, int32_t, CSteamID ) = 0; virtual void EndAuthSession( CSteamID ) = 0; virtual void CancelAuthTicket( uint32_t ) = 0; virtual uint32_t UserHasLicenseForApp( CSteamID, uint32_t ) = 0; - virtual bool RequestUserGroupStatus( CSteamID, CSteamID ) = 0; + virtual int8_t RequestUserGroupStatus( CSteamID, CSteamID ) = 0; virtual void GetGameplayStats( ) = 0; virtual uint64_t GetServerReputation( ) = 0; virtual uint32_t GetPublicIP( ) = 0; - virtual bool HandleIncomingPacket( const void *, int32_t, uint32_t, uint16_t ) = 0; + virtual int8_t HandleIncomingPacket( const void *, int32_t, uint32_t, uint16_t ) = 0; virtual int32_t GetNextOutgoingPacket( void *, int32_t, uint32_t *, uint16_t * ) = 0; - virtual void EnableHeartbeats( bool ) = 0; + virtual void EnableHeartbeats( int8_t ) = 0; virtual void SetHeartbeatInterval( int32_t ) = 0; virtual void ForceHeartbeat( ) = 0; virtual uint64_t AssociateWithClan( CSteamID ) = 0; @@ -3350,7 +3350,7 @@ struct u_ISteamClient_SteamClient014 { #ifdef __cplusplus virtual int32_t CreateSteamPipe( ) = 0; - virtual bool BReleaseSteamPipe( int32_t ) = 0; + virtual int8_t BReleaseSteamPipe( int32_t ) = 0; virtual int32_t ConnectToGlobalUser( int32_t ) = 0; virtual int32_t CreateLocalUser( int32_t *, uint32_t ) = 0; virtual void ReleaseUser( int32_t, int32_t ) = 0; @@ -3371,7 +3371,7 @@ struct u_ISteamClient_SteamClient014 virtual void RunFrame( ) = 0; virtual uint32_t GetIPCCallCount( ) = 0; virtual void SetWarningMessageHook( void (*U_CDECL )(int32_t, const char *) ) = 0; - virtual bool BShutdownIfAllPipesClosed( ) = 0; + virtual int8_t BShutdownIfAllPipesClosed( ) = 0; virtual void /*ISteamHTTP*/ * GetISteamHTTP( int32_t, int32_t, const char * ) = 0; virtual void /*ISteamUnifiedMessages*/ * GetISteamUnifiedMessages( int32_t, int32_t, const char * ) = 0; virtual void /*ISteamController*/ * GetISteamController( int32_t, int32_t, const char * ) = 0; @@ -3385,7 +3385,7 @@ struct u_ISteamClient_SteamClient015 { #ifdef __cplusplus virtual int32_t CreateSteamPipe( ) = 0; - virtual bool BReleaseSteamPipe( int32_t ) = 0; + virtual int8_t BReleaseSteamPipe( int32_t ) = 0; virtual int32_t ConnectToGlobalUser( int32_t ) = 0; virtual int32_t CreateLocalUser( int32_t *, uint32_t ) = 0; virtual void ReleaseUser( int32_t, int32_t ) = 0; @@ -3406,7 +3406,7 @@ struct u_ISteamClient_SteamClient015 virtual void RunFrame( ) = 0; virtual uint32_t GetIPCCallCount( ) = 0; virtual void SetWarningMessageHook( void (*U_CDECL )(int32_t, const char *) ) = 0; - virtual bool BShutdownIfAllPipesClosed( ) = 0; + virtual int8_t BShutdownIfAllPipesClosed( ) = 0; virtual void /*ISteamHTTP*/ * GetISteamHTTP( int32_t, int32_t, const char * ) = 0; virtual void /*ISteamUnifiedMessages*/ * GetISteamUnifiedMessages( int32_t, int32_t, const char * ) = 0; virtual void /*ISteamController*/ * GetISteamController( int32_t, int32_t, const char * ) = 0; @@ -3420,38 +3420,38 @@ struct u_ISteamClient_SteamClient015 struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 { #ifdef __cplusplus - virtual bool RegisterSteamMusicRemote( const char * ) = 0; - virtual bool DeregisterSteamMusicRemote( ) = 0; - virtual bool BIsCurrentMusicRemote( ) = 0; - virtual bool BActivationSuccess( bool ) = 0; - virtual bool SetDisplayName( const char * ) = 0; - virtual bool SetPNGIcon_64x64( void *, uint32_t ) = 0; - virtual bool EnablePlayPrevious( bool ) = 0; - virtual bool EnablePlayNext( bool ) = 0; - virtual bool EnableShuffled( bool ) = 0; - virtual bool EnableLooped( bool ) = 0; - virtual bool EnableQueue( bool ) = 0; - virtual bool EnablePlaylists( bool ) = 0; - virtual bool UpdatePlaybackStatus( uint32_t ) = 0; - virtual bool UpdateShuffled( bool ) = 0; - virtual bool UpdateLooped( bool ) = 0; - virtual bool UpdateVolume( float ) = 0; - virtual bool CurrentEntryWillChange( ) = 0; - virtual bool CurrentEntryIsAvailable( bool ) = 0; - virtual bool UpdateCurrentEntryText( const char * ) = 0; - virtual bool UpdateCurrentEntryElapsedSeconds( int32_t ) = 0; - virtual bool UpdateCurrentEntryCoverArt( void *, uint32_t ) = 0; - virtual bool CurrentEntryDidChange( ) = 0; - virtual bool QueueWillChange( ) = 0; - virtual bool ResetQueueEntries( ) = 0; - virtual bool SetQueueEntry( int32_t, int32_t, const char * ) = 0; - virtual bool SetCurrentQueueEntry( int32_t ) = 0; - virtual bool QueueDidChange( ) = 0; - virtual bool PlaylistWillChange( ) = 0; - virtual bool ResetPlaylistEntries( ) = 0; - virtual bool SetPlaylistEntry( int32_t, int32_t, const char * ) = 0; - virtual bool SetCurrentPlaylistEntry( int32_t ) = 0; - virtual bool PlaylistDidChange( ) = 0; + virtual int8_t RegisterSteamMusicRemote( const char * ) = 0; + virtual int8_t DeregisterSteamMusicRemote( ) = 0; + virtual int8_t BIsCurrentMusicRemote( ) = 0; + virtual int8_t BActivationSuccess( int8_t ) = 0; + virtual int8_t SetDisplayName( const char * ) = 0; + virtual int8_t SetPNGIcon_64x64( void *, uint32_t ) = 0; + virtual int8_t EnablePlayPrevious( int8_t ) = 0; + virtual int8_t EnablePlayNext( int8_t ) = 0; + virtual int8_t EnableShuffled( int8_t ) = 0; + virtual int8_t EnableLooped( int8_t ) = 0; + virtual int8_t EnableQueue( int8_t ) = 0; + virtual int8_t EnablePlaylists( int8_t ) = 0; + virtual int8_t UpdatePlaybackStatus( uint32_t ) = 0; + virtual int8_t UpdateShuffled( int8_t ) = 0; + virtual int8_t UpdateLooped( int8_t ) = 0; + virtual int8_t UpdateVolume( float ) = 0; + virtual int8_t CurrentEntryWillChange( ) = 0; + virtual int8_t CurrentEntryIsAvailable( int8_t ) = 0; + virtual int8_t UpdateCurrentEntryText( const char * ) = 0; + virtual int8_t UpdateCurrentEntryElapsedSeconds( int32_t ) = 0; + virtual int8_t UpdateCurrentEntryCoverArt( void *, uint32_t ) = 0; + virtual int8_t CurrentEntryDidChange( ) = 0; + virtual int8_t QueueWillChange( ) = 0; + virtual int8_t ResetQueueEntries( ) = 0; + virtual int8_t SetQueueEntry( int32_t, int32_t, const char * ) = 0; + virtual int8_t SetCurrentQueueEntry( int32_t ) = 0; + virtual int8_t QueueDidChange( ) = 0; + virtual int8_t PlaylistWillChange( ) = 0; + virtual int8_t ResetPlaylistEntries( ) = 0; + virtual int8_t SetPlaylistEntry( int32_t, int32_t, const char * ) = 0; + virtual int8_t SetCurrentPlaylistEntry( int32_t ) = 0; + virtual int8_t PlaylistDidChange( ) = 0; #endif /* __cplusplus */ }; @@ -3459,7 +3459,7 @@ struct u_ISteamClient_SteamClient016 { #ifdef __cplusplus virtual int32_t CreateSteamPipe( ) = 0; - virtual bool BReleaseSteamPipe( int32_t ) = 0; + virtual int8_t BReleaseSteamPipe( int32_t ) = 0; virtual int32_t ConnectToGlobalUser( int32_t ) = 0; virtual int32_t CreateLocalUser( int32_t *, uint32_t ) = 0; virtual void ReleaseUser( int32_t, int32_t ) = 0; @@ -3480,7 +3480,7 @@ struct u_ISteamClient_SteamClient016 virtual void RunFrame( ) = 0; virtual uint32_t GetIPCCallCount( ) = 0; virtual void SetWarningMessageHook( void (*U_CDECL )(int32_t, const char *) ) = 0; - virtual bool BShutdownIfAllPipesClosed( ) = 0; + virtual int8_t BShutdownIfAllPipesClosed( ) = 0; virtual void /*ISteamHTTP*/ * GetISteamHTTP( int32_t, int32_t, const char * ) = 0; virtual void /*ISteamUnifiedMessages*/ * GetISteamUnifiedMessages( int32_t, int32_t, const char * ) = 0; virtual void /*ISteamController*/ * GetISteamController( int32_t, int32_t, const char * ) = 0; @@ -3501,34 +3501,34 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 virtual uint64_t CreateQueryUserUGCRequest( uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t ) = 0; virtual uint64_t CreateQueryAllUGCRequest( uint32_t, uint32_t, uint32_t, uint32_t, uint32_t ) = 0; virtual uint64_t SendQueryUGCRequest( uint64_t ) = 0; - virtual bool GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; - virtual bool ReleaseQueryUGCRequest( uint64_t ) = 0; - virtual bool AddRequiredTag( uint64_t, const char * ) = 0; - virtual bool AddExcludedTag( uint64_t, const char * ) = 0; - virtual bool SetReturnLongDescription( uint64_t, bool ) = 0; - virtual bool SetReturnTotalOnly( uint64_t, bool ) = 0; - virtual bool SetAllowCachedResponse( uint64_t, uint32_t ) = 0; - virtual bool SetCloudFileNameFilter( uint64_t, const char * ) = 0; - virtual bool SetMatchAnyTag( uint64_t, bool ) = 0; - virtual bool SetSearchText( uint64_t, const char * ) = 0; - virtual bool SetRankedByTrendDays( uint64_t, uint32_t ) = 0; + virtual int8_t GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; + virtual int8_t ReleaseQueryUGCRequest( uint64_t ) = 0; + virtual int8_t AddRequiredTag( uint64_t, const char * ) = 0; + virtual int8_t AddExcludedTag( uint64_t, const char * ) = 0; + virtual int8_t SetReturnLongDescription( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnTotalOnly( uint64_t, int8_t ) = 0; + virtual int8_t SetAllowCachedResponse( uint64_t, uint32_t ) = 0; + virtual int8_t SetCloudFileNameFilter( uint64_t, const char * ) = 0; + virtual int8_t SetMatchAnyTag( uint64_t, int8_t ) = 0; + virtual int8_t SetSearchText( uint64_t, const char * ) = 0; + virtual int8_t SetRankedByTrendDays( uint64_t, uint32_t ) = 0; virtual uint64_t RequestUGCDetails( uint64_t, uint32_t ) = 0; virtual uint64_t CreateItem( uint32_t, uint32_t ) = 0; virtual uint64_t StartItemUpdate( uint32_t, uint64_t ) = 0; - virtual bool SetItemTitle( uint64_t, const char * ) = 0; - virtual bool SetItemDescription( uint64_t, const char * ) = 0; - virtual bool SetItemVisibility( uint64_t, uint32_t ) = 0; - virtual bool SetItemTags( uint64_t, const u_SteamParamStringArray_t * ) = 0; - virtual bool SetItemContent( uint64_t, const char * ) = 0; - virtual bool SetItemPreview( uint64_t, const char * ) = 0; + virtual int8_t SetItemTitle( uint64_t, const char * ) = 0; + virtual int8_t SetItemDescription( uint64_t, const char * ) = 0; + virtual int8_t SetItemVisibility( uint64_t, uint32_t ) = 0; + virtual int8_t SetItemTags( uint64_t, const u_SteamParamStringArray_t * ) = 0; + virtual int8_t SetItemContent( uint64_t, const char * ) = 0; + virtual int8_t SetItemPreview( uint64_t, const char * ) = 0; virtual uint64_t SubmitItemUpdate( uint64_t, const char * ) = 0; virtual uint32_t GetItemUpdateProgress( uint64_t, uint64_t *, uint64_t * ) = 0; virtual uint64_t SubscribeItem( uint64_t ) = 0; virtual uint64_t UnsubscribeItem( uint64_t ) = 0; virtual uint32_t GetNumSubscribedItems( ) = 0; virtual uint32_t GetSubscribedItems( uint64_t *, uint32_t ) = 0; - virtual bool GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, bool * ) = 0; - virtual bool GetItemUpdateInfo( uint64_t, bool *, bool *, uint64_t *, uint64_t * ) = 0; + virtual int8_t GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, int8_t * ) = 0; + virtual int8_t GetItemUpdateInfo( uint64_t, int8_t *, int8_t *, uint64_t *, uint64_t * ) = 0; #endif /* __cplusplus */ }; @@ -3536,8 +3536,8 @@ struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 { #ifdef __cplusplus virtual ~u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001( ) = 0; - virtual bool Init( ) = 0; - virtual bool Shutdown( ) = 0; + virtual int8_t Init( ) = 0; + virtual int8_t Shutdown( ) = 0; virtual uint64_t CreateBrowser( const char *, const char * ) = 0; virtual void RemoveBrowser( uint32_t ) = 0; virtual void LoadURL( uint32_t, const char *, const char * ) = 0; @@ -3558,15 +3558,15 @@ struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 virtual void KeyChar( uint32_t, uint32_t, uint32_t ) = 0; virtual void SetHorizontalScroll( uint32_t, uint32_t ) = 0; virtual void SetVerticalScroll( uint32_t, uint32_t ) = 0; - virtual void SetKeyFocus( uint32_t, bool ) = 0; + virtual void SetKeyFocus( uint32_t, int8_t ) = 0; virtual void ViewSource( uint32_t ) = 0; virtual void CopyToClipboard( uint32_t ) = 0; virtual void PasteFromClipboard( uint32_t ) = 0; - virtual void Find( uint32_t, const char *, bool, bool ) = 0; + virtual void Find( uint32_t, const char *, int8_t, int8_t ) = 0; virtual void StopFind( uint32_t ) = 0; virtual void GetLinkAtPosition( uint32_t, int32_t, int32_t ) = 0; - virtual void AllowStartRequest( uint32_t, bool ) = 0; - virtual void JSDialogResponse( uint32_t, bool ) = 0; + virtual void AllowStartRequest( uint32_t, int8_t ) = 0; + virtual void JSDialogResponse( uint32_t, int8_t ) = 0; virtual void FileLoadDialogResponse( uint32_t, const char ** ) = 0; #endif /* __cplusplus */ }; @@ -3575,8 +3575,8 @@ struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 { #ifdef __cplusplus virtual ~u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002( ) = 0; - virtual bool Init( ) = 0; - virtual bool Shutdown( ) = 0; + virtual int8_t Init( ) = 0; + virtual int8_t Shutdown( ) = 0; virtual uint64_t CreateBrowser( const char *, const char * ) = 0; virtual void RemoveBrowser( uint32_t ) = 0; virtual void LoadURL( uint32_t, const char *, const char * ) = 0; @@ -3597,17 +3597,17 @@ struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 virtual void KeyChar( uint32_t, uint32_t, uint32_t ) = 0; virtual void SetHorizontalScroll( uint32_t, uint32_t ) = 0; virtual void SetVerticalScroll( uint32_t, uint32_t ) = 0; - virtual void SetKeyFocus( uint32_t, bool ) = 0; + virtual void SetKeyFocus( uint32_t, int8_t ) = 0; virtual void ViewSource( uint32_t ) = 0; virtual void CopyToClipboard( uint32_t ) = 0; virtual void PasteFromClipboard( uint32_t ) = 0; - virtual void Find( uint32_t, const char *, bool, bool ) = 0; + virtual void Find( uint32_t, const char *, int8_t, int8_t ) = 0; virtual void StopFind( uint32_t ) = 0; virtual void GetLinkAtPosition( uint32_t, int32_t, int32_t ) = 0; - virtual void SetCookie( const char *, const char *, const char *, const char *, uint32_t, bool, bool ) = 0; + virtual void SetCookie( const char *, const char *, const char *, const char *, uint32_t, int8_t, int8_t ) = 0; virtual void SetPageScaleFactor( uint32_t, float, int32_t, int32_t ) = 0; - virtual void AllowStartRequest( uint32_t, bool ) = 0; - virtual void JSDialogResponse( uint32_t, bool ) = 0; + virtual void AllowStartRequest( uint32_t, int8_t ) = 0; + virtual void JSDialogResponse( uint32_t, int8_t ) = 0; virtual void FileLoadDialogResponse( uint32_t, const char ** ) = 0; #endif /* __cplusplus */ }; @@ -3616,7 +3616,7 @@ struct u_ISteamClient_SteamClient017 { #ifdef __cplusplus virtual int32_t CreateSteamPipe( ) = 0; - virtual bool BReleaseSteamPipe( int32_t ) = 0; + virtual int8_t BReleaseSteamPipe( int32_t ) = 0; virtual int32_t ConnectToGlobalUser( int32_t ) = 0; virtual int32_t CreateLocalUser( int32_t *, uint32_t ) = 0; virtual void ReleaseUser( int32_t, int32_t ) = 0; @@ -3637,7 +3637,7 @@ struct u_ISteamClient_SteamClient017 virtual void RunFrame( ) = 0; virtual uint32_t GetIPCCallCount( ) = 0; virtual void SetWarningMessageHook( void (*U_CDECL )(int32_t, const char *) ) = 0; - virtual bool BShutdownIfAllPipesClosed( ) = 0; + virtual int8_t BShutdownIfAllPipesClosed( ) = 0; virtual void /*ISteamHTTP*/ * GetISteamHTTP( int32_t, int32_t, const char * ) = 0; virtual void * DEPRECATED_GetISteamUnifiedMessages( int32_t, int32_t, const char * ) = 0; virtual void /*ISteamController*/ * GetISteamController( int32_t, int32_t, const char * ) = 0; @@ -3659,16 +3659,16 @@ struct u_ISteamUser_SteamUser018 { #ifdef __cplusplus virtual int32_t GetHSteamUser( ) = 0; - virtual bool BLoggedOn( ) = 0; + virtual int8_t BLoggedOn( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, uint32_t, uint16_t, bool ) = 0; + virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, uint32_t, uint16_t, int8_t ) = 0; virtual void TerminateGameConnection( uint32_t, uint16_t ) = 0; virtual void TrackAppUsageEvent( CGameID, int32_t, const char * ) = 0; - virtual bool GetUserDataFolder( char *, int32_t ) = 0; + virtual int8_t GetUserDataFolder( char *, int32_t ) = 0; virtual void StartVoiceRecording( ) = 0; virtual void StopVoiceRecording( ) = 0; virtual uint32_t GetAvailableVoice( uint32_t *, uint32_t *, uint32_t ) = 0; - virtual uint32_t GetVoice( bool, void *, uint32_t, uint32_t *, bool, void *, uint32_t, uint32_t *, uint32_t ) = 0; + virtual uint32_t GetVoice( int8_t, void *, uint32_t, uint32_t *, int8_t, void *, uint32_t, uint32_t *, uint32_t ) = 0; virtual uint32_t DecompressVoice( const void *, uint32_t, void *, uint32_t, uint32_t *, uint32_t ) = 0; virtual uint32_t GetVoiceOptimalSampleRate( ) = 0; virtual uint32_t GetAuthSessionTicket( void *, int32_t, uint32_t * ) = 0; @@ -3676,11 +3676,11 @@ struct u_ISteamUser_SteamUser018 virtual void EndAuthSession( CSteamID ) = 0; virtual void CancelAuthTicket( uint32_t ) = 0; virtual uint32_t UserHasLicenseForApp( CSteamID, uint32_t ) = 0; - virtual bool BIsBehindNAT( ) = 0; + virtual int8_t BIsBehindNAT( ) = 0; virtual void AdvertiseGame( CSteamID, uint32_t, uint16_t ) = 0; virtual uint64_t RequestEncryptedAppTicket( void *, int32_t ) = 0; - virtual bool GetEncryptedAppTicket( void *, int32_t, uint32_t * ) = 0; - virtual int32_t GetGameBadgeLevel( int32_t, bool ) = 0; + virtual int8_t GetEncryptedAppTicket( void *, int32_t, uint32_t * ) = 0; + virtual int32_t GetGameBadgeLevel( int32_t, int8_t ) = 0; virtual int32_t GetPlayerSteamLevel( ) = 0; virtual uint64_t RequestStoreAuthURL( const char * ) = 0; #endif /* __cplusplus */ @@ -3697,7 +3697,7 @@ struct u_ISteamFriends_SteamFriends015 virtual uint32_t GetFriendRelationship( CSteamID ) = 0; virtual uint32_t GetFriendPersonaState( CSteamID ) = 0; virtual const char * GetFriendPersonaName( CSteamID ) = 0; - virtual bool GetFriendGamePlayed( CSteamID, FriendGameInfo_t * ) = 0; + virtual int8_t GetFriendGamePlayed( CSteamID, FriendGameInfo_t * ) = 0; virtual const char * GetFriendPersonaNameHistory( CSteamID, int32_t ) = 0; virtual int32_t GetFriendSteamLevel( CSteamID ) = 0; virtual const char * GetPlayerNickname( CSteamID ) = 0; @@ -3706,17 +3706,17 @@ struct u_ISteamFriends_SteamFriends015 virtual const char * GetFriendsGroupName( int16_t ) = 0; virtual int32_t GetFriendsGroupMembersCount( int16_t ) = 0; virtual void GetFriendsGroupMembersList( int16_t, CSteamID *, int32_t ) = 0; - virtual bool HasFriend( CSteamID, int32_t ) = 0; + virtual int8_t HasFriend( CSteamID, int32_t ) = 0; virtual int32_t GetClanCount( ) = 0; virtual CSteamID GetClanByIndex( int32_t ) = 0; virtual const char * GetClanName( CSteamID ) = 0; virtual const char * GetClanTag( CSteamID ) = 0; - virtual bool GetClanActivityCounts( CSteamID, int32_t *, int32_t *, int32_t * ) = 0; + virtual int8_t GetClanActivityCounts( CSteamID, int32_t *, int32_t *, int32_t * ) = 0; virtual uint64_t DownloadClanActivityCounts( CSteamID *, int32_t ) = 0; virtual int32_t GetFriendCountFromSource( CSteamID ) = 0; virtual CSteamID GetFriendFromSourceByIndex( CSteamID, int32_t ) = 0; - virtual bool IsUserInSource( CSteamID, CSteamID ) = 0; - virtual void SetInGameVoiceSpeaking( CSteamID, bool ) = 0; + virtual int8_t IsUserInSource( CSteamID, CSteamID ) = 0; + virtual void SetInGameVoiceSpeaking( CSteamID, int8_t ) = 0; virtual void ActivateGameOverlay( const char * ) = 0; virtual void ActivateGameOverlayToUser( const char *, CSteamID ) = 0; virtual void ActivateGameOverlayToWebPage( const char * ) = 0; @@ -3726,70 +3726,70 @@ struct u_ISteamFriends_SteamFriends015 virtual int32_t GetSmallFriendAvatar( CSteamID ) = 0; virtual int32_t GetMediumFriendAvatar( CSteamID ) = 0; virtual int32_t GetLargeFriendAvatar( CSteamID ) = 0; - virtual bool RequestUserInformation( CSteamID, bool ) = 0; + virtual int8_t RequestUserInformation( CSteamID, int8_t ) = 0; virtual uint64_t RequestClanOfficerList( CSteamID ) = 0; virtual CSteamID GetClanOwner( CSteamID ) = 0; virtual int32_t GetClanOfficerCount( CSteamID ) = 0; virtual CSteamID GetClanOfficerByIndex( CSteamID, int32_t ) = 0; virtual uint32_t GetUserRestrictions( ) = 0; - virtual bool SetRichPresence( const char *, const char * ) = 0; + virtual int8_t SetRichPresence( const char *, const char * ) = 0; virtual void ClearRichPresence( ) = 0; virtual const char * GetFriendRichPresence( CSteamID, const char * ) = 0; virtual int32_t GetFriendRichPresenceKeyCount( CSteamID ) = 0; virtual const char * GetFriendRichPresenceKeyByIndex( CSteamID, int32_t ) = 0; virtual void RequestFriendRichPresence( CSteamID ) = 0; - virtual bool InviteUserToGame( CSteamID, const char * ) = 0; + virtual int8_t InviteUserToGame( CSteamID, const char * ) = 0; virtual int32_t GetCoplayFriendCount( ) = 0; virtual CSteamID GetCoplayFriend( int32_t ) = 0; virtual int32_t GetFriendCoplayTime( CSteamID ) = 0; virtual uint32_t GetFriendCoplayGame( CSteamID ) = 0; virtual uint64_t JoinClanChatRoom( CSteamID ) = 0; - virtual bool LeaveClanChatRoom( CSteamID ) = 0; + virtual int8_t LeaveClanChatRoom( CSteamID ) = 0; virtual int32_t GetClanChatMemberCount( CSteamID ) = 0; virtual CSteamID GetChatMemberByIndex( CSteamID, int32_t ) = 0; - virtual bool SendClanChatMessage( CSteamID, const char * ) = 0; + virtual int8_t SendClanChatMessage( CSteamID, const char * ) = 0; virtual int32_t GetClanChatMessage( CSteamID, int32_t, void *, int32_t, uint32_t *, CSteamID * ) = 0; - virtual bool IsClanChatAdmin( CSteamID, CSteamID ) = 0; - virtual bool IsClanChatWindowOpenInSteam( CSteamID ) = 0; - virtual bool OpenClanChatWindowInSteam( CSteamID ) = 0; - virtual bool CloseClanChatWindowInSteam( CSteamID ) = 0; - virtual bool SetListenForFriendsMessages( bool ) = 0; - virtual bool ReplyToFriendMessage( CSteamID, const char * ) = 0; + virtual int8_t IsClanChatAdmin( CSteamID, CSteamID ) = 0; + virtual int8_t IsClanChatWindowOpenInSteam( CSteamID ) = 0; + virtual int8_t OpenClanChatWindowInSteam( CSteamID ) = 0; + virtual int8_t CloseClanChatWindowInSteam( CSteamID ) = 0; + virtual int8_t SetListenForFriendsMessages( int8_t ) = 0; + virtual int8_t ReplyToFriendMessage( CSteamID, const char * ) = 0; virtual int32_t GetFriendMessage( CSteamID, int32_t, void *, int32_t, uint32_t * ) = 0; virtual uint64_t GetFollowerCount( CSteamID ) = 0; virtual uint64_t IsFollowing( CSteamID ) = 0; virtual uint64_t EnumerateFollowingList( uint32_t ) = 0; - virtual bool IsClanPublic( CSteamID ) = 0; - virtual bool IsClanOfficialGameGroup( CSteamID ) = 0; + virtual int8_t IsClanPublic( CSteamID ) = 0; + virtual int8_t IsClanOfficialGameGroup( CSteamID ) = 0; #endif /* __cplusplus */ }; struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 { #ifdef __cplusplus - virtual bool BIsSubscribed( ) = 0; - virtual bool BIsLowViolence( ) = 0; - virtual bool BIsCybercafe( ) = 0; - virtual bool BIsVACBanned( ) = 0; + virtual int8_t BIsSubscribed( ) = 0; + virtual int8_t BIsLowViolence( ) = 0; + virtual int8_t BIsCybercafe( ) = 0; + virtual int8_t BIsVACBanned( ) = 0; virtual const char * GetCurrentGameLanguage( ) = 0; virtual const char * GetAvailableGameLanguages( ) = 0; - virtual bool BIsSubscribedApp( uint32_t ) = 0; - virtual bool BIsDlcInstalled( uint32_t ) = 0; + virtual int8_t BIsSubscribedApp( uint32_t ) = 0; + virtual int8_t BIsDlcInstalled( uint32_t ) = 0; virtual uint32_t GetEarliestPurchaseUnixTime( uint32_t ) = 0; - virtual bool BIsSubscribedFromFreeWeekend( ) = 0; + virtual int8_t BIsSubscribedFromFreeWeekend( ) = 0; virtual int32_t GetDLCCount( ) = 0; - virtual bool BGetDLCDataByIndex( int32_t, uint32_t *, bool *, char *, int32_t ) = 0; + virtual int8_t BGetDLCDataByIndex( int32_t, uint32_t *, int8_t *, char *, int32_t ) = 0; virtual void InstallDLC( uint32_t ) = 0; virtual void UninstallDLC( uint32_t ) = 0; virtual void RequestAppProofOfPurchaseKey( uint32_t ) = 0; - virtual bool GetCurrentBetaName( char *, int32_t ) = 0; - virtual bool MarkContentCorrupt( bool ) = 0; + virtual int8_t GetCurrentBetaName( char *, int32_t ) = 0; + virtual int8_t MarkContentCorrupt( int8_t ) = 0; virtual uint32_t GetInstalledDepots( uint32_t, uint32_t *, uint32_t ) = 0; virtual uint32_t GetAppInstallDir( uint32_t, char *, uint32_t ) = 0; - virtual bool BIsAppInstalled( uint32_t ) = 0; + virtual int8_t BIsAppInstalled( uint32_t ) = 0; virtual CSteamID GetAppOwner( ) = 0; virtual const char * GetLaunchQueryParam( const char * ) = 0; - virtual bool GetDlcDownloadProgress( uint32_t, uint64_t *, uint64_t * ) = 0; + virtual int8_t GetDlcDownloadProgress( uint32_t, uint64_t *, uint64_t * ) = 0; virtual int32_t GetAppBuildId( ) = 0; #endif /* __cplusplus */ }; @@ -3798,29 +3798,29 @@ struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 { #ifdef __cplusplus virtual uint32_t GetResultStatus( int32_t ) = 0; - virtual bool GetResultItems( int32_t, SteamItemDetails_t *, uint32_t * ) = 0; + virtual int8_t GetResultItems( int32_t, SteamItemDetails_t *, uint32_t * ) = 0; virtual uint32_t GetResultTimestamp( int32_t ) = 0; - virtual bool CheckResultSteamID( int32_t, CSteamID ) = 0; + virtual int8_t CheckResultSteamID( int32_t, CSteamID ) = 0; virtual void DestroyResult( int32_t ) = 0; - virtual bool GetAllItems( int32_t * ) = 0; - virtual bool GetItemsByID( int32_t *, const uint64_t *, uint32_t ) = 0; - virtual bool SerializeResult( int32_t, void *, uint32_t * ) = 0; - virtual bool DeserializeResult( int32_t *, const void *, uint32_t, bool ) = 0; - virtual bool GenerateItems( int32_t *, const int32_t *, const uint32_t *, uint32_t ) = 0; - virtual bool GrantPromoItems( int32_t * ) = 0; - virtual bool AddPromoItem( int32_t *, int32_t ) = 0; - virtual bool AddPromoItems( int32_t *, const int32_t *, uint32_t ) = 0; - virtual bool ConsumeItem( int32_t *, uint64_t, uint32_t ) = 0; - virtual bool ExchangeItems( int32_t *, const int32_t *, const uint32_t *, uint32_t, const uint64_t *, const uint32_t *, uint32_t ) = 0; - virtual bool TransferItemQuantity( int32_t *, uint64_t, uint32_t, uint64_t ) = 0; + virtual int8_t GetAllItems( int32_t * ) = 0; + virtual int8_t GetItemsByID( int32_t *, const uint64_t *, uint32_t ) = 0; + virtual int8_t SerializeResult( int32_t, void *, uint32_t * ) = 0; + virtual int8_t DeserializeResult( int32_t *, const void *, uint32_t, int8_t ) = 0; + virtual int8_t GenerateItems( int32_t *, const int32_t *, const uint32_t *, uint32_t ) = 0; + virtual int8_t GrantPromoItems( int32_t * ) = 0; + virtual int8_t AddPromoItem( int32_t *, int32_t ) = 0; + virtual int8_t AddPromoItems( int32_t *, const int32_t *, uint32_t ) = 0; + virtual int8_t ConsumeItem( int32_t *, uint64_t, uint32_t ) = 0; + virtual int8_t ExchangeItems( int32_t *, const int32_t *, const uint32_t *, uint32_t, const uint64_t *, const uint32_t *, uint32_t ) = 0; + virtual int8_t TransferItemQuantity( int32_t *, uint64_t, uint32_t, uint64_t ) = 0; virtual void SendItemDropHeartbeat( ) = 0; - virtual bool TriggerItemDrop( int32_t *, int32_t ) = 0; - virtual bool TradeItems( int32_t *, CSteamID, const uint64_t *, const uint32_t *, uint32_t, const uint64_t *, const uint32_t *, uint32_t ) = 0; - virtual bool LoadItemDefinitions( ) = 0; - virtual bool GetItemDefinitionIDs( int32_t *, uint32_t * ) = 0; - virtual bool GetItemDefinitionProperty( int32_t, const char *, char *, uint32_t * ) = 0; + virtual int8_t TriggerItemDrop( int32_t *, int32_t ) = 0; + virtual int8_t TradeItems( int32_t *, CSteamID, const uint64_t *, const uint32_t *, uint32_t, const uint64_t *, const uint32_t *, uint32_t ) = 0; + virtual int8_t LoadItemDefinitions( ) = 0; + virtual int8_t GetItemDefinitionIDs( int32_t *, uint32_t * ) = 0; + virtual int8_t GetItemDefinitionProperty( int32_t, const char *, char *, uint32_t * ) = 0; virtual uint64_t RequestEligiblePromoItemDefinitionsIDs( CSteamID ) = 0; - virtual bool GetEligiblePromoItemDefinitionIDs( CSteamID, int32_t *, uint32_t * ) = 0; + virtual int8_t GetEligiblePromoItemDefinitionIDs( CSteamID, int32_t *, uint32_t * ) = 0; #endif /* __cplusplus */ }; @@ -3828,7 +3828,7 @@ struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V001 { #ifdef __cplusplus virtual void GetVideoURL( uint32_t ) = 0; - virtual bool IsBroadcasting( int32_t * ) = 0; + virtual int8_t IsBroadcasting( int32_t * ) = 0; #endif /* __cplusplus */ }; @@ -3838,26 +3838,26 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 virtual uint64_t CreateQueryUserUGCRequest( uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t ) = 0; virtual uint64_t CreateQueryAllUGCRequest( uint32_t, uint32_t, uint32_t, uint32_t, uint32_t ) = 0; virtual uint64_t SendQueryUGCRequest( uint64_t ) = 0; - virtual bool GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; - virtual bool ReleaseQueryUGCRequest( uint64_t ) = 0; - virtual bool AddRequiredTag( uint64_t, const char * ) = 0; - virtual bool AddExcludedTag( uint64_t, const char * ) = 0; - virtual bool SetReturnLongDescription( uint64_t, bool ) = 0; - virtual bool SetReturnTotalOnly( uint64_t, bool ) = 0; - virtual bool SetAllowCachedResponse( uint64_t, uint32_t ) = 0; - virtual bool SetCloudFileNameFilter( uint64_t, const char * ) = 0; - virtual bool SetMatchAnyTag( uint64_t, bool ) = 0; - virtual bool SetSearchText( uint64_t, const char * ) = 0; - virtual bool SetRankedByTrendDays( uint64_t, uint32_t ) = 0; + virtual int8_t GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; + virtual int8_t ReleaseQueryUGCRequest( uint64_t ) = 0; + virtual int8_t AddRequiredTag( uint64_t, const char * ) = 0; + virtual int8_t AddExcludedTag( uint64_t, const char * ) = 0; + virtual int8_t SetReturnLongDescription( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnTotalOnly( uint64_t, int8_t ) = 0; + virtual int8_t SetAllowCachedResponse( uint64_t, uint32_t ) = 0; + virtual int8_t SetCloudFileNameFilter( uint64_t, const char * ) = 0; + virtual int8_t SetMatchAnyTag( uint64_t, int8_t ) = 0; + virtual int8_t SetSearchText( uint64_t, const char * ) = 0; + virtual int8_t SetRankedByTrendDays( uint64_t, uint32_t ) = 0; virtual uint64_t RequestUGCDetails( uint64_t, uint32_t ) = 0; virtual uint64_t CreateItem( uint32_t, uint32_t ) = 0; virtual uint64_t StartItemUpdate( uint32_t, uint64_t ) = 0; - virtual bool SetItemTitle( uint64_t, const char * ) = 0; - virtual bool SetItemDescription( uint64_t, const char * ) = 0; - virtual bool SetItemVisibility( uint64_t, uint32_t ) = 0; - virtual bool SetItemTags( uint64_t, const u_SteamParamStringArray_t * ) = 0; - virtual bool SetItemContent( uint64_t, const char * ) = 0; - virtual bool SetItemPreview( uint64_t, const char * ) = 0; + virtual int8_t SetItemTitle( uint64_t, const char * ) = 0; + virtual int8_t SetItemDescription( uint64_t, const char * ) = 0; + virtual int8_t SetItemVisibility( uint64_t, uint32_t ) = 0; + virtual int8_t SetItemTags( uint64_t, const u_SteamParamStringArray_t * ) = 0; + virtual int8_t SetItemContent( uint64_t, const char * ) = 0; + virtual int8_t SetItemPreview( uint64_t, const char * ) = 0; virtual uint64_t SubmitItemUpdate( uint64_t, const char * ) = 0; virtual uint32_t GetItemUpdateProgress( uint64_t, uint64_t *, uint64_t * ) = 0; virtual uint64_t SubscribeItem( uint64_t ) = 0; @@ -3865,9 +3865,9 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 virtual uint32_t GetNumSubscribedItems( ) = 0; virtual uint32_t GetSubscribedItems( uint64_t *, uint32_t ) = 0; virtual uint32_t GetItemState( uint64_t ) = 0; - virtual bool GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, uint32_t * ) = 0; - virtual bool GetItemDownloadInfo( uint64_t, uint64_t *, uint64_t * ) = 0; - virtual bool DownloadItem( uint64_t, bool ) = 0; + virtual int8_t GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, uint32_t * ) = 0; + virtual int8_t GetItemDownloadInfo( uint64_t, uint64_t *, uint64_t * ) = 0; + virtual int8_t DownloadItem( uint64_t, int8_t ) = 0; #endif /* __cplusplus */ }; @@ -3878,36 +3878,36 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 virtual uint64_t CreateQueryAllUGCRequest( uint32_t, uint32_t, uint32_t, uint32_t, uint32_t ) = 0; virtual uint64_t CreateQueryUGCDetailsRequest( uint64_t *, uint32_t ) = 0; virtual uint64_t SendQueryUGCRequest( uint64_t ) = 0; - virtual bool GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; - virtual bool GetQueryUGCPreviewURL( uint64_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCMetadata( uint64_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCChildren( uint64_t, uint32_t, uint64_t *, uint32_t ) = 0; - virtual bool GetQueryUGCStatistic( uint64_t, uint32_t, uint32_t, uint32_t * ) = 0; + virtual int8_t GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; + virtual int8_t GetQueryUGCPreviewURL( uint64_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCMetadata( uint64_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCChildren( uint64_t, uint32_t, uint64_t *, uint32_t ) = 0; + virtual int8_t GetQueryUGCStatistic( uint64_t, uint32_t, uint32_t, uint32_t * ) = 0; virtual uint32_t GetQueryUGCNumAdditionalPreviews( uint64_t, uint32_t ) = 0; - virtual bool GetQueryUGCAdditionalPreview( uint64_t, uint32_t, uint32_t, char *, uint32_t, bool * ) = 0; - virtual bool ReleaseQueryUGCRequest( uint64_t ) = 0; - virtual bool AddRequiredTag( uint64_t, const char * ) = 0; - virtual bool AddExcludedTag( uint64_t, const char * ) = 0; - virtual bool SetReturnLongDescription( uint64_t, bool ) = 0; - virtual bool SetReturnMetadata( uint64_t, bool ) = 0; - virtual bool SetReturnChildren( uint64_t, bool ) = 0; - virtual bool SetReturnAdditionalPreviews( uint64_t, bool ) = 0; - virtual bool SetReturnTotalOnly( uint64_t, bool ) = 0; - virtual bool SetAllowCachedResponse( uint64_t, uint32_t ) = 0; - virtual bool SetCloudFileNameFilter( uint64_t, const char * ) = 0; - virtual bool SetMatchAnyTag( uint64_t, bool ) = 0; - virtual bool SetSearchText( uint64_t, const char * ) = 0; - virtual bool SetRankedByTrendDays( uint64_t, uint32_t ) = 0; + virtual int8_t GetQueryUGCAdditionalPreview( uint64_t, uint32_t, uint32_t, char *, uint32_t, int8_t * ) = 0; + virtual int8_t ReleaseQueryUGCRequest( uint64_t ) = 0; + virtual int8_t AddRequiredTag( uint64_t, const char * ) = 0; + virtual int8_t AddExcludedTag( uint64_t, const char * ) = 0; + virtual int8_t SetReturnLongDescription( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnMetadata( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnChildren( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnAdditionalPreviews( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnTotalOnly( uint64_t, int8_t ) = 0; + virtual int8_t SetAllowCachedResponse( uint64_t, uint32_t ) = 0; + virtual int8_t SetCloudFileNameFilter( uint64_t, const char * ) = 0; + virtual int8_t SetMatchAnyTag( uint64_t, int8_t ) = 0; + virtual int8_t SetSearchText( uint64_t, const char * ) = 0; + virtual int8_t SetRankedByTrendDays( uint64_t, uint32_t ) = 0; virtual uint64_t RequestUGCDetails( uint64_t, uint32_t ) = 0; virtual uint64_t CreateItem( uint32_t, uint32_t ) = 0; virtual uint64_t StartItemUpdate( uint32_t, uint64_t ) = 0; - virtual bool SetItemTitle( uint64_t, const char * ) = 0; - virtual bool SetItemDescription( uint64_t, const char * ) = 0; - virtual bool SetItemMetadata( uint64_t, const char * ) = 0; - virtual bool SetItemVisibility( uint64_t, uint32_t ) = 0; - virtual bool SetItemTags( uint64_t, const u_SteamParamStringArray_t * ) = 0; - virtual bool SetItemContent( uint64_t, const char * ) = 0; - virtual bool SetItemPreview( uint64_t, const char * ) = 0; + virtual int8_t SetItemTitle( uint64_t, const char * ) = 0; + virtual int8_t SetItemDescription( uint64_t, const char * ) = 0; + virtual int8_t SetItemMetadata( uint64_t, const char * ) = 0; + virtual int8_t SetItemVisibility( uint64_t, uint32_t ) = 0; + virtual int8_t SetItemTags( uint64_t, const u_SteamParamStringArray_t * ) = 0; + virtual int8_t SetItemContent( uint64_t, const char * ) = 0; + virtual int8_t SetItemPreview( uint64_t, const char * ) = 0; virtual uint64_t SubmitItemUpdate( uint64_t, const char * ) = 0; virtual uint32_t GetItemUpdateProgress( uint64_t, uint64_t *, uint64_t * ) = 0; virtual uint64_t AddItemToFavorites( uint32_t, uint64_t ) = 0; @@ -3917,9 +3917,9 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 virtual uint32_t GetNumSubscribedItems( ) = 0; virtual uint32_t GetSubscribedItems( uint64_t *, uint32_t ) = 0; virtual uint32_t GetItemState( uint64_t ) = 0; - virtual bool GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, uint32_t * ) = 0; - virtual bool GetItemDownloadInfo( uint64_t, uint64_t *, uint64_t * ) = 0; - virtual bool DownloadItem( uint64_t, bool ) = 0; + virtual int8_t GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, uint32_t * ) = 0; + virtual int8_t GetItemDownloadInfo( uint64_t, uint64_t *, uint64_t * ) = 0; + virtual int8_t DownloadItem( uint64_t, int8_t ) = 0; #endif /* __cplusplus */ }; @@ -3927,8 +3927,8 @@ struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 { #ifdef __cplusplus virtual ~u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003( ) = 0; - virtual bool Init( ) = 0; - virtual bool Shutdown( ) = 0; + virtual int8_t Init( ) = 0; + virtual int8_t Shutdown( ) = 0; virtual uint64_t CreateBrowser( const char *, const char * ) = 0; virtual void RemoveBrowser( uint32_t ) = 0; virtual void LoadURL( uint32_t, const char *, const char * ) = 0; @@ -3949,18 +3949,18 @@ struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 virtual void KeyChar( uint32_t, uint32_t, uint32_t ) = 0; virtual void SetHorizontalScroll( uint32_t, uint32_t ) = 0; virtual void SetVerticalScroll( uint32_t, uint32_t ) = 0; - virtual void SetKeyFocus( uint32_t, bool ) = 0; + virtual void SetKeyFocus( uint32_t, int8_t ) = 0; virtual void ViewSource( uint32_t ) = 0; virtual void CopyToClipboard( uint32_t ) = 0; virtual void PasteFromClipboard( uint32_t ) = 0; - virtual void Find( uint32_t, const char *, bool, bool ) = 0; + virtual void Find( uint32_t, const char *, int8_t, int8_t ) = 0; virtual void StopFind( uint32_t ) = 0; virtual void GetLinkAtPosition( uint32_t, int32_t, int32_t ) = 0; - virtual void SetCookie( const char *, const char *, const char *, const char *, uint32_t, bool, bool ) = 0; + virtual void SetCookie( const char *, const char *, const char *, const char *, uint32_t, int8_t, int8_t ) = 0; virtual void SetPageScaleFactor( uint32_t, float, int32_t, int32_t ) = 0; - virtual void SetBackgroundMode( uint32_t, bool ) = 0; - virtual void AllowStartRequest( uint32_t, bool ) = 0; - virtual void JSDialogResponse( uint32_t, bool ) = 0; + virtual void SetBackgroundMode( uint32_t, int8_t ) = 0; + virtual void AllowStartRequest( uint32_t, int8_t ) = 0; + virtual void JSDialogResponse( uint32_t, int8_t ) = 0; virtual void FileLoadDialogResponse( uint32_t, const char ** ) = 0; #endif /* __cplusplus */ }; @@ -3972,41 +3972,41 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 virtual uint64_t CreateQueryAllUGCRequest( uint32_t, uint32_t, uint32_t, uint32_t, uint32_t ) = 0; virtual uint64_t CreateQueryUGCDetailsRequest( uint64_t *, uint32_t ) = 0; virtual uint64_t SendQueryUGCRequest( uint64_t ) = 0; - virtual bool GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; - virtual bool GetQueryUGCPreviewURL( uint64_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCMetadata( uint64_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCChildren( uint64_t, uint32_t, uint64_t *, uint32_t ) = 0; - virtual bool GetQueryUGCStatistic( uint64_t, uint32_t, uint32_t, uint32_t * ) = 0; + virtual int8_t GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; + virtual int8_t GetQueryUGCPreviewURL( uint64_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCMetadata( uint64_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCChildren( uint64_t, uint32_t, uint64_t *, uint32_t ) = 0; + virtual int8_t GetQueryUGCStatistic( uint64_t, uint32_t, uint32_t, uint32_t * ) = 0; virtual uint32_t GetQueryUGCNumAdditionalPreviews( uint64_t, uint32_t ) = 0; - virtual bool GetQueryUGCAdditionalPreview( uint64_t, uint32_t, uint32_t, char *, uint32_t, bool * ) = 0; - virtual bool ReleaseQueryUGCRequest( uint64_t ) = 0; - virtual bool AddRequiredTag( uint64_t, const char * ) = 0; - virtual bool AddExcludedTag( uint64_t, const char * ) = 0; - virtual bool SetReturnLongDescription( uint64_t, bool ) = 0; - virtual bool SetReturnMetadata( uint64_t, bool ) = 0; - virtual bool SetReturnChildren( uint64_t, bool ) = 0; - virtual bool SetReturnAdditionalPreviews( uint64_t, bool ) = 0; - virtual bool SetReturnTotalOnly( uint64_t, bool ) = 0; - virtual bool SetLanguage( uint64_t, const char * ) = 0; - virtual bool SetAllowCachedResponse( uint64_t, uint32_t ) = 0; - virtual bool SetCloudFileNameFilter( uint64_t, const char * ) = 0; - virtual bool SetMatchAnyTag( uint64_t, bool ) = 0; - virtual bool SetSearchText( uint64_t, const char * ) = 0; - virtual bool SetRankedByTrendDays( uint64_t, uint32_t ) = 0; + virtual int8_t GetQueryUGCAdditionalPreview( uint64_t, uint32_t, uint32_t, char *, uint32_t, int8_t * ) = 0; + virtual int8_t ReleaseQueryUGCRequest( uint64_t ) = 0; + virtual int8_t AddRequiredTag( uint64_t, const char * ) = 0; + virtual int8_t AddExcludedTag( uint64_t, const char * ) = 0; + virtual int8_t SetReturnLongDescription( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnMetadata( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnChildren( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnAdditionalPreviews( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnTotalOnly( uint64_t, int8_t ) = 0; + virtual int8_t SetLanguage( uint64_t, const char * ) = 0; + virtual int8_t SetAllowCachedResponse( uint64_t, uint32_t ) = 0; + virtual int8_t SetCloudFileNameFilter( uint64_t, const char * ) = 0; + virtual int8_t SetMatchAnyTag( uint64_t, int8_t ) = 0; + virtual int8_t SetSearchText( uint64_t, const char * ) = 0; + virtual int8_t SetRankedByTrendDays( uint64_t, uint32_t ) = 0; virtual uint64_t RequestUGCDetails( uint64_t, uint32_t ) = 0; virtual uint64_t CreateItem( uint32_t, uint32_t ) = 0; virtual uint64_t StartItemUpdate( uint32_t, uint64_t ) = 0; - virtual bool SetItemTitle( uint64_t, const char * ) = 0; - virtual bool SetItemDescription( uint64_t, const char * ) = 0; - virtual bool SetItemUpdateLanguage( uint64_t, const char * ) = 0; - virtual bool SetItemMetadata( uint64_t, const char * ) = 0; - virtual bool SetItemVisibility( uint64_t, uint32_t ) = 0; - virtual bool SetItemTags( uint64_t, const u_SteamParamStringArray_t * ) = 0; - virtual bool SetItemContent( uint64_t, const char * ) = 0; - virtual bool SetItemPreview( uint64_t, const char * ) = 0; + virtual int8_t SetItemTitle( uint64_t, const char * ) = 0; + virtual int8_t SetItemDescription( uint64_t, const char * ) = 0; + virtual int8_t SetItemUpdateLanguage( uint64_t, const char * ) = 0; + virtual int8_t SetItemMetadata( uint64_t, const char * ) = 0; + virtual int8_t SetItemVisibility( uint64_t, uint32_t ) = 0; + virtual int8_t SetItemTags( uint64_t, const u_SteamParamStringArray_t * ) = 0; + virtual int8_t SetItemContent( uint64_t, const char * ) = 0; + virtual int8_t SetItemPreview( uint64_t, const char * ) = 0; virtual uint64_t SubmitItemUpdate( uint64_t, const char * ) = 0; virtual uint32_t GetItemUpdateProgress( uint64_t, uint64_t *, uint64_t * ) = 0; - virtual uint64_t SetUserItemVote( uint64_t, bool ) = 0; + virtual uint64_t SetUserItemVote( uint64_t, int8_t ) = 0; virtual uint64_t GetUserItemVote( uint64_t ) = 0; virtual uint64_t AddItemToFavorites( uint32_t, uint64_t ) = 0; virtual uint64_t RemoveItemFromFavorites( uint32_t, uint64_t ) = 0; @@ -4015,9 +4015,9 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 virtual uint32_t GetNumSubscribedItems( ) = 0; virtual uint32_t GetSubscribedItems( uint64_t *, uint32_t ) = 0; virtual uint32_t GetItemState( uint64_t ) = 0; - virtual bool GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, uint32_t * ) = 0; - virtual bool GetItemDownloadInfo( uint64_t, uint64_t *, uint64_t * ) = 0; - virtual bool DownloadItem( uint64_t, bool ) = 0; + virtual int8_t GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, uint32_t * ) = 0; + virtual int8_t GetItemDownloadInfo( uint64_t, uint64_t *, uint64_t * ) = 0; + virtual int8_t DownloadItem( uint64_t, int8_t ) = 0; #endif /* __cplusplus */ }; @@ -4028,47 +4028,47 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 virtual uint64_t CreateQueryAllUGCRequest( uint32_t, uint32_t, uint32_t, uint32_t, uint32_t ) = 0; virtual uint64_t CreateQueryUGCDetailsRequest( uint64_t *, uint32_t ) = 0; virtual uint64_t SendQueryUGCRequest( uint64_t ) = 0; - virtual bool GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; - virtual bool GetQueryUGCPreviewURL( uint64_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCMetadata( uint64_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCChildren( uint64_t, uint32_t, uint64_t *, uint32_t ) = 0; - virtual bool GetQueryUGCStatistic( uint64_t, uint32_t, uint32_t, uint32_t * ) = 0; + virtual int8_t GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; + virtual int8_t GetQueryUGCPreviewURL( uint64_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCMetadata( uint64_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCChildren( uint64_t, uint32_t, uint64_t *, uint32_t ) = 0; + virtual int8_t GetQueryUGCStatistic( uint64_t, uint32_t, uint32_t, uint32_t * ) = 0; virtual uint32_t GetQueryUGCNumAdditionalPreviews( uint64_t, uint32_t ) = 0; - virtual bool GetQueryUGCAdditionalPreview( uint64_t, uint32_t, uint32_t, char *, uint32_t, bool * ) = 0; + virtual int8_t GetQueryUGCAdditionalPreview( uint64_t, uint32_t, uint32_t, char *, uint32_t, int8_t * ) = 0; virtual uint32_t GetQueryUGCNumKeyValueTags( uint64_t, uint32_t ) = 0; - virtual bool GetQueryUGCKeyValueTag( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t ) = 0; - virtual bool ReleaseQueryUGCRequest( uint64_t ) = 0; - virtual bool AddRequiredTag( uint64_t, const char * ) = 0; - virtual bool AddExcludedTag( uint64_t, const char * ) = 0; - virtual bool SetReturnKeyValueTags( uint64_t, bool ) = 0; - virtual bool SetReturnLongDescription( uint64_t, bool ) = 0; - virtual bool SetReturnMetadata( uint64_t, bool ) = 0; - virtual bool SetReturnChildren( uint64_t, bool ) = 0; - virtual bool SetReturnAdditionalPreviews( uint64_t, bool ) = 0; - virtual bool SetReturnTotalOnly( uint64_t, bool ) = 0; - virtual bool SetLanguage( uint64_t, const char * ) = 0; - virtual bool SetAllowCachedResponse( uint64_t, uint32_t ) = 0; - virtual bool SetCloudFileNameFilter( uint64_t, const char * ) = 0; - virtual bool SetMatchAnyTag( uint64_t, bool ) = 0; - virtual bool SetSearchText( uint64_t, const char * ) = 0; - virtual bool SetRankedByTrendDays( uint64_t, uint32_t ) = 0; - virtual bool AddRequiredKeyValueTag( uint64_t, const char *, const char * ) = 0; + virtual int8_t GetQueryUGCKeyValueTag( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t ) = 0; + virtual int8_t ReleaseQueryUGCRequest( uint64_t ) = 0; + virtual int8_t AddRequiredTag( uint64_t, const char * ) = 0; + virtual int8_t AddExcludedTag( uint64_t, const char * ) = 0; + virtual int8_t SetReturnKeyValueTags( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnLongDescription( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnMetadata( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnChildren( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnAdditionalPreviews( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnTotalOnly( uint64_t, int8_t ) = 0; + virtual int8_t SetLanguage( uint64_t, const char * ) = 0; + virtual int8_t SetAllowCachedResponse( uint64_t, uint32_t ) = 0; + virtual int8_t SetCloudFileNameFilter( uint64_t, const char * ) = 0; + virtual int8_t SetMatchAnyTag( uint64_t, int8_t ) = 0; + virtual int8_t SetSearchText( uint64_t, const char * ) = 0; + virtual int8_t SetRankedByTrendDays( uint64_t, uint32_t ) = 0; + virtual int8_t AddRequiredKeyValueTag( uint64_t, const char *, const char * ) = 0; virtual uint64_t RequestUGCDetails( uint64_t, uint32_t ) = 0; virtual uint64_t CreateItem( uint32_t, uint32_t ) = 0; virtual uint64_t StartItemUpdate( uint32_t, uint64_t ) = 0; - virtual bool SetItemTitle( uint64_t, const char * ) = 0; - virtual bool SetItemDescription( uint64_t, const char * ) = 0; - virtual bool SetItemUpdateLanguage( uint64_t, const char * ) = 0; - virtual bool SetItemMetadata( uint64_t, const char * ) = 0; - virtual bool SetItemVisibility( uint64_t, uint32_t ) = 0; - virtual bool SetItemTags( uint64_t, const u_SteamParamStringArray_t * ) = 0; - virtual bool SetItemContent( uint64_t, const char * ) = 0; - virtual bool SetItemPreview( uint64_t, const char * ) = 0; - virtual bool RemoveItemKeyValueTags( uint64_t, const char * ) = 0; - virtual bool AddItemKeyValueTag( uint64_t, const char *, const char * ) = 0; + virtual int8_t SetItemTitle( uint64_t, const char * ) = 0; + virtual int8_t SetItemDescription( uint64_t, const char * ) = 0; + virtual int8_t SetItemUpdateLanguage( uint64_t, const char * ) = 0; + virtual int8_t SetItemMetadata( uint64_t, const char * ) = 0; + virtual int8_t SetItemVisibility( uint64_t, uint32_t ) = 0; + virtual int8_t SetItemTags( uint64_t, const u_SteamParamStringArray_t * ) = 0; + virtual int8_t SetItemContent( uint64_t, const char * ) = 0; + virtual int8_t SetItemPreview( uint64_t, const char * ) = 0; + virtual int8_t RemoveItemKeyValueTags( uint64_t, const char * ) = 0; + virtual int8_t AddItemKeyValueTag( uint64_t, const char *, const char * ) = 0; virtual uint64_t SubmitItemUpdate( uint64_t, const char * ) = 0; virtual uint32_t GetItemUpdateProgress( uint64_t, uint64_t *, uint64_t * ) = 0; - virtual uint64_t SetUserItemVote( uint64_t, bool ) = 0; + virtual uint64_t SetUserItemVote( uint64_t, int8_t ) = 0; virtual uint64_t GetUserItemVote( uint64_t ) = 0; virtual uint64_t AddItemToFavorites( uint32_t, uint64_t ) = 0; virtual uint64_t RemoveItemFromFavorites( uint32_t, uint64_t ) = 0; @@ -4077,55 +4077,55 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 virtual uint32_t GetNumSubscribedItems( ) = 0; virtual uint32_t GetSubscribedItems( uint64_t *, uint32_t ) = 0; virtual uint32_t GetItemState( uint64_t ) = 0; - virtual bool GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, uint32_t * ) = 0; - virtual bool GetItemDownloadInfo( uint64_t, uint64_t *, uint64_t * ) = 0; - virtual bool DownloadItem( uint64_t, bool ) = 0; - virtual bool BInitWorkshopForGameServer( uint32_t, const char * ) = 0; - virtual void SuspendDownloads( bool ) = 0; + virtual int8_t GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, uint32_t * ) = 0; + virtual int8_t GetItemDownloadInfo( uint64_t, uint64_t *, uint64_t * ) = 0; + virtual int8_t DownloadItem( uint64_t, int8_t ) = 0; + virtual int8_t BInitWorkshopForGameServer( uint32_t, const char * ) = 0; + virtual void SuspendDownloads( int8_t ) = 0; #endif /* __cplusplus */ }; struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 { #ifdef __cplusplus - virtual bool FileWrite( const char *, const void *, int32_t ) = 0; + virtual int8_t FileWrite( const char *, const void *, int32_t ) = 0; virtual int32_t FileRead( const char *, void *, int32_t ) = 0; virtual uint64_t FileWriteAsync( const char *, const void *, uint32_t ) = 0; virtual uint64_t FileReadAsync( const char *, uint32_t, uint32_t ) = 0; - virtual bool FileReadAsyncComplete( uint64_t, void *, uint32_t ) = 0; - virtual bool FileForget( const char * ) = 0; - virtual bool FileDelete( const char * ) = 0; + virtual int8_t FileReadAsyncComplete( uint64_t, void *, uint32_t ) = 0; + virtual int8_t FileForget( const char * ) = 0; + virtual int8_t FileDelete( const char * ) = 0; virtual uint64_t FileShare( const char * ) = 0; - virtual bool SetSyncPlatforms( const char *, uint32_t ) = 0; + virtual int8_t SetSyncPlatforms( const char *, uint32_t ) = 0; virtual uint64_t FileWriteStreamOpen( const char * ) = 0; - virtual bool FileWriteStreamWriteChunk( uint64_t, const void *, int32_t ) = 0; - virtual bool FileWriteStreamClose( uint64_t ) = 0; - virtual bool FileWriteStreamCancel( uint64_t ) = 0; - virtual bool FileExists( const char * ) = 0; - virtual bool FilePersisted( const char * ) = 0; + virtual int8_t FileWriteStreamWriteChunk( uint64_t, const void *, int32_t ) = 0; + virtual int8_t FileWriteStreamClose( uint64_t ) = 0; + virtual int8_t FileWriteStreamCancel( uint64_t ) = 0; + virtual int8_t FileExists( const char * ) = 0; + virtual int8_t FilePersisted( const char * ) = 0; virtual int32_t GetFileSize( const char * ) = 0; virtual int64_t GetFileTimestamp( const char * ) = 0; virtual uint32_t GetSyncPlatforms( const char * ) = 0; virtual int32_t GetFileCount( ) = 0; virtual const char * GetFileNameAndSize( int32_t, int32_t * ) = 0; - virtual bool GetQuota( int32_t *, int32_t * ) = 0; - virtual bool IsCloudEnabledForAccount( ) = 0; - virtual bool IsCloudEnabledForApp( ) = 0; - virtual void SetCloudEnabledForApp( bool ) = 0; + virtual int8_t GetQuota( int32_t *, int32_t * ) = 0; + virtual int8_t IsCloudEnabledForAccount( ) = 0; + virtual int8_t IsCloudEnabledForApp( ) = 0; + virtual void SetCloudEnabledForApp( int8_t ) = 0; virtual uint64_t UGCDownload( uint64_t, uint32_t ) = 0; - virtual bool GetUGCDownloadProgress( uint64_t, int32_t *, int32_t * ) = 0; - virtual bool GetUGCDetails( uint64_t, uint32_t *, char **, int32_t *, CSteamID * ) = 0; + virtual int8_t GetUGCDownloadProgress( uint64_t, int32_t *, int32_t * ) = 0; + virtual int8_t GetUGCDetails( uint64_t, uint32_t *, char **, int32_t *, CSteamID * ) = 0; virtual int32_t UGCRead( uint64_t, void *, int32_t, uint32_t, uint32_t ) = 0; virtual int32_t GetCachedUGCCount( ) = 0; virtual uint64_t GetCachedUGCHandle( int32_t ) = 0; virtual uint64_t PublishWorkshopFile( const char *, const char *, uint32_t, const char *, const char *, uint32_t, u_SteamParamStringArray_t *, uint32_t ) = 0; virtual uint64_t CreatePublishedFileUpdateRequest( uint64_t ) = 0; - virtual bool UpdatePublishedFileFile( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFilePreviewFile( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFileTitle( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFileDescription( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFileVisibility( uint64_t, uint32_t ) = 0; - virtual bool UpdatePublishedFileTags( uint64_t, u_SteamParamStringArray_t * ) = 0; + virtual int8_t UpdatePublishedFileFile( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFilePreviewFile( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileTitle( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileDescription( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileVisibility( uint64_t, uint32_t ) = 0; + virtual int8_t UpdatePublishedFileTags( uint64_t, u_SteamParamStringArray_t * ) = 0; virtual uint64_t CommitPublishedFileUpdate( uint64_t ) = 0; virtual uint64_t GetPublishedFileDetails( uint64_t, uint32_t ) = 0; virtual uint64_t DeletePublishedFile( uint64_t ) = 0; @@ -4133,9 +4133,9 @@ struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 virtual uint64_t SubscribePublishedFile( uint64_t ) = 0; virtual uint64_t EnumerateUserSubscribedFiles( uint32_t ) = 0; virtual uint64_t UnsubscribePublishedFile( uint64_t ) = 0; - virtual bool UpdatePublishedFileSetChangeDescription( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileSetChangeDescription( uint64_t, const char * ) = 0; virtual uint64_t GetPublishedItemVoteDetails( uint64_t ) = 0; - virtual uint64_t UpdateUserPublishedItemVote( uint64_t, bool ) = 0; + virtual uint64_t UpdateUserPublishedItemVote( uint64_t, int8_t ) = 0; virtual uint64_t GetUserPublishedItemVoteDetails( uint64_t ) = 0; virtual uint64_t EnumerateUserSharedWorkshopFiles( CSteamID, uint32_t, u_SteamParamStringArray_t *, u_SteamParamStringArray_t * ) = 0; virtual uint64_t PublishVideo( uint32_t, const char *, const char *, const char *, uint32_t, const char *, const char *, uint32_t, u_SteamParamStringArray_t * ) = 0; @@ -4149,11 +4149,11 @@ struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 struct u_ISteamController_SteamController003 { #ifdef __cplusplus - virtual bool Init( ) = 0; - virtual bool Shutdown( ) = 0; + virtual int8_t Init( ) = 0; + virtual int8_t Shutdown( ) = 0; virtual void RunFrame( ) = 0; virtual int32_t GetConnectedControllers( uint64_t * ) = 0; - virtual bool ShowBindingPanel( uint64_t ) = 0; + virtual int8_t ShowBindingPanel( uint64_t ) = 0; virtual uint64_t GetActionSetHandle( const char * ) = 0; virtual void ActivateActionSet( uint64_t, uint64_t ) = 0; virtual uint64_t GetCurrentActionSet( uint64_t ) = 0; @@ -4173,16 +4173,16 @@ struct u_ISteamUser_SteamUser019 { #ifdef __cplusplus virtual int32_t GetHSteamUser( ) = 0; - virtual bool BLoggedOn( ) = 0; + virtual int8_t BLoggedOn( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, uint32_t, uint16_t, bool ) = 0; + virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, uint32_t, uint16_t, int8_t ) = 0; virtual void TerminateGameConnection( uint32_t, uint16_t ) = 0; virtual void TrackAppUsageEvent( CGameID, int32_t, const char * ) = 0; - virtual bool GetUserDataFolder( char *, int32_t ) = 0; + virtual int8_t GetUserDataFolder( char *, int32_t ) = 0; virtual void StartVoiceRecording( ) = 0; virtual void StopVoiceRecording( ) = 0; virtual uint32_t GetAvailableVoice( uint32_t *, uint32_t *, uint32_t ) = 0; - virtual uint32_t GetVoice( bool, void *, uint32_t, uint32_t *, bool, void *, uint32_t, uint32_t *, uint32_t ) = 0; + virtual uint32_t GetVoice( int8_t, void *, uint32_t, uint32_t *, int8_t, void *, uint32_t, uint32_t *, uint32_t ) = 0; virtual uint32_t DecompressVoice( const void *, uint32_t, void *, uint32_t, uint32_t *, uint32_t ) = 0; virtual uint32_t GetVoiceOptimalSampleRate( ) = 0; virtual uint32_t GetAuthSessionTicket( void *, int32_t, uint32_t * ) = 0; @@ -4190,17 +4190,17 @@ struct u_ISteamUser_SteamUser019 virtual void EndAuthSession( CSteamID ) = 0; virtual void CancelAuthTicket( uint32_t ) = 0; virtual uint32_t UserHasLicenseForApp( CSteamID, uint32_t ) = 0; - virtual bool BIsBehindNAT( ) = 0; + virtual int8_t BIsBehindNAT( ) = 0; virtual void AdvertiseGame( CSteamID, uint32_t, uint16_t ) = 0; virtual uint64_t RequestEncryptedAppTicket( void *, int32_t ) = 0; - virtual bool GetEncryptedAppTicket( void *, int32_t, uint32_t * ) = 0; - virtual int32_t GetGameBadgeLevel( int32_t, bool ) = 0; + virtual int8_t GetEncryptedAppTicket( void *, int32_t, uint32_t * ) = 0; + virtual int32_t GetGameBadgeLevel( int32_t, int8_t ) = 0; virtual int32_t GetPlayerSteamLevel( ) = 0; virtual uint64_t RequestStoreAuthURL( const char * ) = 0; - virtual bool BIsPhoneVerified( ) = 0; - virtual bool BIsTwoFactorEnabled( ) = 0; - virtual bool BIsPhoneIdentifying( ) = 0; - virtual bool BIsPhoneRequiringVerification( ) = 0; + virtual int8_t BIsPhoneVerified( ) = 0; + virtual int8_t BIsTwoFactorEnabled( ) = 0; + virtual int8_t BIsPhoneIdentifying( ) = 0; + virtual int8_t BIsPhoneRequiringVerification( ) = 0; #endif /* __cplusplus */ }; @@ -4212,28 +4212,28 @@ struct u_ISteamUtils_SteamUtils008 virtual uint32_t GetConnectedUniverse( ) = 0; virtual uint32_t GetServerRealTime( ) = 0; virtual const char * GetIPCountry( ) = 0; - virtual bool GetImageSize( int32_t, uint32_t *, uint32_t * ) = 0; - virtual bool GetImageRGBA( int32_t, uint8_t *, int32_t ) = 0; - virtual bool GetCSERIPPort( uint32_t *, uint16_t * ) = 0; + virtual int8_t GetImageSize( int32_t, uint32_t *, uint32_t * ) = 0; + virtual int8_t GetImageRGBA( int32_t, uint8_t *, int32_t ) = 0; + virtual int8_t GetCSERIPPort( uint32_t *, uint16_t * ) = 0; virtual uint8_t GetCurrentBatteryPower( ) = 0; virtual uint32_t GetAppID( ) = 0; virtual void SetOverlayNotificationPosition( uint32_t ) = 0; - virtual bool IsAPICallCompleted( uint64_t, bool * ) = 0; + virtual int8_t IsAPICallCompleted( uint64_t, int8_t * ) = 0; virtual uint32_t GetAPICallFailureReason( uint64_t ) = 0; - virtual bool GetAPICallResult( uint64_t, void *, int32_t, int32_t, bool * ) = 0; + virtual int8_t GetAPICallResult( uint64_t, void *, int32_t, int32_t, int8_t * ) = 0; virtual void RunFrame( ) = 0; virtual uint32_t GetIPCCallCount( ) = 0; virtual void SetWarningMessageHook( void (*U_CDECL )(int32_t, const char *) ) = 0; - virtual bool IsOverlayEnabled( ) = 0; - virtual bool BOverlayNeedsPresent( ) = 0; + virtual int8_t IsOverlayEnabled( ) = 0; + virtual int8_t BOverlayNeedsPresent( ) = 0; virtual uint64_t CheckFileSignature( const char * ) = 0; - virtual bool ShowGamepadTextInput( uint32_t, uint32_t, const char *, uint32_t, const char * ) = 0; + virtual int8_t ShowGamepadTextInput( uint32_t, uint32_t, const char *, uint32_t, const char * ) = 0; virtual uint32_t GetEnteredGamepadTextLength( ) = 0; - virtual bool GetEnteredGamepadTextInput( char *, uint32_t ) = 0; + virtual int8_t GetEnteredGamepadTextInput( char *, uint32_t ) = 0; virtual const char * GetSteamUILanguage( ) = 0; - virtual bool IsSteamRunningInVR( ) = 0; + virtual int8_t IsSteamRunningInVR( ) = 0; virtual void SetOverlayNotificationInset( int32_t, int32_t ) = 0; - virtual bool IsSteamInBigPictureMode( ) = 0; + virtual int8_t IsSteamInBigPictureMode( ) = 0; virtual void StartVRDashboard( ) = 0; #endif /* __cplusplus */ }; @@ -4241,36 +4241,36 @@ struct u_ISteamUtils_SteamUtils008 struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 { #ifdef __cplusplus - virtual bool BIsSubscribed( ) = 0; - virtual bool BIsLowViolence( ) = 0; - virtual bool BIsCybercafe( ) = 0; - virtual bool BIsVACBanned( ) = 0; + virtual int8_t BIsSubscribed( ) = 0; + virtual int8_t BIsLowViolence( ) = 0; + virtual int8_t BIsCybercafe( ) = 0; + virtual int8_t BIsVACBanned( ) = 0; virtual const char * GetCurrentGameLanguage( ) = 0; virtual const char * GetAvailableGameLanguages( ) = 0; - virtual bool BIsSubscribedApp( uint32_t ) = 0; - virtual bool BIsDlcInstalled( uint32_t ) = 0; + virtual int8_t BIsSubscribedApp( uint32_t ) = 0; + virtual int8_t BIsDlcInstalled( uint32_t ) = 0; virtual uint32_t GetEarliestPurchaseUnixTime( uint32_t ) = 0; - virtual bool BIsSubscribedFromFreeWeekend( ) = 0; + virtual int8_t BIsSubscribedFromFreeWeekend( ) = 0; virtual int32_t GetDLCCount( ) = 0; - virtual bool BGetDLCDataByIndex( int32_t, uint32_t *, bool *, char *, int32_t ) = 0; + virtual int8_t BGetDLCDataByIndex( int32_t, uint32_t *, int8_t *, char *, int32_t ) = 0; virtual void InstallDLC( uint32_t ) = 0; virtual void UninstallDLC( uint32_t ) = 0; virtual void RequestAppProofOfPurchaseKey( uint32_t ) = 0; - virtual bool GetCurrentBetaName( char *, int32_t ) = 0; - virtual bool MarkContentCorrupt( bool ) = 0; + virtual int8_t GetCurrentBetaName( char *, int32_t ) = 0; + virtual int8_t MarkContentCorrupt( int8_t ) = 0; virtual uint32_t GetInstalledDepots( uint32_t, uint32_t *, uint32_t ) = 0; virtual uint32_t GetAppInstallDir( uint32_t, char *, uint32_t ) = 0; - virtual bool BIsAppInstalled( uint32_t ) = 0; + virtual int8_t BIsAppInstalled( uint32_t ) = 0; virtual CSteamID GetAppOwner( ) = 0; virtual const char * GetLaunchQueryParam( const char * ) = 0; - virtual bool GetDlcDownloadProgress( uint32_t, uint64_t *, uint64_t * ) = 0; + virtual int8_t GetDlcDownloadProgress( uint32_t, uint64_t *, uint64_t * ) = 0; virtual int32_t GetAppBuildId( ) = 0; virtual void RequestAllProofOfPurchaseKeys( ) = 0; virtual uint64_t GetFileDetails( const char * ) = 0; virtual int32_t GetLaunchCommandLine( char *, int32_t ) = 0; - virtual bool BIsSubscribedFromFamilySharing( ) = 0; - virtual bool BIsTimedTrial( uint32_t *, uint32_t * ) = 0; - virtual bool SetDlcContext( uint32_t ) = 0; + virtual int8_t BIsSubscribedFromFamilySharing( ) = 0; + virtual int8_t BIsTimedTrial( uint32_t *, uint32_t * ) = 0; + virtual int8_t SetDlcContext( uint32_t ) = 0; #endif /* __cplusplus */ }; @@ -4281,52 +4281,52 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 virtual uint64_t CreateQueryAllUGCRequest( uint32_t, uint32_t, uint32_t, uint32_t, uint32_t ) = 0; virtual uint64_t CreateQueryUGCDetailsRequest( uint64_t *, uint32_t ) = 0; virtual uint64_t SendQueryUGCRequest( uint64_t ) = 0; - virtual bool GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; - virtual bool GetQueryUGCPreviewURL( uint64_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCMetadata( uint64_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCChildren( uint64_t, uint32_t, uint64_t *, uint32_t ) = 0; - virtual bool GetQueryUGCStatistic( uint64_t, uint32_t, uint32_t, uint32_t * ) = 0; + virtual int8_t GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; + virtual int8_t GetQueryUGCPreviewURL( uint64_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCMetadata( uint64_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCChildren( uint64_t, uint32_t, uint64_t *, uint32_t ) = 0; + virtual int8_t GetQueryUGCStatistic( uint64_t, uint32_t, uint32_t, uint32_t * ) = 0; virtual uint32_t GetQueryUGCNumAdditionalPreviews( uint64_t, uint32_t ) = 0; - virtual bool GetQueryUGCAdditionalPreview( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t, uint32_t * ) = 0; + virtual int8_t GetQueryUGCAdditionalPreview( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t, uint32_t * ) = 0; virtual uint32_t GetQueryUGCNumKeyValueTags( uint64_t, uint32_t ) = 0; - virtual bool GetQueryUGCKeyValueTag( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t ) = 0; - virtual bool ReleaseQueryUGCRequest( uint64_t ) = 0; - virtual bool AddRequiredTag( uint64_t, const char * ) = 0; - virtual bool AddExcludedTag( uint64_t, const char * ) = 0; - virtual bool SetReturnKeyValueTags( uint64_t, bool ) = 0; - virtual bool SetReturnLongDescription( uint64_t, bool ) = 0; - virtual bool SetReturnMetadata( uint64_t, bool ) = 0; - virtual bool SetReturnChildren( uint64_t, bool ) = 0; - virtual bool SetReturnAdditionalPreviews( uint64_t, bool ) = 0; - virtual bool SetReturnTotalOnly( uint64_t, bool ) = 0; - virtual bool SetLanguage( uint64_t, const char * ) = 0; - virtual bool SetAllowCachedResponse( uint64_t, uint32_t ) = 0; - virtual bool SetCloudFileNameFilter( uint64_t, const char * ) = 0; - virtual bool SetMatchAnyTag( uint64_t, bool ) = 0; - virtual bool SetSearchText( uint64_t, const char * ) = 0; - virtual bool SetRankedByTrendDays( uint64_t, uint32_t ) = 0; - virtual bool AddRequiredKeyValueTag( uint64_t, const char *, const char * ) = 0; + virtual int8_t GetQueryUGCKeyValueTag( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t ) = 0; + virtual int8_t ReleaseQueryUGCRequest( uint64_t ) = 0; + virtual int8_t AddRequiredTag( uint64_t, const char * ) = 0; + virtual int8_t AddExcludedTag( uint64_t, const char * ) = 0; + virtual int8_t SetReturnKeyValueTags( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnLongDescription( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnMetadata( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnChildren( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnAdditionalPreviews( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnTotalOnly( uint64_t, int8_t ) = 0; + virtual int8_t SetLanguage( uint64_t, const char * ) = 0; + virtual int8_t SetAllowCachedResponse( uint64_t, uint32_t ) = 0; + virtual int8_t SetCloudFileNameFilter( uint64_t, const char * ) = 0; + virtual int8_t SetMatchAnyTag( uint64_t, int8_t ) = 0; + virtual int8_t SetSearchText( uint64_t, const char * ) = 0; + virtual int8_t SetRankedByTrendDays( uint64_t, uint32_t ) = 0; + virtual int8_t AddRequiredKeyValueTag( uint64_t, const char *, const char * ) = 0; virtual uint64_t RequestUGCDetails( uint64_t, uint32_t ) = 0; virtual uint64_t CreateItem( uint32_t, uint32_t ) = 0; virtual uint64_t StartItemUpdate( uint32_t, uint64_t ) = 0; - virtual bool SetItemTitle( uint64_t, const char * ) = 0; - virtual bool SetItemDescription( uint64_t, const char * ) = 0; - virtual bool SetItemUpdateLanguage( uint64_t, const char * ) = 0; - virtual bool SetItemMetadata( uint64_t, const char * ) = 0; - virtual bool SetItemVisibility( uint64_t, uint32_t ) = 0; - virtual bool SetItemTags( uint64_t, const u_SteamParamStringArray_t * ) = 0; - virtual bool SetItemContent( uint64_t, const char * ) = 0; - virtual bool SetItemPreview( uint64_t, const char * ) = 0; - virtual bool RemoveItemKeyValueTags( uint64_t, const char * ) = 0; - virtual bool AddItemKeyValueTag( uint64_t, const char *, const char * ) = 0; - virtual bool AddItemPreviewFile( uint64_t, const char *, uint32_t ) = 0; - virtual bool AddItemPreviewVideo( uint64_t, const char * ) = 0; - virtual bool UpdateItemPreviewFile( uint64_t, uint32_t, const char * ) = 0; - virtual bool UpdateItemPreviewVideo( uint64_t, uint32_t, const char * ) = 0; - virtual bool RemoveItemPreview( uint64_t, uint32_t ) = 0; + virtual int8_t SetItemTitle( uint64_t, const char * ) = 0; + virtual int8_t SetItemDescription( uint64_t, const char * ) = 0; + virtual int8_t SetItemUpdateLanguage( uint64_t, const char * ) = 0; + virtual int8_t SetItemMetadata( uint64_t, const char * ) = 0; + virtual int8_t SetItemVisibility( uint64_t, uint32_t ) = 0; + virtual int8_t SetItemTags( uint64_t, const u_SteamParamStringArray_t * ) = 0; + virtual int8_t SetItemContent( uint64_t, const char * ) = 0; + virtual int8_t SetItemPreview( uint64_t, const char * ) = 0; + virtual int8_t RemoveItemKeyValueTags( uint64_t, const char * ) = 0; + virtual int8_t AddItemKeyValueTag( uint64_t, const char *, const char * ) = 0; + virtual int8_t AddItemPreviewFile( uint64_t, const char *, uint32_t ) = 0; + virtual int8_t AddItemPreviewVideo( uint64_t, const char * ) = 0; + virtual int8_t UpdateItemPreviewFile( uint64_t, uint32_t, const char * ) = 0; + virtual int8_t UpdateItemPreviewVideo( uint64_t, uint32_t, const char * ) = 0; + virtual int8_t RemoveItemPreview( uint64_t, uint32_t ) = 0; virtual uint64_t SubmitItemUpdate( uint64_t, const char * ) = 0; virtual uint32_t GetItemUpdateProgress( uint64_t, uint64_t *, uint64_t * ) = 0; - virtual uint64_t SetUserItemVote( uint64_t, bool ) = 0; + virtual uint64_t SetUserItemVote( uint64_t, int8_t ) = 0; virtual uint64_t GetUserItemVote( uint64_t ) = 0; virtual uint64_t AddItemToFavorites( uint32_t, uint64_t ) = 0; virtual uint64_t RemoveItemFromFavorites( uint32_t, uint64_t ) = 0; @@ -4335,55 +4335,55 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 virtual uint32_t GetNumSubscribedItems( ) = 0; virtual uint32_t GetSubscribedItems( uint64_t *, uint32_t ) = 0; virtual uint32_t GetItemState( uint64_t ) = 0; - virtual bool GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, uint32_t * ) = 0; - virtual bool GetItemDownloadInfo( uint64_t, uint64_t *, uint64_t * ) = 0; - virtual bool DownloadItem( uint64_t, bool ) = 0; - virtual bool BInitWorkshopForGameServer( uint32_t, const char * ) = 0; - virtual void SuspendDownloads( bool ) = 0; + virtual int8_t GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, uint32_t * ) = 0; + virtual int8_t GetItemDownloadInfo( uint64_t, uint64_t *, uint64_t * ) = 0; + virtual int8_t DownloadItem( uint64_t, int8_t ) = 0; + virtual int8_t BInitWorkshopForGameServer( uint32_t, const char * ) = 0; + virtual void SuspendDownloads( int8_t ) = 0; #endif /* __cplusplus */ }; struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 { #ifdef __cplusplus - virtual bool FileWrite( const char *, const void *, int32_t ) = 0; + virtual int8_t FileWrite( const char *, const void *, int32_t ) = 0; virtual int32_t FileRead( const char *, void *, int32_t ) = 0; virtual uint64_t FileWriteAsync( const char *, const void *, uint32_t ) = 0; virtual uint64_t FileReadAsync( const char *, uint32_t, uint32_t ) = 0; - virtual bool FileReadAsyncComplete( uint64_t, void *, uint32_t ) = 0; - virtual bool FileForget( const char * ) = 0; - virtual bool FileDelete( const char * ) = 0; + virtual int8_t FileReadAsyncComplete( uint64_t, void *, uint32_t ) = 0; + virtual int8_t FileForget( const char * ) = 0; + virtual int8_t FileDelete( const char * ) = 0; virtual uint64_t FileShare( const char * ) = 0; - virtual bool SetSyncPlatforms( const char *, uint32_t ) = 0; + virtual int8_t SetSyncPlatforms( const char *, uint32_t ) = 0; virtual uint64_t FileWriteStreamOpen( const char * ) = 0; - virtual bool FileWriteStreamWriteChunk( uint64_t, const void *, int32_t ) = 0; - virtual bool FileWriteStreamClose( uint64_t ) = 0; - virtual bool FileWriteStreamCancel( uint64_t ) = 0; - virtual bool FileExists( const char * ) = 0; - virtual bool FilePersisted( const char * ) = 0; + virtual int8_t FileWriteStreamWriteChunk( uint64_t, const void *, int32_t ) = 0; + virtual int8_t FileWriteStreamClose( uint64_t ) = 0; + virtual int8_t FileWriteStreamCancel( uint64_t ) = 0; + virtual int8_t FileExists( const char * ) = 0; + virtual int8_t FilePersisted( const char * ) = 0; virtual int32_t GetFileSize( const char * ) = 0; virtual int64_t GetFileTimestamp( const char * ) = 0; virtual uint32_t GetSyncPlatforms( const char * ) = 0; virtual int32_t GetFileCount( ) = 0; virtual const char * GetFileNameAndSize( int32_t, int32_t * ) = 0; - virtual bool GetQuota( uint64_t *, uint64_t * ) = 0; - virtual bool IsCloudEnabledForAccount( ) = 0; - virtual bool IsCloudEnabledForApp( ) = 0; - virtual void SetCloudEnabledForApp( bool ) = 0; + virtual int8_t GetQuota( uint64_t *, uint64_t * ) = 0; + virtual int8_t IsCloudEnabledForAccount( ) = 0; + virtual int8_t IsCloudEnabledForApp( ) = 0; + virtual void SetCloudEnabledForApp( int8_t ) = 0; virtual uint64_t UGCDownload( uint64_t, uint32_t ) = 0; - virtual bool GetUGCDownloadProgress( uint64_t, int32_t *, int32_t * ) = 0; - virtual bool GetUGCDetails( uint64_t, uint32_t *, char **, int32_t *, CSteamID * ) = 0; + virtual int8_t GetUGCDownloadProgress( uint64_t, int32_t *, int32_t * ) = 0; + virtual int8_t GetUGCDetails( uint64_t, uint32_t *, char **, int32_t *, CSteamID * ) = 0; virtual int32_t UGCRead( uint64_t, void *, int32_t, uint32_t, uint32_t ) = 0; virtual int32_t GetCachedUGCCount( ) = 0; virtual uint64_t GetCachedUGCHandle( int32_t ) = 0; virtual uint64_t PublishWorkshopFile( const char *, const char *, uint32_t, const char *, const char *, uint32_t, u_SteamParamStringArray_t *, uint32_t ) = 0; virtual uint64_t CreatePublishedFileUpdateRequest( uint64_t ) = 0; - virtual bool UpdatePublishedFileFile( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFilePreviewFile( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFileTitle( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFileDescription( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFileVisibility( uint64_t, uint32_t ) = 0; - virtual bool UpdatePublishedFileTags( uint64_t, u_SteamParamStringArray_t * ) = 0; + virtual int8_t UpdatePublishedFileFile( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFilePreviewFile( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileTitle( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileDescription( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileVisibility( uint64_t, uint32_t ) = 0; + virtual int8_t UpdatePublishedFileTags( uint64_t, u_SteamParamStringArray_t * ) = 0; virtual uint64_t CommitPublishedFileUpdate( uint64_t ) = 0; virtual uint64_t GetPublishedFileDetails( uint64_t, uint32_t ) = 0; virtual uint64_t DeletePublishedFile( uint64_t ) = 0; @@ -4391,9 +4391,9 @@ struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 virtual uint64_t SubscribePublishedFile( uint64_t ) = 0; virtual uint64_t EnumerateUserSubscribedFiles( uint32_t ) = 0; virtual uint64_t UnsubscribePublishedFile( uint64_t ) = 0; - virtual bool UpdatePublishedFileSetChangeDescription( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileSetChangeDescription( uint64_t, const char * ) = 0; virtual uint64_t GetPublishedItemVoteDetails( uint64_t ) = 0; - virtual uint64_t UpdateUserPublishedItemVote( uint64_t, bool ) = 0; + virtual uint64_t UpdateUserPublishedItemVote( uint64_t, int8_t ) = 0; virtual uint64_t GetUserPublishedItemVoteDetails( uint64_t ) = 0; virtual uint64_t EnumerateUserSharedWorkshopFiles( CSteamID, uint32_t, u_SteamParamStringArray_t *, u_SteamParamStringArray_t * ) = 0; virtual uint64_t PublishVideo( uint32_t, const char *, const char *, const char *, uint32_t, const char *, const char *, uint32_t, u_SteamParamStringArray_t * ) = 0; @@ -4410,11 +4410,11 @@ struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 virtual uint32_t WriteScreenshot( void *, uint32_t, int32_t, int32_t ) = 0; virtual uint32_t AddScreenshotToLibrary( const char *, const char *, int32_t, int32_t ) = 0; virtual void TriggerScreenshot( ) = 0; - virtual void HookScreenshots( bool ) = 0; - virtual bool SetLocation( uint32_t, const char * ) = 0; - virtual bool TagUser( uint32_t, CSteamID ) = 0; - virtual bool TagPublishedFile( uint32_t, uint64_t ) = 0; - virtual bool IsScreenshotsHooked( ) = 0; + virtual void HookScreenshots( int8_t ) = 0; + virtual int8_t SetLocation( uint32_t, const char * ) = 0; + virtual int8_t TagUser( uint32_t, CSteamID ) = 0; + virtual int8_t TagPublishedFile( uint32_t, uint64_t ) = 0; + virtual int8_t IsScreenshotsHooked( ) = 0; virtual uint32_t AddVRScreenshotToLibrary( uint32_t, const char *, const char * ) = 0; #endif /* __cplusplus */ }; @@ -4422,11 +4422,11 @@ struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 struct u_ISteamController_SteamController004 { #ifdef __cplusplus - virtual bool Init( ) = 0; - virtual bool Shutdown( ) = 0; + virtual int8_t Init( ) = 0; + virtual int8_t Shutdown( ) = 0; virtual void RunFrame( ) = 0; virtual int32_t GetConnectedControllers( uint64_t * ) = 0; - virtual bool ShowBindingPanel( uint64_t ) = 0; + virtual int8_t ShowBindingPanel( uint64_t ) = 0; virtual uint64_t GetActionSetHandle( const char * ) = 0; virtual void ActivateActionSet( uint64_t, uint64_t ) = 0; virtual uint64_t GetCurrentActionSet( uint64_t ) = 0; @@ -4442,8 +4442,8 @@ struct u_ISteamController_SteamController004 virtual int32_t GetGamepadIndexForController( uint64_t ) = 0; virtual uint64_t GetControllerForGamepadIndex( int32_t ) = 0; virtual ControllerMotionData_t GetMotionData( uint64_t ) = 0; - virtual bool ShowDigitalActionOrigins( uint64_t, uint64_t, float, float, float ) = 0; - virtual bool ShowAnalogActionOrigins( uint64_t, uint64_t, float, float, float ) = 0; + virtual int8_t ShowDigitalActionOrigins( uint64_t, uint64_t, float, float, float ) = 0; + virtual int8_t ShowAnalogActionOrigins( uint64_t, uint64_t, float, float, float ) = 0; #endif /* __cplusplus */ }; @@ -4454,53 +4454,53 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 virtual uint64_t CreateQueryAllUGCRequest( uint32_t, uint32_t, uint32_t, uint32_t, uint32_t ) = 0; virtual uint64_t CreateQueryUGCDetailsRequest( uint64_t *, uint32_t ) = 0; virtual uint64_t SendQueryUGCRequest( uint64_t ) = 0; - virtual bool GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; - virtual bool GetQueryUGCPreviewURL( uint64_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCMetadata( uint64_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCChildren( uint64_t, uint32_t, uint64_t *, uint32_t ) = 0; - virtual bool GetQueryUGCStatistic( uint64_t, uint32_t, uint32_t, uint64_t * ) = 0; + virtual int8_t GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; + virtual int8_t GetQueryUGCPreviewURL( uint64_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCMetadata( uint64_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCChildren( uint64_t, uint32_t, uint64_t *, uint32_t ) = 0; + virtual int8_t GetQueryUGCStatistic( uint64_t, uint32_t, uint32_t, uint64_t * ) = 0; virtual uint32_t GetQueryUGCNumAdditionalPreviews( uint64_t, uint32_t ) = 0; - virtual bool GetQueryUGCAdditionalPreview( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t, uint32_t * ) = 0; + virtual int8_t GetQueryUGCAdditionalPreview( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t, uint32_t * ) = 0; virtual uint32_t GetQueryUGCNumKeyValueTags( uint64_t, uint32_t ) = 0; - virtual bool GetQueryUGCKeyValueTag( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t ) = 0; - virtual bool ReleaseQueryUGCRequest( uint64_t ) = 0; - virtual bool AddRequiredTag( uint64_t, const char * ) = 0; - virtual bool AddExcludedTag( uint64_t, const char * ) = 0; - virtual bool SetReturnOnlyIDs( uint64_t, bool ) = 0; - virtual bool SetReturnKeyValueTags( uint64_t, bool ) = 0; - virtual bool SetReturnLongDescription( uint64_t, bool ) = 0; - virtual bool SetReturnMetadata( uint64_t, bool ) = 0; - virtual bool SetReturnChildren( uint64_t, bool ) = 0; - virtual bool SetReturnAdditionalPreviews( uint64_t, bool ) = 0; - virtual bool SetReturnTotalOnly( uint64_t, bool ) = 0; - virtual bool SetLanguage( uint64_t, const char * ) = 0; - virtual bool SetAllowCachedResponse( uint64_t, uint32_t ) = 0; - virtual bool SetCloudFileNameFilter( uint64_t, const char * ) = 0; - virtual bool SetMatchAnyTag( uint64_t, bool ) = 0; - virtual bool SetSearchText( uint64_t, const char * ) = 0; - virtual bool SetRankedByTrendDays( uint64_t, uint32_t ) = 0; - virtual bool AddRequiredKeyValueTag( uint64_t, const char *, const char * ) = 0; + virtual int8_t GetQueryUGCKeyValueTag( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t ) = 0; + virtual int8_t ReleaseQueryUGCRequest( uint64_t ) = 0; + virtual int8_t AddRequiredTag( uint64_t, const char * ) = 0; + virtual int8_t AddExcludedTag( uint64_t, const char * ) = 0; + virtual int8_t SetReturnOnlyIDs( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnKeyValueTags( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnLongDescription( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnMetadata( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnChildren( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnAdditionalPreviews( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnTotalOnly( uint64_t, int8_t ) = 0; + virtual int8_t SetLanguage( uint64_t, const char * ) = 0; + virtual int8_t SetAllowCachedResponse( uint64_t, uint32_t ) = 0; + virtual int8_t SetCloudFileNameFilter( uint64_t, const char * ) = 0; + virtual int8_t SetMatchAnyTag( uint64_t, int8_t ) = 0; + virtual int8_t SetSearchText( uint64_t, const char * ) = 0; + virtual int8_t SetRankedByTrendDays( uint64_t, uint32_t ) = 0; + virtual int8_t AddRequiredKeyValueTag( uint64_t, const char *, const char * ) = 0; virtual uint64_t RequestUGCDetails( uint64_t, uint32_t ) = 0; virtual uint64_t CreateItem( uint32_t, uint32_t ) = 0; virtual uint64_t StartItemUpdate( uint32_t, uint64_t ) = 0; - virtual bool SetItemTitle( uint64_t, const char * ) = 0; - virtual bool SetItemDescription( uint64_t, const char * ) = 0; - virtual bool SetItemUpdateLanguage( uint64_t, const char * ) = 0; - virtual bool SetItemMetadata( uint64_t, const char * ) = 0; - virtual bool SetItemVisibility( uint64_t, uint32_t ) = 0; - virtual bool SetItemTags( uint64_t, const u_SteamParamStringArray_t * ) = 0; - virtual bool SetItemContent( uint64_t, const char * ) = 0; - virtual bool SetItemPreview( uint64_t, const char * ) = 0; - virtual bool RemoveItemKeyValueTags( uint64_t, const char * ) = 0; - virtual bool AddItemKeyValueTag( uint64_t, const char *, const char * ) = 0; - virtual bool AddItemPreviewFile( uint64_t, const char *, uint32_t ) = 0; - virtual bool AddItemPreviewVideo( uint64_t, const char * ) = 0; - virtual bool UpdateItemPreviewFile( uint64_t, uint32_t, const char * ) = 0; - virtual bool UpdateItemPreviewVideo( uint64_t, uint32_t, const char * ) = 0; - virtual bool RemoveItemPreview( uint64_t, uint32_t ) = 0; + virtual int8_t SetItemTitle( uint64_t, const char * ) = 0; + virtual int8_t SetItemDescription( uint64_t, const char * ) = 0; + virtual int8_t SetItemUpdateLanguage( uint64_t, const char * ) = 0; + virtual int8_t SetItemMetadata( uint64_t, const char * ) = 0; + virtual int8_t SetItemVisibility( uint64_t, uint32_t ) = 0; + virtual int8_t SetItemTags( uint64_t, const u_SteamParamStringArray_t * ) = 0; + virtual int8_t SetItemContent( uint64_t, const char * ) = 0; + virtual int8_t SetItemPreview( uint64_t, const char * ) = 0; + virtual int8_t RemoveItemKeyValueTags( uint64_t, const char * ) = 0; + virtual int8_t AddItemKeyValueTag( uint64_t, const char *, const char * ) = 0; + virtual int8_t AddItemPreviewFile( uint64_t, const char *, uint32_t ) = 0; + virtual int8_t AddItemPreviewVideo( uint64_t, const char * ) = 0; + virtual int8_t UpdateItemPreviewFile( uint64_t, uint32_t, const char * ) = 0; + virtual int8_t UpdateItemPreviewVideo( uint64_t, uint32_t, const char * ) = 0; + virtual int8_t RemoveItemPreview( uint64_t, uint32_t ) = 0; virtual uint64_t SubmitItemUpdate( uint64_t, const char * ) = 0; virtual uint32_t GetItemUpdateProgress( uint64_t, uint64_t *, uint64_t * ) = 0; - virtual uint64_t SetUserItemVote( uint64_t, bool ) = 0; + virtual uint64_t SetUserItemVote( uint64_t, int8_t ) = 0; virtual uint64_t GetUserItemVote( uint64_t ) = 0; virtual uint64_t AddItemToFavorites( uint32_t, uint64_t ) = 0; virtual uint64_t RemoveItemFromFavorites( uint32_t, uint64_t ) = 0; @@ -4509,11 +4509,11 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 virtual uint32_t GetNumSubscribedItems( ) = 0; virtual uint32_t GetSubscribedItems( uint64_t *, uint32_t ) = 0; virtual uint32_t GetItemState( uint64_t ) = 0; - virtual bool GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, uint32_t * ) = 0; - virtual bool GetItemDownloadInfo( uint64_t, uint64_t *, uint64_t * ) = 0; - virtual bool DownloadItem( uint64_t, bool ) = 0; - virtual bool BInitWorkshopForGameServer( uint32_t, const char * ) = 0; - virtual void SuspendDownloads( bool ) = 0; + virtual int8_t GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, uint32_t * ) = 0; + virtual int8_t GetItemDownloadInfo( uint64_t, uint64_t *, uint64_t * ) = 0; + virtual int8_t DownloadItem( uint64_t, int8_t ) = 0; + virtual int8_t BInitWorkshopForGameServer( uint32_t, const char * ) = 0; + virtual void SuspendDownloads( int8_t ) = 0; virtual uint64_t StartPlaytimeTracking( uint64_t *, uint32_t ) = 0; virtual uint64_t StopPlaytimeTracking( uint64_t *, uint32_t ) = 0; virtual uint64_t StopPlaytimeTrackingForAllItems( ) = 0; @@ -4523,11 +4523,11 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 struct u_ISteamController_SteamController005 { #ifdef __cplusplus - virtual bool Init( ) = 0; - virtual bool Shutdown( ) = 0; + virtual int8_t Init( ) = 0; + virtual int8_t Shutdown( ) = 0; virtual void RunFrame( ) = 0; virtual int32_t GetConnectedControllers( uint64_t * ) = 0; - virtual bool ShowBindingPanel( uint64_t ) = 0; + virtual int8_t ShowBindingPanel( uint64_t ) = 0; virtual uint64_t GetActionSetHandle( const char * ) = 0; virtual void ActivateActionSet( uint64_t, uint64_t ) = 0; virtual uint64_t GetCurrentActionSet( uint64_t ) = 0; @@ -4545,8 +4545,8 @@ struct u_ISteamController_SteamController005 virtual int32_t GetGamepadIndexForController( uint64_t ) = 0; virtual uint64_t GetControllerForGamepadIndex( int32_t ) = 0; virtual ControllerMotionData_t GetMotionData( uint64_t ) = 0; - virtual bool ShowDigitalActionOrigins( uint64_t, uint64_t, float, float, float ) = 0; - virtual bool ShowAnalogActionOrigins( uint64_t, uint64_t, float, float, float ) = 0; + virtual int8_t ShowDigitalActionOrigins( uint64_t, uint64_t, float, float, float ) = 0; + virtual int8_t ShowAnalogActionOrigins( uint64_t, uint64_t, float, float, float ) = 0; virtual const char * GetStringForActionOrigin( uint32_t ) = 0; virtual const char * GetGlyphForActionOrigin( uint32_t ) = 0; #endif /* __cplusplus */ @@ -4560,34 +4560,34 @@ struct u_ISteamUtils_SteamUtils009 virtual uint32_t GetConnectedUniverse( ) = 0; virtual uint32_t GetServerRealTime( ) = 0; virtual const char * GetIPCountry( ) = 0; - virtual bool GetImageSize( int32_t, uint32_t *, uint32_t * ) = 0; - virtual bool GetImageRGBA( int32_t, uint8_t *, int32_t ) = 0; - virtual bool GetCSERIPPort( uint32_t *, uint16_t * ) = 0; + virtual int8_t GetImageSize( int32_t, uint32_t *, uint32_t * ) = 0; + virtual int8_t GetImageRGBA( int32_t, uint8_t *, int32_t ) = 0; + virtual int8_t GetCSERIPPort( uint32_t *, uint16_t * ) = 0; virtual uint8_t GetCurrentBatteryPower( ) = 0; virtual uint32_t GetAppID( ) = 0; virtual void SetOverlayNotificationPosition( uint32_t ) = 0; - virtual bool IsAPICallCompleted( uint64_t, bool * ) = 0; + virtual int8_t IsAPICallCompleted( uint64_t, int8_t * ) = 0; virtual uint32_t GetAPICallFailureReason( uint64_t ) = 0; - virtual bool GetAPICallResult( uint64_t, void *, int32_t, int32_t, bool * ) = 0; + virtual int8_t GetAPICallResult( uint64_t, void *, int32_t, int32_t, int8_t * ) = 0; virtual void RunFrame( ) = 0; virtual uint32_t GetIPCCallCount( ) = 0; virtual void SetWarningMessageHook( void (*U_CDECL )(int32_t, const char *) ) = 0; - virtual bool IsOverlayEnabled( ) = 0; - virtual bool BOverlayNeedsPresent( ) = 0; + virtual int8_t IsOverlayEnabled( ) = 0; + virtual int8_t BOverlayNeedsPresent( ) = 0; virtual uint64_t CheckFileSignature( const char * ) = 0; - virtual bool ShowGamepadTextInput( uint32_t, uint32_t, const char *, uint32_t, const char * ) = 0; + virtual int8_t ShowGamepadTextInput( uint32_t, uint32_t, const char *, uint32_t, const char * ) = 0; virtual uint32_t GetEnteredGamepadTextLength( ) = 0; - virtual bool GetEnteredGamepadTextInput( char *, uint32_t ) = 0; + virtual int8_t GetEnteredGamepadTextInput( char *, uint32_t ) = 0; virtual const char * GetSteamUILanguage( ) = 0; - virtual bool IsSteamRunningInVR( ) = 0; + virtual int8_t IsSteamRunningInVR( ) = 0; virtual void SetOverlayNotificationInset( int32_t, int32_t ) = 0; - virtual bool IsSteamInBigPictureMode( ) = 0; + virtual int8_t IsSteamInBigPictureMode( ) = 0; virtual void StartVRDashboard( ) = 0; - virtual bool IsVRHeadsetStreamingEnabled( ) = 0; - virtual void SetVRHeadsetStreamingEnabled( bool ) = 0; - virtual bool IsSteamChinaLauncher( ) = 0; - virtual bool InitFilterText( ) = 0; - virtual int32_t FilterText( char *, uint32_t, const char *, bool ) = 0; + virtual int8_t IsVRHeadsetStreamingEnabled( ) = 0; + virtual void SetVRHeadsetStreamingEnabled( int8_t ) = 0; + virtual int8_t IsSteamChinaLauncher( ) = 0; + virtual int8_t InitFilterText( ) = 0; + virtual int32_t FilterText( char *, uint32_t, const char *, int8_t ) = 0; virtual uint32_t GetIPv6ConnectivityState( uint32_t ) = 0; #endif /* __cplusplus */ }; @@ -4599,54 +4599,54 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 virtual uint64_t CreateQueryAllUGCRequest( uint32_t, uint32_t, uint32_t, uint32_t, uint32_t ) = 0; virtual uint64_t CreateQueryUGCDetailsRequest( uint64_t *, uint32_t ) = 0; virtual uint64_t SendQueryUGCRequest( uint64_t ) = 0; - virtual bool GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; - virtual bool GetQueryUGCPreviewURL( uint64_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCMetadata( uint64_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCChildren( uint64_t, uint32_t, uint64_t *, uint32_t ) = 0; - virtual bool GetQueryUGCStatistic( uint64_t, uint32_t, uint32_t, uint64_t * ) = 0; + virtual int8_t GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; + virtual int8_t GetQueryUGCPreviewURL( uint64_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCMetadata( uint64_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCChildren( uint64_t, uint32_t, uint64_t *, uint32_t ) = 0; + virtual int8_t GetQueryUGCStatistic( uint64_t, uint32_t, uint32_t, uint64_t * ) = 0; virtual uint32_t GetQueryUGCNumAdditionalPreviews( uint64_t, uint32_t ) = 0; - virtual bool GetQueryUGCAdditionalPreview( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t, uint32_t * ) = 0; + virtual int8_t GetQueryUGCAdditionalPreview( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t, uint32_t * ) = 0; virtual uint32_t GetQueryUGCNumKeyValueTags( uint64_t, uint32_t ) = 0; - virtual bool GetQueryUGCKeyValueTag( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t ) = 0; - virtual bool ReleaseQueryUGCRequest( uint64_t ) = 0; - virtual bool AddRequiredTag( uint64_t, const char * ) = 0; - virtual bool AddExcludedTag( uint64_t, const char * ) = 0; - virtual bool SetReturnOnlyIDs( uint64_t, bool ) = 0; - virtual bool SetReturnKeyValueTags( uint64_t, bool ) = 0; - virtual bool SetReturnLongDescription( uint64_t, bool ) = 0; - virtual bool SetReturnMetadata( uint64_t, bool ) = 0; - virtual bool SetReturnChildren( uint64_t, bool ) = 0; - virtual bool SetReturnAdditionalPreviews( uint64_t, bool ) = 0; - virtual bool SetReturnTotalOnly( uint64_t, bool ) = 0; - virtual bool SetReturnPlaytimeStats( uint64_t, uint32_t ) = 0; - virtual bool SetLanguage( uint64_t, const char * ) = 0; - virtual bool SetAllowCachedResponse( uint64_t, uint32_t ) = 0; - virtual bool SetCloudFileNameFilter( uint64_t, const char * ) = 0; - virtual bool SetMatchAnyTag( uint64_t, bool ) = 0; - virtual bool SetSearchText( uint64_t, const char * ) = 0; - virtual bool SetRankedByTrendDays( uint64_t, uint32_t ) = 0; - virtual bool AddRequiredKeyValueTag( uint64_t, const char *, const char * ) = 0; + virtual int8_t GetQueryUGCKeyValueTag( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t ) = 0; + virtual int8_t ReleaseQueryUGCRequest( uint64_t ) = 0; + virtual int8_t AddRequiredTag( uint64_t, const char * ) = 0; + virtual int8_t AddExcludedTag( uint64_t, const char * ) = 0; + virtual int8_t SetReturnOnlyIDs( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnKeyValueTags( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnLongDescription( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnMetadata( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnChildren( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnAdditionalPreviews( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnTotalOnly( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnPlaytimeStats( uint64_t, uint32_t ) = 0; + virtual int8_t SetLanguage( uint64_t, const char * ) = 0; + virtual int8_t SetAllowCachedResponse( uint64_t, uint32_t ) = 0; + virtual int8_t SetCloudFileNameFilter( uint64_t, const char * ) = 0; + virtual int8_t SetMatchAnyTag( uint64_t, int8_t ) = 0; + virtual int8_t SetSearchText( uint64_t, const char * ) = 0; + virtual int8_t SetRankedByTrendDays( uint64_t, uint32_t ) = 0; + virtual int8_t AddRequiredKeyValueTag( uint64_t, const char *, const char * ) = 0; virtual uint64_t RequestUGCDetails( uint64_t, uint32_t ) = 0; virtual uint64_t CreateItem( uint32_t, uint32_t ) = 0; virtual uint64_t StartItemUpdate( uint32_t, uint64_t ) = 0; - virtual bool SetItemTitle( uint64_t, const char * ) = 0; - virtual bool SetItemDescription( uint64_t, const char * ) = 0; - virtual bool SetItemUpdateLanguage( uint64_t, const char * ) = 0; - virtual bool SetItemMetadata( uint64_t, const char * ) = 0; - virtual bool SetItemVisibility( uint64_t, uint32_t ) = 0; - virtual bool SetItemTags( uint64_t, const u_SteamParamStringArray_t * ) = 0; - virtual bool SetItemContent( uint64_t, const char * ) = 0; - virtual bool SetItemPreview( uint64_t, const char * ) = 0; - virtual bool RemoveItemKeyValueTags( uint64_t, const char * ) = 0; - virtual bool AddItemKeyValueTag( uint64_t, const char *, const char * ) = 0; - virtual bool AddItemPreviewFile( uint64_t, const char *, uint32_t ) = 0; - virtual bool AddItemPreviewVideo( uint64_t, const char * ) = 0; - virtual bool UpdateItemPreviewFile( uint64_t, uint32_t, const char * ) = 0; - virtual bool UpdateItemPreviewVideo( uint64_t, uint32_t, const char * ) = 0; - virtual bool RemoveItemPreview( uint64_t, uint32_t ) = 0; + virtual int8_t SetItemTitle( uint64_t, const char * ) = 0; + virtual int8_t SetItemDescription( uint64_t, const char * ) = 0; + virtual int8_t SetItemUpdateLanguage( uint64_t, const char * ) = 0; + virtual int8_t SetItemMetadata( uint64_t, const char * ) = 0; + virtual int8_t SetItemVisibility( uint64_t, uint32_t ) = 0; + virtual int8_t SetItemTags( uint64_t, const u_SteamParamStringArray_t * ) = 0; + virtual int8_t SetItemContent( uint64_t, const char * ) = 0; + virtual int8_t SetItemPreview( uint64_t, const char * ) = 0; + virtual int8_t RemoveItemKeyValueTags( uint64_t, const char * ) = 0; + virtual int8_t AddItemKeyValueTag( uint64_t, const char *, const char * ) = 0; + virtual int8_t AddItemPreviewFile( uint64_t, const char *, uint32_t ) = 0; + virtual int8_t AddItemPreviewVideo( uint64_t, const char * ) = 0; + virtual int8_t UpdateItemPreviewFile( uint64_t, uint32_t, const char * ) = 0; + virtual int8_t UpdateItemPreviewVideo( uint64_t, uint32_t, const char * ) = 0; + virtual int8_t RemoveItemPreview( uint64_t, uint32_t ) = 0; virtual uint64_t SubmitItemUpdate( uint64_t, const char * ) = 0; virtual uint32_t GetItemUpdateProgress( uint64_t, uint64_t *, uint64_t * ) = 0; - virtual uint64_t SetUserItemVote( uint64_t, bool ) = 0; + virtual uint64_t SetUserItemVote( uint64_t, int8_t ) = 0; virtual uint64_t GetUserItemVote( uint64_t ) = 0; virtual uint64_t AddItemToFavorites( uint32_t, uint64_t ) = 0; virtual uint64_t RemoveItemFromFavorites( uint32_t, uint64_t ) = 0; @@ -4655,11 +4655,11 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 virtual uint32_t GetNumSubscribedItems( ) = 0; virtual uint32_t GetSubscribedItems( uint64_t *, uint32_t ) = 0; virtual uint32_t GetItemState( uint64_t ) = 0; - virtual bool GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, uint32_t * ) = 0; - virtual bool GetItemDownloadInfo( uint64_t, uint64_t *, uint64_t * ) = 0; - virtual bool DownloadItem( uint64_t, bool ) = 0; - virtual bool BInitWorkshopForGameServer( uint32_t, const char * ) = 0; - virtual void SuspendDownloads( bool ) = 0; + virtual int8_t GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, uint32_t * ) = 0; + virtual int8_t GetItemDownloadInfo( uint64_t, uint64_t *, uint64_t * ) = 0; + virtual int8_t DownloadItem( uint64_t, int8_t ) = 0; + virtual int8_t BInitWorkshopForGameServer( uint32_t, const char * ) = 0; + virtual void SuspendDownloads( int8_t ) = 0; virtual uint64_t StartPlaytimeTracking( uint64_t *, uint32_t ) = 0; virtual uint64_t StopPlaytimeTracking( uint64_t *, uint32_t ) = 0; virtual uint64_t StopPlaytimeTrackingForAllItems( ) = 0; @@ -4676,42 +4676,42 @@ struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 { #ifdef __cplusplus virtual uint32_t GetResultStatus( int32_t ) = 0; - virtual bool GetResultItems( int32_t, SteamItemDetails_t *, uint32_t * ) = 0; - virtual bool GetResultItemProperty( int32_t, uint32_t, const char *, char *, uint32_t * ) = 0; + virtual int8_t GetResultItems( int32_t, SteamItemDetails_t *, uint32_t * ) = 0; + virtual int8_t GetResultItemProperty( int32_t, uint32_t, const char *, char *, uint32_t * ) = 0; virtual uint32_t GetResultTimestamp( int32_t ) = 0; - virtual bool CheckResultSteamID( int32_t, CSteamID ) = 0; + virtual int8_t CheckResultSteamID( int32_t, CSteamID ) = 0; virtual void DestroyResult( int32_t ) = 0; - virtual bool GetAllItems( int32_t * ) = 0; - virtual bool GetItemsByID( int32_t *, const uint64_t *, uint32_t ) = 0; - virtual bool SerializeResult( int32_t, void *, uint32_t * ) = 0; - virtual bool DeserializeResult( int32_t *, const void *, uint32_t, bool ) = 0; - virtual bool GenerateItems( int32_t *, const int32_t *, const uint32_t *, uint32_t ) = 0; - virtual bool GrantPromoItems( int32_t * ) = 0; - virtual bool AddPromoItem( int32_t *, int32_t ) = 0; - virtual bool AddPromoItems( int32_t *, const int32_t *, uint32_t ) = 0; - virtual bool ConsumeItem( int32_t *, uint64_t, uint32_t ) = 0; - virtual bool ExchangeItems( int32_t *, const int32_t *, const uint32_t *, uint32_t, const uint64_t *, const uint32_t *, uint32_t ) = 0; - virtual bool TransferItemQuantity( int32_t *, uint64_t, uint32_t, uint64_t ) = 0; + virtual int8_t GetAllItems( int32_t * ) = 0; + virtual int8_t GetItemsByID( int32_t *, const uint64_t *, uint32_t ) = 0; + virtual int8_t SerializeResult( int32_t, void *, uint32_t * ) = 0; + virtual int8_t DeserializeResult( int32_t *, const void *, uint32_t, int8_t ) = 0; + virtual int8_t GenerateItems( int32_t *, const int32_t *, const uint32_t *, uint32_t ) = 0; + virtual int8_t GrantPromoItems( int32_t * ) = 0; + virtual int8_t AddPromoItem( int32_t *, int32_t ) = 0; + virtual int8_t AddPromoItems( int32_t *, const int32_t *, uint32_t ) = 0; + virtual int8_t ConsumeItem( int32_t *, uint64_t, uint32_t ) = 0; + virtual int8_t ExchangeItems( int32_t *, const int32_t *, const uint32_t *, uint32_t, const uint64_t *, const uint32_t *, uint32_t ) = 0; + virtual int8_t TransferItemQuantity( int32_t *, uint64_t, uint32_t, uint64_t ) = 0; virtual void SendItemDropHeartbeat( ) = 0; - virtual bool TriggerItemDrop( int32_t *, int32_t ) = 0; - virtual bool TradeItems( int32_t *, CSteamID, const uint64_t *, const uint32_t *, uint32_t, const uint64_t *, const uint32_t *, uint32_t ) = 0; - virtual bool LoadItemDefinitions( ) = 0; - virtual bool GetItemDefinitionIDs( int32_t *, uint32_t * ) = 0; - virtual bool GetItemDefinitionProperty( int32_t, const char *, char *, uint32_t * ) = 0; + virtual int8_t TriggerItemDrop( int32_t *, int32_t ) = 0; + virtual int8_t TradeItems( int32_t *, CSteamID, const uint64_t *, const uint32_t *, uint32_t, const uint64_t *, const uint32_t *, uint32_t ) = 0; + virtual int8_t LoadItemDefinitions( ) = 0; + virtual int8_t GetItemDefinitionIDs( int32_t *, uint32_t * ) = 0; + virtual int8_t GetItemDefinitionProperty( int32_t, const char *, char *, uint32_t * ) = 0; virtual uint64_t RequestEligiblePromoItemDefinitionsIDs( CSteamID ) = 0; - virtual bool GetEligiblePromoItemDefinitionIDs( CSteamID, int32_t *, uint32_t * ) = 0; + virtual int8_t GetEligiblePromoItemDefinitionIDs( CSteamID, int32_t *, uint32_t * ) = 0; virtual uint64_t StartPurchase( const int32_t *, const uint32_t *, uint32_t ) = 0; virtual uint64_t RequestPrices( ) = 0; virtual uint32_t GetNumItemsWithPrices( ) = 0; - virtual bool GetItemsWithPrices( int32_t *, uint64_t *, uint32_t ) = 0; - virtual bool GetItemPrice( int32_t, uint64_t * ) = 0; + virtual int8_t GetItemsWithPrices( int32_t *, uint64_t *, uint32_t ) = 0; + virtual int8_t GetItemPrice( int32_t, uint64_t * ) = 0; virtual uint64_t StartUpdateProperties( ) = 0; - virtual bool RemoveProperty( uint64_t, uint64_t, const char * ) = 0; - virtual bool SetProperty( uint64_t, uint64_t, const char *, const char * ) = 0; - virtual bool SetProperty( uint64_t, uint64_t, const char *, bool ) = 0; - virtual bool SetProperty( uint64_t, uint64_t, const char *, int64_t ) = 0; - virtual bool SetProperty( uint64_t, uint64_t, const char *, float ) = 0; - virtual bool SubmitUpdateProperties( uint64_t, int32_t * ) = 0; + virtual int8_t RemoveProperty( uint64_t, uint64_t, const char * ) = 0; + virtual int8_t SetProperty( uint64_t, uint64_t, const char *, const char * ) = 0; + virtual int8_t SetProperty( uint64_t, uint64_t, const char *, int8_t ) = 0; + virtual int8_t SetProperty( uint64_t, uint64_t, const char *, int64_t ) = 0; + virtual int8_t SetProperty( uint64_t, uint64_t, const char *, float ) = 0; + virtual int8_t SubmitUpdateProperties( uint64_t, int32_t * ) = 0; #endif /* __cplusplus */ }; @@ -4719,9 +4719,9 @@ struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V002 { #ifdef __cplusplus virtual void GetVideoURL( uint32_t ) = 0; - virtual bool IsBroadcasting( int32_t * ) = 0; + virtual int8_t IsBroadcasting( int32_t * ) = 0; virtual void GetOPFSettings( uint32_t ) = 0; - virtual bool GetOPFStringForApp( uint32_t, char *, int32_t * ) = 0; + virtual int8_t GetOPFStringForApp( uint32_t, char *, int32_t * ) = 0; #endif /* __cplusplus */ }; @@ -4729,8 +4729,8 @@ struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 { #ifdef __cplusplus virtual ~u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004( ) = 0; - virtual bool Init( ) = 0; - virtual bool Shutdown( ) = 0; + virtual int8_t Init( ) = 0; + virtual int8_t Shutdown( ) = 0; virtual uint64_t CreateBrowser( const char *, const char * ) = 0; virtual void RemoveBrowser( uint32_t ) = 0; virtual void LoadURL( uint32_t, const char *, const char * ) = 0; @@ -4751,19 +4751,19 @@ struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 virtual void KeyChar( uint32_t, uint32_t, uint32_t ) = 0; virtual void SetHorizontalScroll( uint32_t, uint32_t ) = 0; virtual void SetVerticalScroll( uint32_t, uint32_t ) = 0; - virtual void SetKeyFocus( uint32_t, bool ) = 0; + virtual void SetKeyFocus( uint32_t, int8_t ) = 0; virtual void ViewSource( uint32_t ) = 0; virtual void CopyToClipboard( uint32_t ) = 0; virtual void PasteFromClipboard( uint32_t ) = 0; - virtual void Find( uint32_t, const char *, bool, bool ) = 0; + virtual void Find( uint32_t, const char *, int8_t, int8_t ) = 0; virtual void StopFind( uint32_t ) = 0; virtual void GetLinkAtPosition( uint32_t, int32_t, int32_t ) = 0; - virtual void SetCookie( const char *, const char *, const char *, const char *, uint32_t, bool, bool ) = 0; + virtual void SetCookie( const char *, const char *, const char *, const char *, uint32_t, int8_t, int8_t ) = 0; virtual void SetPageScaleFactor( uint32_t, float, int32_t, int32_t ) = 0; - virtual void SetBackgroundMode( uint32_t, bool ) = 0; + virtual void SetBackgroundMode( uint32_t, int8_t ) = 0; virtual void SetDPIScalingFactor( uint32_t, float ) = 0; - virtual void AllowStartRequest( uint32_t, bool ) = 0; - virtual void JSDialogResponse( uint32_t, bool ) = 0; + virtual void AllowStartRequest( uint32_t, int8_t ) = 0; + virtual void JSDialogResponse( uint32_t, int8_t ) = 0; virtual void FileLoadDialogResponse( uint32_t, const char ** ) = 0; #endif /* __cplusplus */ }; @@ -4771,23 +4771,23 @@ struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 struct u_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001 { #ifdef __cplusplus - virtual bool BIsParentalLockEnabled( ) = 0; - virtual bool BIsParentalLockLocked( ) = 0; - virtual bool BIsAppBlocked( uint32_t ) = 0; - virtual bool BIsAppInBlockList( uint32_t ) = 0; - virtual bool BIsFeatureBlocked( uint32_t ) = 0; - virtual bool BIsFeatureInBlockList( uint32_t ) = 0; + virtual int8_t BIsParentalLockEnabled( ) = 0; + virtual int8_t BIsParentalLockLocked( ) = 0; + virtual int8_t BIsAppBlocked( uint32_t ) = 0; + virtual int8_t BIsAppInBlockList( uint32_t ) = 0; + virtual int8_t BIsFeatureBlocked( uint32_t ) = 0; + virtual int8_t BIsFeatureInBlockList( uint32_t ) = 0; #endif /* __cplusplus */ }; struct u_ISteamController_SteamController006 { #ifdef __cplusplus - virtual bool Init( ) = 0; - virtual bool Shutdown( ) = 0; + virtual int8_t Init( ) = 0; + virtual int8_t Shutdown( ) = 0; virtual void RunFrame( ) = 0; virtual int32_t GetConnectedControllers( uint64_t * ) = 0; - virtual bool ShowBindingPanel( uint64_t ) = 0; + virtual int8_t ShowBindingPanel( uint64_t ) = 0; virtual uint64_t GetActionSetHandle( const char * ) = 0; virtual void ActivateActionSet( uint64_t, uint64_t ) = 0; virtual uint64_t GetCurrentActionSet( uint64_t ) = 0; @@ -4809,8 +4809,8 @@ struct u_ISteamController_SteamController006 virtual int32_t GetGamepadIndexForController( uint64_t ) = 0; virtual uint64_t GetControllerForGamepadIndex( int32_t ) = 0; virtual ControllerMotionData_t GetMotionData( uint64_t ) = 0; - virtual bool ShowDigitalActionOrigins( uint64_t, uint64_t, float, float, float ) = 0; - virtual bool ShowAnalogActionOrigins( uint64_t, uint64_t, float, float, float ) = 0; + virtual int8_t ShowDigitalActionOrigins( uint64_t, uint64_t, float, float, float ) = 0; + virtual int8_t ShowAnalogActionOrigins( uint64_t, uint64_t, float, float, float ) = 0; virtual const char * GetStringForActionOrigin( uint32_t ) = 0; virtual const char * GetGlyphForActionOrigin( uint32_t ) = 0; virtual uint32_t GetInputTypeForHandle( uint64_t ) = 0; @@ -4821,7 +4821,7 @@ struct u_ISteamClient_SteamClient018 { #ifdef __cplusplus virtual int32_t CreateSteamPipe( ) = 0; - virtual bool BReleaseSteamPipe( int32_t ) = 0; + virtual int8_t BReleaseSteamPipe( int32_t ) = 0; virtual int32_t ConnectToGlobalUser( int32_t ) = 0; virtual int32_t CreateLocalUser( int32_t *, uint32_t ) = 0; virtual void ReleaseUser( int32_t, int32_t ) = 0; @@ -4843,7 +4843,7 @@ struct u_ISteamClient_SteamClient018 virtual void RunFrame( ) = 0; virtual uint32_t GetIPCCallCount( ) = 0; virtual void SetWarningMessageHook( void (*U_CDECL )(int32_t, const char *) ) = 0; - virtual bool BShutdownIfAllPipesClosed( ) = 0; + virtual int8_t BShutdownIfAllPipesClosed( ) = 0; virtual void /*ISteamHTTP*/ * GetISteamHTTP( int32_t, int32_t, const char * ) = 0; virtual void * DEPRECATED_GetISteamUnifiedMessages( int32_t, int32_t, const char * ) = 0; virtual void /*ISteamController*/ * GetISteamController( int32_t, int32_t, const char * ) = 0; @@ -4867,16 +4867,16 @@ struct u_ISteamUser_SteamUser020 { #ifdef __cplusplus virtual int32_t GetHSteamUser( ) = 0; - virtual bool BLoggedOn( ) = 0; + virtual int8_t BLoggedOn( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, uint32_t, uint16_t, bool ) = 0; + virtual int32_t InitiateGameConnection( void *, int32_t, CSteamID, uint32_t, uint16_t, int8_t ) = 0; virtual void TerminateGameConnection( uint32_t, uint16_t ) = 0; virtual void TrackAppUsageEvent( CGameID, int32_t, const char * ) = 0; - virtual bool GetUserDataFolder( char *, int32_t ) = 0; + virtual int8_t GetUserDataFolder( char *, int32_t ) = 0; virtual void StartVoiceRecording( ) = 0; virtual void StopVoiceRecording( ) = 0; virtual uint32_t GetAvailableVoice( uint32_t *, uint32_t *, uint32_t ) = 0; - virtual uint32_t GetVoice( bool, void *, uint32_t, uint32_t *, bool, void *, uint32_t, uint32_t *, uint32_t ) = 0; + virtual uint32_t GetVoice( int8_t, void *, uint32_t, uint32_t *, int8_t, void *, uint32_t, uint32_t *, uint32_t ) = 0; virtual uint32_t DecompressVoice( const void *, uint32_t, void *, uint32_t, uint32_t *, uint32_t ) = 0; virtual uint32_t GetVoiceOptimalSampleRate( ) = 0; virtual uint32_t GetAuthSessionTicket( void *, int32_t, uint32_t * ) = 0; @@ -4884,17 +4884,17 @@ struct u_ISteamUser_SteamUser020 virtual void EndAuthSession( CSteamID ) = 0; virtual void CancelAuthTicket( uint32_t ) = 0; virtual uint32_t UserHasLicenseForApp( CSteamID, uint32_t ) = 0; - virtual bool BIsBehindNAT( ) = 0; + virtual int8_t BIsBehindNAT( ) = 0; virtual void AdvertiseGame( CSteamID, uint32_t, uint16_t ) = 0; virtual uint64_t RequestEncryptedAppTicket( void *, int32_t ) = 0; - virtual bool GetEncryptedAppTicket( void *, int32_t, uint32_t * ) = 0; - virtual int32_t GetGameBadgeLevel( int32_t, bool ) = 0; + virtual int8_t GetEncryptedAppTicket( void *, int32_t, uint32_t * ) = 0; + virtual int32_t GetGameBadgeLevel( int32_t, int8_t ) = 0; virtual int32_t GetPlayerSteamLevel( ) = 0; virtual uint64_t RequestStoreAuthURL( const char * ) = 0; - virtual bool BIsPhoneVerified( ) = 0; - virtual bool BIsTwoFactorEnabled( ) = 0; - virtual bool BIsPhoneIdentifying( ) = 0; - virtual bool BIsPhoneRequiringVerification( ) = 0; + virtual int8_t BIsPhoneVerified( ) = 0; + virtual int8_t BIsTwoFactorEnabled( ) = 0; + virtual int8_t BIsPhoneIdentifying( ) = 0; + virtual int8_t BIsPhoneRequiringVerification( ) = 0; virtual uint64_t GetMarketEligibility( ) = 0; virtual uint64_t GetDurationControl( ) = 0; #endif /* __cplusplus */ @@ -4911,7 +4911,7 @@ struct u_ISteamFriends_SteamFriends017 virtual uint32_t GetFriendRelationship( CSteamID ) = 0; virtual uint32_t GetFriendPersonaState( CSteamID ) = 0; virtual const char * GetFriendPersonaName( CSteamID ) = 0; - virtual bool GetFriendGamePlayed( CSteamID, FriendGameInfo_t * ) = 0; + virtual int8_t GetFriendGamePlayed( CSteamID, FriendGameInfo_t * ) = 0; virtual const char * GetFriendPersonaNameHistory( CSteamID, int32_t ) = 0; virtual int32_t GetFriendSteamLevel( CSteamID ) = 0; virtual const char * GetPlayerNickname( CSteamID ) = 0; @@ -4920,17 +4920,17 @@ struct u_ISteamFriends_SteamFriends017 virtual const char * GetFriendsGroupName( int16_t ) = 0; virtual int32_t GetFriendsGroupMembersCount( int16_t ) = 0; virtual void GetFriendsGroupMembersList( int16_t, CSteamID *, int32_t ) = 0; - virtual bool HasFriend( CSteamID, int32_t ) = 0; + virtual int8_t HasFriend( CSteamID, int32_t ) = 0; virtual int32_t GetClanCount( ) = 0; virtual CSteamID GetClanByIndex( int32_t ) = 0; virtual const char * GetClanName( CSteamID ) = 0; virtual const char * GetClanTag( CSteamID ) = 0; - virtual bool GetClanActivityCounts( CSteamID, int32_t *, int32_t *, int32_t * ) = 0; + virtual int8_t GetClanActivityCounts( CSteamID, int32_t *, int32_t *, int32_t * ) = 0; virtual uint64_t DownloadClanActivityCounts( CSteamID *, int32_t ) = 0; virtual int32_t GetFriendCountFromSource( CSteamID ) = 0; virtual CSteamID GetFriendFromSourceByIndex( CSteamID, int32_t ) = 0; - virtual bool IsUserInSource( CSteamID, CSteamID ) = 0; - virtual void SetInGameVoiceSpeaking( CSteamID, bool ) = 0; + virtual int8_t IsUserInSource( CSteamID, CSteamID ) = 0; + virtual void SetInGameVoiceSpeaking( CSteamID, int8_t ) = 0; virtual void ActivateGameOverlay( const char * ) = 0; virtual void ActivateGameOverlayToUser( const char *, CSteamID ) = 0; virtual void ActivateGameOverlayToWebPage( const char *, uint32_t ) = 0; @@ -4940,47 +4940,47 @@ struct u_ISteamFriends_SteamFriends017 virtual int32_t GetSmallFriendAvatar( CSteamID ) = 0; virtual int32_t GetMediumFriendAvatar( CSteamID ) = 0; virtual int32_t GetLargeFriendAvatar( CSteamID ) = 0; - virtual bool RequestUserInformation( CSteamID, bool ) = 0; + virtual int8_t RequestUserInformation( CSteamID, int8_t ) = 0; virtual uint64_t RequestClanOfficerList( CSteamID ) = 0; virtual CSteamID GetClanOwner( CSteamID ) = 0; virtual int32_t GetClanOfficerCount( CSteamID ) = 0; virtual CSteamID GetClanOfficerByIndex( CSteamID, int32_t ) = 0; virtual uint32_t GetUserRestrictions( ) = 0; - virtual bool SetRichPresence( const char *, const char * ) = 0; + virtual int8_t SetRichPresence( const char *, const char * ) = 0; virtual void ClearRichPresence( ) = 0; virtual const char * GetFriendRichPresence( CSteamID, const char * ) = 0; virtual int32_t GetFriendRichPresenceKeyCount( CSteamID ) = 0; virtual const char * GetFriendRichPresenceKeyByIndex( CSteamID, int32_t ) = 0; virtual void RequestFriendRichPresence( CSteamID ) = 0; - virtual bool InviteUserToGame( CSteamID, const char * ) = 0; + virtual int8_t InviteUserToGame( CSteamID, const char * ) = 0; virtual int32_t GetCoplayFriendCount( ) = 0; virtual CSteamID GetCoplayFriend( int32_t ) = 0; virtual int32_t GetFriendCoplayTime( CSteamID ) = 0; virtual uint32_t GetFriendCoplayGame( CSteamID ) = 0; virtual uint64_t JoinClanChatRoom( CSteamID ) = 0; - virtual bool LeaveClanChatRoom( CSteamID ) = 0; + virtual int8_t LeaveClanChatRoom( CSteamID ) = 0; virtual int32_t GetClanChatMemberCount( CSteamID ) = 0; virtual CSteamID GetChatMemberByIndex( CSteamID, int32_t ) = 0; - virtual bool SendClanChatMessage( CSteamID, const char * ) = 0; + virtual int8_t SendClanChatMessage( CSteamID, const char * ) = 0; virtual int32_t GetClanChatMessage( CSteamID, int32_t, void *, int32_t, uint32_t *, CSteamID * ) = 0; - virtual bool IsClanChatAdmin( CSteamID, CSteamID ) = 0; - virtual bool IsClanChatWindowOpenInSteam( CSteamID ) = 0; - virtual bool OpenClanChatWindowInSteam( CSteamID ) = 0; - virtual bool CloseClanChatWindowInSteam( CSteamID ) = 0; - virtual bool SetListenForFriendsMessages( bool ) = 0; - virtual bool ReplyToFriendMessage( CSteamID, const char * ) = 0; + virtual int8_t IsClanChatAdmin( CSteamID, CSteamID ) = 0; + virtual int8_t IsClanChatWindowOpenInSteam( CSteamID ) = 0; + virtual int8_t OpenClanChatWindowInSteam( CSteamID ) = 0; + virtual int8_t CloseClanChatWindowInSteam( CSteamID ) = 0; + virtual int8_t SetListenForFriendsMessages( int8_t ) = 0; + virtual int8_t ReplyToFriendMessage( CSteamID, const char * ) = 0; virtual int32_t GetFriendMessage( CSteamID, int32_t, void *, int32_t, uint32_t * ) = 0; virtual uint64_t GetFollowerCount( CSteamID ) = 0; virtual uint64_t IsFollowing( CSteamID ) = 0; virtual uint64_t EnumerateFollowingList( uint32_t ) = 0; - virtual bool IsClanPublic( CSteamID ) = 0; - virtual bool IsClanOfficialGameGroup( CSteamID ) = 0; + virtual int8_t IsClanPublic( CSteamID ) = 0; + virtual int8_t IsClanOfficialGameGroup( CSteamID ) = 0; virtual int32_t GetNumChatsWithUnreadPriorityMessages( ) = 0; virtual void ActivateGameOverlayRemotePlayTogetherInviteDialog( CSteamID ) = 0; - virtual bool RegisterProtocolInOverlayBrowser( const char * ) = 0; + virtual int8_t RegisterProtocolInOverlayBrowser( const char * ) = 0; virtual void ActivateGameOverlayInviteDialogConnectString( const char * ) = 0; virtual uint64_t RequestEquippedProfileItems( CSteamID ) = 0; - virtual bool BHasEquippedProfileItem( CSteamID, uint32_t ) = 0; + virtual int8_t BHasEquippedProfileItem( CSteamID, uint32_t ) = 0; virtual const char * GetProfileItemPropertyString( CSteamID, uint32_t, uint32_t ) = 0; virtual uint32_t GetProfileItemPropertyUint( CSteamID, uint32_t, uint32_t ) = 0; #endif /* __cplusplus */ @@ -5011,16 +5011,16 @@ struct u_ISteamParties_SteamParties002 #ifdef __cplusplus virtual uint32_t GetNumActiveBeacons( ) = 0; virtual uint64_t GetBeaconByIndex( uint32_t ) = 0; - virtual bool GetBeaconDetails( uint64_t, CSteamID *, u_SteamPartyBeaconLocation_t *, char *, int32_t ) = 0; + virtual int8_t GetBeaconDetails( uint64_t, CSteamID *, u_SteamPartyBeaconLocation_t *, char *, int32_t ) = 0; virtual uint64_t JoinParty( uint64_t ) = 0; - virtual bool GetNumAvailableBeaconLocations( uint32_t * ) = 0; - virtual bool GetAvailableBeaconLocations( u_SteamPartyBeaconLocation_t *, uint32_t ) = 0; + virtual int8_t GetNumAvailableBeaconLocations( uint32_t * ) = 0; + virtual int8_t GetAvailableBeaconLocations( u_SteamPartyBeaconLocation_t *, uint32_t ) = 0; virtual uint64_t CreateBeacon( uint32_t, u_SteamPartyBeaconLocation_t *, const char *, const char * ) = 0; virtual void OnReservationCompleted( uint64_t, CSteamID ) = 0; virtual void CancelReservation( uint64_t, CSteamID ) = 0; virtual uint64_t ChangeNumOpenSlots( uint64_t, uint32_t ) = 0; - virtual bool DestroyBeacon( uint64_t ) = 0; - virtual bool GetBeaconLocationData( u_SteamPartyBeaconLocation_t, uint32_t, char *, int32_t ) = 0; + virtual int8_t DestroyBeacon( uint64_t ) = 0; + virtual int8_t GetBeaconLocationData( u_SteamPartyBeaconLocation_t, uint32_t, char *, int32_t ) = 0; #endif /* __cplusplus */ }; @@ -5028,38 +5028,38 @@ struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 { #ifdef __cplusplus virtual uint32_t CreateHTTPRequest( uint32_t, const char * ) = 0; - virtual bool SetHTTPRequestContextValue( uint32_t, uint64_t ) = 0; - virtual bool SetHTTPRequestNetworkActivityTimeout( uint32_t, uint32_t ) = 0; - virtual bool SetHTTPRequestHeaderValue( uint32_t, const char *, const char * ) = 0; - virtual bool SetHTTPRequestGetOrPostParameter( uint32_t, const char *, const char * ) = 0; - virtual bool SendHTTPRequest( uint32_t, uint64_t * ) = 0; - virtual bool SendHTTPRequestAndStreamResponse( uint32_t, uint64_t * ) = 0; - virtual bool DeferHTTPRequest( uint32_t ) = 0; - virtual bool PrioritizeHTTPRequest( uint32_t ) = 0; - virtual bool GetHTTPResponseHeaderSize( uint32_t, const char *, uint32_t * ) = 0; - virtual bool GetHTTPResponseHeaderValue( uint32_t, const char *, uint8_t *, uint32_t ) = 0; - virtual bool GetHTTPResponseBodySize( uint32_t, uint32_t * ) = 0; - virtual bool GetHTTPResponseBodyData( uint32_t, uint8_t *, uint32_t ) = 0; - virtual bool GetHTTPStreamingResponseBodyData( uint32_t, uint32_t, uint8_t *, uint32_t ) = 0; - virtual bool ReleaseHTTPRequest( uint32_t ) = 0; - virtual bool GetHTTPDownloadProgressPct( uint32_t, float * ) = 0; - virtual bool SetHTTPRequestRawPostBody( uint32_t, const char *, uint8_t *, uint32_t ) = 0; - virtual uint32_t CreateCookieContainer( bool ) = 0; - virtual bool ReleaseCookieContainer( uint32_t ) = 0; - virtual bool SetCookie( uint32_t, const char *, const char *, const char * ) = 0; - virtual bool SetHTTPRequestCookieContainer( uint32_t, uint32_t ) = 0; - virtual bool SetHTTPRequestUserAgentInfo( uint32_t, const char * ) = 0; - virtual bool SetHTTPRequestRequiresVerifiedCertificate( uint32_t, bool ) = 0; - virtual bool SetHTTPRequestAbsoluteTimeoutMS( uint32_t, uint32_t ) = 0; - virtual bool GetHTTPRequestWasTimedOut( uint32_t, bool * ) = 0; + virtual int8_t SetHTTPRequestContextValue( uint32_t, uint64_t ) = 0; + virtual int8_t SetHTTPRequestNetworkActivityTimeout( uint32_t, uint32_t ) = 0; + virtual int8_t SetHTTPRequestHeaderValue( uint32_t, const char *, const char * ) = 0; + virtual int8_t SetHTTPRequestGetOrPostParameter( uint32_t, const char *, const char * ) = 0; + virtual int8_t SendHTTPRequest( uint32_t, uint64_t * ) = 0; + virtual int8_t SendHTTPRequestAndStreamResponse( uint32_t, uint64_t * ) = 0; + virtual int8_t DeferHTTPRequest( uint32_t ) = 0; + virtual int8_t PrioritizeHTTPRequest( uint32_t ) = 0; + virtual int8_t GetHTTPResponseHeaderSize( uint32_t, const char *, uint32_t * ) = 0; + virtual int8_t GetHTTPResponseHeaderValue( uint32_t, const char *, uint8_t *, uint32_t ) = 0; + virtual int8_t GetHTTPResponseBodySize( uint32_t, uint32_t * ) = 0; + virtual int8_t GetHTTPResponseBodyData( uint32_t, uint8_t *, uint32_t ) = 0; + virtual int8_t GetHTTPStreamingResponseBodyData( uint32_t, uint32_t, uint8_t *, uint32_t ) = 0; + virtual int8_t ReleaseHTTPRequest( uint32_t ) = 0; + virtual int8_t GetHTTPDownloadProgressPct( uint32_t, float * ) = 0; + virtual int8_t SetHTTPRequestRawPostBody( uint32_t, const char *, uint8_t *, uint32_t ) = 0; + virtual uint32_t CreateCookieContainer( int8_t ) = 0; + virtual int8_t ReleaseCookieContainer( uint32_t ) = 0; + virtual int8_t SetCookie( uint32_t, const char *, const char *, const char * ) = 0; + virtual int8_t SetHTTPRequestCookieContainer( uint32_t, uint32_t ) = 0; + virtual int8_t SetHTTPRequestUserAgentInfo( uint32_t, const char * ) = 0; + virtual int8_t SetHTTPRequestRequiresVerifiedCertificate( uint32_t, int8_t ) = 0; + virtual int8_t SetHTTPRequestAbsoluteTimeoutMS( uint32_t, uint32_t ) = 0; + virtual int8_t GetHTTPRequestWasTimedOut( uint32_t, int8_t * ) = 0; #endif /* __cplusplus */ }; struct u_ISteamInput_SteamInput001 { #ifdef __cplusplus - virtual bool Init( ) = 0; - virtual bool Shutdown( ) = 0; + virtual int8_t Init( ) = 0; + virtual int8_t Shutdown( ) = 0; virtual void RunFrame( ) = 0; virtual int32_t GetConnectedControllers( uint64_t * ) = 0; virtual uint64_t GetActionSetHandle( const char * ) = 0; @@ -5083,7 +5083,7 @@ struct u_ISteamInput_SteamInput001 virtual void SetLEDColor( uint64_t, uint8_t, uint8_t, uint8_t, uint32_t ) = 0; virtual void TriggerHapticPulse( uint64_t, uint32_t, uint16_t ) = 0; virtual void TriggerRepeatedHapticPulse( uint64_t, uint32_t, uint16_t, uint16_t, uint16_t, uint32_t ) = 0; - virtual bool ShowBindingPanel( uint64_t ) = 0; + virtual int8_t ShowBindingPanel( uint64_t ) = 0; virtual uint32_t GetInputTypeForHandle( uint64_t ) = 0; virtual uint64_t GetControllerForGamepadIndex( int32_t ) = 0; virtual int32_t GetGamepadIndexForController( uint64_t ) = 0; @@ -5091,7 +5091,7 @@ struct u_ISteamInput_SteamInput001 virtual const char * GetGlyphForXboxOrigin( uint32_t ) = 0; virtual uint32_t GetActionOriginFromXboxOrigin( uint64_t, uint32_t ) = 0; virtual uint32_t TranslateActionOrigin( uint32_t, uint32_t ) = 0; - virtual bool GetDeviceBindingRevision( uint64_t, int32_t *, int32_t * ) = 0; + virtual int8_t GetDeviceBindingRevision( uint64_t, int32_t *, int32_t * ) = 0; virtual uint32_t GetRemotePlaySessionID( uint64_t ) = 0; #endif /* __cplusplus */ }; @@ -5099,8 +5099,8 @@ struct u_ISteamInput_SteamInput001 struct u_ISteamController_SteamController007 { #ifdef __cplusplus - virtual bool Init( ) = 0; - virtual bool Shutdown( ) = 0; + virtual int8_t Init( ) = 0; + virtual int8_t Shutdown( ) = 0; virtual void RunFrame( ) = 0; virtual int32_t GetConnectedControllers( uint64_t * ) = 0; virtual uint64_t GetActionSetHandle( const char * ) = 0; @@ -5124,7 +5124,7 @@ struct u_ISteamController_SteamController007 virtual void TriggerRepeatedHapticPulse( uint64_t, uint32_t, uint16_t, uint16_t, uint16_t, uint32_t ) = 0; virtual void TriggerVibration( uint64_t, uint16_t, uint16_t ) = 0; virtual void SetLEDColor( uint64_t, uint8_t, uint8_t, uint8_t, uint32_t ) = 0; - virtual bool ShowBindingPanel( uint64_t ) = 0; + virtual int8_t ShowBindingPanel( uint64_t ) = 0; virtual uint32_t GetInputTypeForHandle( uint64_t ) = 0; virtual uint64_t GetControllerForGamepadIndex( int32_t ) = 0; virtual int32_t GetGamepadIndexForController( uint64_t ) = 0; @@ -5132,7 +5132,7 @@ struct u_ISteamController_SteamController007 virtual const char * GetGlyphForXboxOrigin( uint32_t ) = 0; virtual uint32_t GetActionOriginFromXboxOrigin( uint64_t, uint32_t ) = 0; virtual uint32_t TranslateActionOrigin( uint32_t, uint32_t ) = 0; - virtual bool GetControllerBindingRevision( uint64_t, int32_t *, int32_t * ) = 0; + virtual int8_t GetControllerBindingRevision( uint64_t, int32_t *, int32_t * ) = 0; #endif /* __cplusplus */ }; @@ -5144,55 +5144,55 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 virtual uint64_t CreateQueryAllUGCRequest( uint32_t, uint32_t, uint32_t, uint32_t, const char * ) = 0; virtual uint64_t CreateQueryUGCDetailsRequest( uint64_t *, uint32_t ) = 0; virtual uint64_t SendQueryUGCRequest( uint64_t ) = 0; - virtual bool GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; - virtual bool GetQueryUGCPreviewURL( uint64_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCMetadata( uint64_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCChildren( uint64_t, uint32_t, uint64_t *, uint32_t ) = 0; - virtual bool GetQueryUGCStatistic( uint64_t, uint32_t, uint32_t, uint64_t * ) = 0; + virtual int8_t GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; + virtual int8_t GetQueryUGCPreviewURL( uint64_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCMetadata( uint64_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCChildren( uint64_t, uint32_t, uint64_t *, uint32_t ) = 0; + virtual int8_t GetQueryUGCStatistic( uint64_t, uint32_t, uint32_t, uint64_t * ) = 0; virtual uint32_t GetQueryUGCNumAdditionalPreviews( uint64_t, uint32_t ) = 0; - virtual bool GetQueryUGCAdditionalPreview( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t, uint32_t * ) = 0; + virtual int8_t GetQueryUGCAdditionalPreview( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t, uint32_t * ) = 0; virtual uint32_t GetQueryUGCNumKeyValueTags( uint64_t, uint32_t ) = 0; - virtual bool GetQueryUGCKeyValueTag( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t ) = 0; - virtual bool ReleaseQueryUGCRequest( uint64_t ) = 0; - virtual bool AddRequiredTag( uint64_t, const char * ) = 0; - virtual bool AddExcludedTag( uint64_t, const char * ) = 0; - virtual bool SetReturnOnlyIDs( uint64_t, bool ) = 0; - virtual bool SetReturnKeyValueTags( uint64_t, bool ) = 0; - virtual bool SetReturnLongDescription( uint64_t, bool ) = 0; - virtual bool SetReturnMetadata( uint64_t, bool ) = 0; - virtual bool SetReturnChildren( uint64_t, bool ) = 0; - virtual bool SetReturnAdditionalPreviews( uint64_t, bool ) = 0; - virtual bool SetReturnTotalOnly( uint64_t, bool ) = 0; - virtual bool SetReturnPlaytimeStats( uint64_t, uint32_t ) = 0; - virtual bool SetLanguage( uint64_t, const char * ) = 0; - virtual bool SetAllowCachedResponse( uint64_t, uint32_t ) = 0; - virtual bool SetCloudFileNameFilter( uint64_t, const char * ) = 0; - virtual bool SetMatchAnyTag( uint64_t, bool ) = 0; - virtual bool SetSearchText( uint64_t, const char * ) = 0; - virtual bool SetRankedByTrendDays( uint64_t, uint32_t ) = 0; - virtual bool AddRequiredKeyValueTag( uint64_t, const char *, const char * ) = 0; + virtual int8_t GetQueryUGCKeyValueTag( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t ) = 0; + virtual int8_t ReleaseQueryUGCRequest( uint64_t ) = 0; + virtual int8_t AddRequiredTag( uint64_t, const char * ) = 0; + virtual int8_t AddExcludedTag( uint64_t, const char * ) = 0; + virtual int8_t SetReturnOnlyIDs( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnKeyValueTags( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnLongDescription( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnMetadata( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnChildren( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnAdditionalPreviews( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnTotalOnly( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnPlaytimeStats( uint64_t, uint32_t ) = 0; + virtual int8_t SetLanguage( uint64_t, const char * ) = 0; + virtual int8_t SetAllowCachedResponse( uint64_t, uint32_t ) = 0; + virtual int8_t SetCloudFileNameFilter( uint64_t, const char * ) = 0; + virtual int8_t SetMatchAnyTag( uint64_t, int8_t ) = 0; + virtual int8_t SetSearchText( uint64_t, const char * ) = 0; + virtual int8_t SetRankedByTrendDays( uint64_t, uint32_t ) = 0; + virtual int8_t AddRequiredKeyValueTag( uint64_t, const char *, const char * ) = 0; virtual uint64_t RequestUGCDetails( uint64_t, uint32_t ) = 0; virtual uint64_t CreateItem( uint32_t, uint32_t ) = 0; virtual uint64_t StartItemUpdate( uint32_t, uint64_t ) = 0; - virtual bool SetItemTitle( uint64_t, const char * ) = 0; - virtual bool SetItemDescription( uint64_t, const char * ) = 0; - virtual bool SetItemUpdateLanguage( uint64_t, const char * ) = 0; - virtual bool SetItemMetadata( uint64_t, const char * ) = 0; - virtual bool SetItemVisibility( uint64_t, uint32_t ) = 0; - virtual bool SetItemTags( uint64_t, const u_SteamParamStringArray_t * ) = 0; - virtual bool SetItemContent( uint64_t, const char * ) = 0; - virtual bool SetItemPreview( uint64_t, const char * ) = 0; - virtual bool SetAllowLegacyUpload( uint64_t, bool ) = 0; - virtual bool RemoveItemKeyValueTags( uint64_t, const char * ) = 0; - virtual bool AddItemKeyValueTag( uint64_t, const char *, const char * ) = 0; - virtual bool AddItemPreviewFile( uint64_t, const char *, uint32_t ) = 0; - virtual bool AddItemPreviewVideo( uint64_t, const char * ) = 0; - virtual bool UpdateItemPreviewFile( uint64_t, uint32_t, const char * ) = 0; - virtual bool UpdateItemPreviewVideo( uint64_t, uint32_t, const char * ) = 0; - virtual bool RemoveItemPreview( uint64_t, uint32_t ) = 0; + virtual int8_t SetItemTitle( uint64_t, const char * ) = 0; + virtual int8_t SetItemDescription( uint64_t, const char * ) = 0; + virtual int8_t SetItemUpdateLanguage( uint64_t, const char * ) = 0; + virtual int8_t SetItemMetadata( uint64_t, const char * ) = 0; + virtual int8_t SetItemVisibility( uint64_t, uint32_t ) = 0; + virtual int8_t SetItemTags( uint64_t, const u_SteamParamStringArray_t * ) = 0; + virtual int8_t SetItemContent( uint64_t, const char * ) = 0; + virtual int8_t SetItemPreview( uint64_t, const char * ) = 0; + virtual int8_t SetAllowLegacyUpload( uint64_t, int8_t ) = 0; + virtual int8_t RemoveItemKeyValueTags( uint64_t, const char * ) = 0; + virtual int8_t AddItemKeyValueTag( uint64_t, const char *, const char * ) = 0; + virtual int8_t AddItemPreviewFile( uint64_t, const char *, uint32_t ) = 0; + virtual int8_t AddItemPreviewVideo( uint64_t, const char * ) = 0; + virtual int8_t UpdateItemPreviewFile( uint64_t, uint32_t, const char * ) = 0; + virtual int8_t UpdateItemPreviewVideo( uint64_t, uint32_t, const char * ) = 0; + virtual int8_t RemoveItemPreview( uint64_t, uint32_t ) = 0; virtual uint64_t SubmitItemUpdate( uint64_t, const char * ) = 0; virtual uint32_t GetItemUpdateProgress( uint64_t, uint64_t *, uint64_t * ) = 0; - virtual uint64_t SetUserItemVote( uint64_t, bool ) = 0; + virtual uint64_t SetUserItemVote( uint64_t, int8_t ) = 0; virtual uint64_t GetUserItemVote( uint64_t ) = 0; virtual uint64_t AddItemToFavorites( uint32_t, uint64_t ) = 0; virtual uint64_t RemoveItemFromFavorites( uint32_t, uint64_t ) = 0; @@ -5201,11 +5201,11 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 virtual uint32_t GetNumSubscribedItems( ) = 0; virtual uint32_t GetSubscribedItems( uint64_t *, uint32_t ) = 0; virtual uint32_t GetItemState( uint64_t ) = 0; - virtual bool GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, uint32_t * ) = 0; - virtual bool GetItemDownloadInfo( uint64_t, uint64_t *, uint64_t * ) = 0; - virtual bool DownloadItem( uint64_t, bool ) = 0; - virtual bool BInitWorkshopForGameServer( uint32_t, const char * ) = 0; - virtual void SuspendDownloads( bool ) = 0; + virtual int8_t GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, uint32_t * ) = 0; + virtual int8_t GetItemDownloadInfo( uint64_t, uint64_t *, uint64_t * ) = 0; + virtual int8_t DownloadItem( uint64_t, int8_t ) = 0; + virtual int8_t BInitWorkshopForGameServer( uint32_t, const char * ) = 0; + virtual void SuspendDownloads( int8_t ) = 0; virtual uint64_t StartPlaytimeTracking( uint64_t *, uint32_t ) = 0; virtual uint64_t StopPlaytimeTracking( uint64_t *, uint32_t ) = 0; virtual uint64_t StopPlaytimeTrackingForAllItems( ) = 0; @@ -5222,8 +5222,8 @@ struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 { #ifdef __cplusplus virtual ~u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005( ) = 0; - virtual bool Init( ) = 0; - virtual bool Shutdown( ) = 0; + virtual int8_t Init( ) = 0; + virtual int8_t Shutdown( ) = 0; virtual uint64_t CreateBrowser( const char *, const char * ) = 0; virtual void RemoveBrowser( uint32_t ) = 0; virtual void LoadURL( uint32_t, const char *, const char * ) = 0; @@ -5239,25 +5239,25 @@ struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 virtual void MouseDoubleClick( uint32_t, uint32_t ) = 0; virtual void MouseMove( uint32_t, int32_t, int32_t ) = 0; virtual void MouseWheel( uint32_t, int32_t ) = 0; - virtual void KeyDown( uint32_t, uint32_t, uint32_t, bool ) = 0; + virtual void KeyDown( uint32_t, uint32_t, uint32_t, int8_t ) = 0; virtual void KeyUp( uint32_t, uint32_t, uint32_t ) = 0; virtual void KeyChar( uint32_t, uint32_t, uint32_t ) = 0; virtual void SetHorizontalScroll( uint32_t, uint32_t ) = 0; virtual void SetVerticalScroll( uint32_t, uint32_t ) = 0; - virtual void SetKeyFocus( uint32_t, bool ) = 0; + virtual void SetKeyFocus( uint32_t, int8_t ) = 0; virtual void ViewSource( uint32_t ) = 0; virtual void CopyToClipboard( uint32_t ) = 0; virtual void PasteFromClipboard( uint32_t ) = 0; - virtual void Find( uint32_t, const char *, bool, bool ) = 0; + virtual void Find( uint32_t, const char *, int8_t, int8_t ) = 0; virtual void StopFind( uint32_t ) = 0; virtual void GetLinkAtPosition( uint32_t, int32_t, int32_t ) = 0; - virtual void SetCookie( const char *, const char *, const char *, const char *, uint32_t, bool, bool ) = 0; + virtual void SetCookie( const char *, const char *, const char *, const char *, uint32_t, int8_t, int8_t ) = 0; virtual void SetPageScaleFactor( uint32_t, float, int32_t, int32_t ) = 0; - virtual void SetBackgroundMode( uint32_t, bool ) = 0; + virtual void SetBackgroundMode( uint32_t, int8_t ) = 0; virtual void SetDPIScalingFactor( uint32_t, float ) = 0; virtual void OpenDeveloperTools( uint32_t ) = 0; - virtual void AllowStartRequest( uint32_t, bool ) = 0; - virtual void JSDialogResponse( uint32_t, bool ) = 0; + virtual void AllowStartRequest( uint32_t, int8_t ) = 0; + virtual void JSDialogResponse( uint32_t, int8_t ) = 0; virtual void FileLoadDialogResponse( uint32_t, const char ** ) = 0; #endif /* __cplusplus */ }; @@ -5266,43 +5266,43 @@ struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 { #ifdef __cplusplus virtual uint32_t GetResultStatus( int32_t ) = 0; - virtual bool GetResultItems( int32_t, SteamItemDetails_t *, uint32_t * ) = 0; - virtual bool GetResultItemProperty( int32_t, uint32_t, const char *, char *, uint32_t * ) = 0; + virtual int8_t GetResultItems( int32_t, SteamItemDetails_t *, uint32_t * ) = 0; + virtual int8_t GetResultItemProperty( int32_t, uint32_t, const char *, char *, uint32_t * ) = 0; virtual uint32_t GetResultTimestamp( int32_t ) = 0; - virtual bool CheckResultSteamID( int32_t, CSteamID ) = 0; + virtual int8_t CheckResultSteamID( int32_t, CSteamID ) = 0; virtual void DestroyResult( int32_t ) = 0; - virtual bool GetAllItems( int32_t * ) = 0; - virtual bool GetItemsByID( int32_t *, const uint64_t *, uint32_t ) = 0; - virtual bool SerializeResult( int32_t, void *, uint32_t * ) = 0; - virtual bool DeserializeResult( int32_t *, const void *, uint32_t, bool ) = 0; - virtual bool GenerateItems( int32_t *, const int32_t *, const uint32_t *, uint32_t ) = 0; - virtual bool GrantPromoItems( int32_t * ) = 0; - virtual bool AddPromoItem( int32_t *, int32_t ) = 0; - virtual bool AddPromoItems( int32_t *, const int32_t *, uint32_t ) = 0; - virtual bool ConsumeItem( int32_t *, uint64_t, uint32_t ) = 0; - virtual bool ExchangeItems( int32_t *, const int32_t *, const uint32_t *, uint32_t, const uint64_t *, const uint32_t *, uint32_t ) = 0; - virtual bool TransferItemQuantity( int32_t *, uint64_t, uint32_t, uint64_t ) = 0; + virtual int8_t GetAllItems( int32_t * ) = 0; + virtual int8_t GetItemsByID( int32_t *, const uint64_t *, uint32_t ) = 0; + virtual int8_t SerializeResult( int32_t, void *, uint32_t * ) = 0; + virtual int8_t DeserializeResult( int32_t *, const void *, uint32_t, int8_t ) = 0; + virtual int8_t GenerateItems( int32_t *, const int32_t *, const uint32_t *, uint32_t ) = 0; + virtual int8_t GrantPromoItems( int32_t * ) = 0; + virtual int8_t AddPromoItem( int32_t *, int32_t ) = 0; + virtual int8_t AddPromoItems( int32_t *, const int32_t *, uint32_t ) = 0; + virtual int8_t ConsumeItem( int32_t *, uint64_t, uint32_t ) = 0; + virtual int8_t ExchangeItems( int32_t *, const int32_t *, const uint32_t *, uint32_t, const uint64_t *, const uint32_t *, uint32_t ) = 0; + virtual int8_t TransferItemQuantity( int32_t *, uint64_t, uint32_t, uint64_t ) = 0; virtual void SendItemDropHeartbeat( ) = 0; - virtual bool TriggerItemDrop( int32_t *, int32_t ) = 0; - virtual bool TradeItems( int32_t *, CSteamID, const uint64_t *, const uint32_t *, uint32_t, const uint64_t *, const uint32_t *, uint32_t ) = 0; - virtual bool LoadItemDefinitions( ) = 0; - virtual bool GetItemDefinitionIDs( int32_t *, uint32_t * ) = 0; - virtual bool GetItemDefinitionProperty( int32_t, const char *, char *, uint32_t * ) = 0; + virtual int8_t TriggerItemDrop( int32_t *, int32_t ) = 0; + virtual int8_t TradeItems( int32_t *, CSteamID, const uint64_t *, const uint32_t *, uint32_t, const uint64_t *, const uint32_t *, uint32_t ) = 0; + virtual int8_t LoadItemDefinitions( ) = 0; + virtual int8_t GetItemDefinitionIDs( int32_t *, uint32_t * ) = 0; + virtual int8_t GetItemDefinitionProperty( int32_t, const char *, char *, uint32_t * ) = 0; virtual uint64_t RequestEligiblePromoItemDefinitionsIDs( CSteamID ) = 0; - virtual bool GetEligiblePromoItemDefinitionIDs( CSteamID, int32_t *, uint32_t * ) = 0; + virtual int8_t GetEligiblePromoItemDefinitionIDs( CSteamID, int32_t *, uint32_t * ) = 0; virtual uint64_t StartPurchase( const int32_t *, const uint32_t *, uint32_t ) = 0; virtual uint64_t RequestPrices( ) = 0; virtual uint32_t GetNumItemsWithPrices( ) = 0; - virtual bool GetItemsWithPrices( int32_t *, uint64_t *, uint64_t *, uint32_t ) = 0; - virtual bool GetItemPrice( int32_t, uint64_t *, uint64_t * ) = 0; + virtual int8_t GetItemsWithPrices( int32_t *, uint64_t *, uint64_t *, uint32_t ) = 0; + virtual int8_t GetItemPrice( int32_t, uint64_t *, uint64_t * ) = 0; virtual uint64_t StartUpdateProperties( ) = 0; - virtual bool RemoveProperty( uint64_t, uint64_t, const char * ) = 0; - virtual bool SetProperty( uint64_t, uint64_t, const char *, const char * ) = 0; - virtual bool SetProperty( uint64_t, uint64_t, const char *, bool ) = 0; - virtual bool SetProperty( uint64_t, uint64_t, const char *, int64_t ) = 0; - virtual bool SetProperty( uint64_t, uint64_t, const char *, float ) = 0; - virtual bool SubmitUpdateProperties( uint64_t, int32_t * ) = 0; - virtual bool InspectItem( int32_t *, const char * ) = 0; + virtual int8_t RemoveProperty( uint64_t, uint64_t, const char * ) = 0; + virtual int8_t SetProperty( uint64_t, uint64_t, const char *, const char * ) = 0; + virtual int8_t SetProperty( uint64_t, uint64_t, const char *, int8_t ) = 0; + virtual int8_t SetProperty( uint64_t, uint64_t, const char *, int64_t ) = 0; + virtual int8_t SetProperty( uint64_t, uint64_t, const char *, float ) = 0; + virtual int8_t SubmitUpdateProperties( uint64_t, int32_t * ) = 0; + virtual int8_t InspectItem( int32_t *, const char * ) = 0; #endif /* __cplusplus */ }; @@ -5342,28 +5342,28 @@ struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 virtual uint32_t CreateListenSocketP2P( int32_t ) = 0; virtual uint32_t ConnectP2P( const SteamNetworkingIdentity_144 *, int32_t ) = 0; virtual uint32_t AcceptConnection( uint32_t ) = 0; - virtual bool CloseConnection( uint32_t, int32_t, const char *, bool ) = 0; - virtual bool CloseListenSocket( uint32_t ) = 0; - virtual bool SetConnectionUserData( uint32_t, int64_t ) = 0; + virtual int8_t CloseConnection( uint32_t, int32_t, const char *, int8_t ) = 0; + virtual int8_t CloseListenSocket( uint32_t ) = 0; + virtual int8_t SetConnectionUserData( uint32_t, int64_t ) = 0; virtual int64_t GetConnectionUserData( uint32_t ) = 0; virtual void SetConnectionName( uint32_t, const char * ) = 0; - virtual bool GetConnectionName( uint32_t, char *, int32_t ) = 0; + virtual int8_t GetConnectionName( uint32_t, char *, int32_t ) = 0; virtual uint32_t SendMessageToConnection( uint32_t, const void *, uint32_t, int32_t ) = 0; virtual uint32_t FlushMessagesOnConnection( uint32_t ) = 0; virtual int32_t ReceiveMessagesOnConnection( uint32_t, u_SteamNetworkingMessage_t_144 **, int32_t ) = 0; virtual int32_t ReceiveMessagesOnListenSocket( uint32_t, u_SteamNetworkingMessage_t_144 **, int32_t ) = 0; - virtual bool GetConnectionInfo( uint32_t, SteamNetConnectionInfo_t_144 * ) = 0; - virtual bool GetQuickConnectionStatus( uint32_t, SteamNetworkingQuickConnectionStatus * ) = 0; + virtual int8_t GetConnectionInfo( uint32_t, SteamNetConnectionInfo_t_144 * ) = 0; + virtual int8_t GetQuickConnectionStatus( uint32_t, SteamNetworkingQuickConnectionStatus * ) = 0; virtual int32_t GetDetailedConnectionStatus( uint32_t, char *, int32_t ) = 0; - virtual bool GetListenSocketAddress( uint32_t, SteamNetworkingIPAddr * ) = 0; - virtual bool CreateSocketPair( uint32_t *, uint32_t *, bool, const SteamNetworkingIdentity_144 *, const SteamNetworkingIdentity_144 * ) = 0; - virtual bool GetIdentity( SteamNetworkingIdentity_144 * ) = 0; - virtual bool ReceivedRelayAuthTicket( const void *, int32_t, SteamDatagramRelayAuthTicket * ) = 0; + virtual int8_t GetListenSocketAddress( uint32_t, SteamNetworkingIPAddr * ) = 0; + virtual int8_t CreateSocketPair( uint32_t *, uint32_t *, int8_t, const SteamNetworkingIdentity_144 *, const SteamNetworkingIdentity_144 * ) = 0; + virtual int8_t GetIdentity( SteamNetworkingIdentity_144 * ) = 0; + virtual int8_t ReceivedRelayAuthTicket( const void *, int32_t, SteamDatagramRelayAuthTicket * ) = 0; virtual int32_t FindRelayAuthTicketForServer( const SteamNetworkingIdentity_144 *, int32_t, SteamDatagramRelayAuthTicket * ) = 0; virtual uint32_t ConnectToHostedDedicatedServer( const SteamNetworkingIdentity_144 *, int32_t ) = 0; virtual uint16_t GetHostedDedicatedServerPort( ) = 0; virtual uint32_t GetHostedDedicatedServerPOPID( ) = 0; - virtual bool GetHostedDedicatedServerAddress( SteamDatagramHostedAddress * ) = 0; + virtual int8_t GetHostedDedicatedServerAddress( SteamDatagramHostedAddress * ) = 0; virtual uint32_t CreateHostedDedicatedServerListenSocket( int32_t ) = 0; virtual ~u_ISteamNetworkingSockets_SteamNetworkingSockets002( ) = 0; #endif /* __cplusplus */ @@ -5376,23 +5376,23 @@ struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 virtual int32_t EstimatePingTimeBetweenTwoLocations( const SteamNetworkPingLocation_t *, const SteamNetworkPingLocation_t * ) = 0; virtual int32_t EstimatePingTimeFromLocalHost( const SteamNetworkPingLocation_t * ) = 0; virtual void ConvertPingLocationToString( const SteamNetworkPingLocation_t *, char *, int32_t ) = 0; - virtual bool ParsePingLocationString( const char *, SteamNetworkPingLocation_t * ) = 0; - virtual bool CheckPingDataUpToDate( float ) = 0; - virtual bool IsPingMeasurementInProgress( ) = 0; + virtual int8_t ParsePingLocationString( const char *, SteamNetworkPingLocation_t * ) = 0; + virtual int8_t CheckPingDataUpToDate( float ) = 0; + virtual int8_t IsPingMeasurementInProgress( ) = 0; virtual int32_t GetPingToDataCenter( uint32_t, uint32_t * ) = 0; virtual int32_t GetDirectPingToPOP( uint32_t ) = 0; virtual int32_t GetPOPCount( ) = 0; virtual int32_t GetPOPList( uint32_t *, int32_t ) = 0; virtual int64_t GetLocalTimestamp( ) = 0; virtual void SetDebugOutputFunction( uint32_t, void (*U_STDCALL )(uint32_t, const char *) ) = 0; - virtual bool SetConfigValue( uint32_t, uint32_t, int32_t, uint32_t, const void * ) = 0; + virtual int8_t SetConfigValue( uint32_t, uint32_t, int32_t, uint32_t, const void * ) = 0; virtual uint32_t GetConfigValue( uint32_t, uint32_t, int32_t, uint32_t *, void *, uint32_t * ) = 0; - virtual bool GetConfigValueInfo( uint32_t, const char **, uint32_t *, uint32_t *, uint32_t * ) = 0; + virtual int8_t GetConfigValueInfo( uint32_t, const char **, uint32_t *, uint32_t *, uint32_t * ) = 0; virtual uint32_t GetFirstConfigValue( ) = 0; - virtual void SteamNetworkingIPAddr_ToString( const SteamNetworkingIPAddr *, char *, uint32_t, bool ) = 0; - virtual bool SteamNetworkingIPAddr_ParseString( SteamNetworkingIPAddr *, const char * ) = 0; + virtual void SteamNetworkingIPAddr_ToString( const SteamNetworkingIPAddr *, char *, uint32_t, int8_t ) = 0; + virtual int8_t SteamNetworkingIPAddr_ParseString( SteamNetworkingIPAddr *, const char * ) = 0; virtual void SteamNetworkingIdentity_ToString( const SteamNetworkingIdentity_144 *, char *, uint32_t ) = 0; - virtual bool SteamNetworkingIdentity_ParseString( SteamNetworkingIdentity_144 *, const char * ) = 0; + virtual int8_t SteamNetworkingIdentity_ParseString( SteamNetworkingIdentity_144 *, const char * ) = 0; virtual ~u_ISteamNetworkingUtils_SteamNetworkingUtils001( ) = 0; #endif /* __cplusplus */ }; @@ -5405,57 +5405,57 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 virtual uint64_t CreateQueryAllUGCRequest( uint32_t, uint32_t, uint32_t, uint32_t, const char * ) = 0; virtual uint64_t CreateQueryUGCDetailsRequest( uint64_t *, uint32_t ) = 0; virtual uint64_t SendQueryUGCRequest( uint64_t ) = 0; - virtual bool GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; - virtual bool GetQueryUGCPreviewURL( uint64_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCMetadata( uint64_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCChildren( uint64_t, uint32_t, uint64_t *, uint32_t ) = 0; - virtual bool GetQueryUGCStatistic( uint64_t, uint32_t, uint32_t, uint64_t * ) = 0; + virtual int8_t GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; + virtual int8_t GetQueryUGCPreviewURL( uint64_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCMetadata( uint64_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCChildren( uint64_t, uint32_t, uint64_t *, uint32_t ) = 0; + virtual int8_t GetQueryUGCStatistic( uint64_t, uint32_t, uint32_t, uint64_t * ) = 0; virtual uint32_t GetQueryUGCNumAdditionalPreviews( uint64_t, uint32_t ) = 0; - virtual bool GetQueryUGCAdditionalPreview( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t, uint32_t * ) = 0; + virtual int8_t GetQueryUGCAdditionalPreview( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t, uint32_t * ) = 0; virtual uint32_t GetQueryUGCNumKeyValueTags( uint64_t, uint32_t ) = 0; - virtual bool GetQueryUGCKeyValueTag( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCKeyValueTag( uint64_t, uint32_t, const char *, char *, uint32_t ) = 0; - virtual bool ReleaseQueryUGCRequest( uint64_t ) = 0; - virtual bool AddRequiredTag( uint64_t, const char * ) = 0; - virtual bool AddExcludedTag( uint64_t, const char * ) = 0; - virtual bool SetReturnOnlyIDs( uint64_t, bool ) = 0; - virtual bool SetReturnKeyValueTags( uint64_t, bool ) = 0; - virtual bool SetReturnLongDescription( uint64_t, bool ) = 0; - virtual bool SetReturnMetadata( uint64_t, bool ) = 0; - virtual bool SetReturnChildren( uint64_t, bool ) = 0; - virtual bool SetReturnAdditionalPreviews( uint64_t, bool ) = 0; - virtual bool SetReturnTotalOnly( uint64_t, bool ) = 0; - virtual bool SetReturnPlaytimeStats( uint64_t, uint32_t ) = 0; - virtual bool SetLanguage( uint64_t, const char * ) = 0; - virtual bool SetAllowCachedResponse( uint64_t, uint32_t ) = 0; - virtual bool SetCloudFileNameFilter( uint64_t, const char * ) = 0; - virtual bool SetMatchAnyTag( uint64_t, bool ) = 0; - virtual bool SetSearchText( uint64_t, const char * ) = 0; - virtual bool SetRankedByTrendDays( uint64_t, uint32_t ) = 0; - virtual bool AddRequiredKeyValueTag( uint64_t, const char *, const char * ) = 0; + virtual int8_t GetQueryUGCKeyValueTag( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCKeyValueTag( uint64_t, uint32_t, const char *, char *, uint32_t ) = 0; + virtual int8_t ReleaseQueryUGCRequest( uint64_t ) = 0; + virtual int8_t AddRequiredTag( uint64_t, const char * ) = 0; + virtual int8_t AddExcludedTag( uint64_t, const char * ) = 0; + virtual int8_t SetReturnOnlyIDs( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnKeyValueTags( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnLongDescription( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnMetadata( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnChildren( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnAdditionalPreviews( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnTotalOnly( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnPlaytimeStats( uint64_t, uint32_t ) = 0; + virtual int8_t SetLanguage( uint64_t, const char * ) = 0; + virtual int8_t SetAllowCachedResponse( uint64_t, uint32_t ) = 0; + virtual int8_t SetCloudFileNameFilter( uint64_t, const char * ) = 0; + virtual int8_t SetMatchAnyTag( uint64_t, int8_t ) = 0; + virtual int8_t SetSearchText( uint64_t, const char * ) = 0; + virtual int8_t SetRankedByTrendDays( uint64_t, uint32_t ) = 0; + virtual int8_t AddRequiredKeyValueTag( uint64_t, const char *, const char * ) = 0; virtual uint64_t RequestUGCDetails( uint64_t, uint32_t ) = 0; virtual uint64_t CreateItem( uint32_t, uint32_t ) = 0; virtual uint64_t StartItemUpdate( uint32_t, uint64_t ) = 0; - virtual bool SetItemTitle( uint64_t, const char * ) = 0; - virtual bool SetItemDescription( uint64_t, const char * ) = 0; - virtual bool SetItemUpdateLanguage( uint64_t, const char * ) = 0; - virtual bool SetItemMetadata( uint64_t, const char * ) = 0; - virtual bool SetItemVisibility( uint64_t, uint32_t ) = 0; - virtual bool SetItemTags( uint64_t, const u_SteamParamStringArray_t * ) = 0; - virtual bool SetItemContent( uint64_t, const char * ) = 0; - virtual bool SetItemPreview( uint64_t, const char * ) = 0; - virtual bool SetAllowLegacyUpload( uint64_t, bool ) = 0; - virtual bool RemoveAllItemKeyValueTags( uint64_t ) = 0; - virtual bool RemoveItemKeyValueTags( uint64_t, const char * ) = 0; - virtual bool AddItemKeyValueTag( uint64_t, const char *, const char * ) = 0; - virtual bool AddItemPreviewFile( uint64_t, const char *, uint32_t ) = 0; - virtual bool AddItemPreviewVideo( uint64_t, const char * ) = 0; - virtual bool UpdateItemPreviewFile( uint64_t, uint32_t, const char * ) = 0; - virtual bool UpdateItemPreviewVideo( uint64_t, uint32_t, const char * ) = 0; - virtual bool RemoveItemPreview( uint64_t, uint32_t ) = 0; + virtual int8_t SetItemTitle( uint64_t, const char * ) = 0; + virtual int8_t SetItemDescription( uint64_t, const char * ) = 0; + virtual int8_t SetItemUpdateLanguage( uint64_t, const char * ) = 0; + virtual int8_t SetItemMetadata( uint64_t, const char * ) = 0; + virtual int8_t SetItemVisibility( uint64_t, uint32_t ) = 0; + virtual int8_t SetItemTags( uint64_t, const u_SteamParamStringArray_t * ) = 0; + virtual int8_t SetItemContent( uint64_t, const char * ) = 0; + virtual int8_t SetItemPreview( uint64_t, const char * ) = 0; + virtual int8_t SetAllowLegacyUpload( uint64_t, int8_t ) = 0; + virtual int8_t RemoveAllItemKeyValueTags( uint64_t ) = 0; + virtual int8_t RemoveItemKeyValueTags( uint64_t, const char * ) = 0; + virtual int8_t AddItemKeyValueTag( uint64_t, const char *, const char * ) = 0; + virtual int8_t AddItemPreviewFile( uint64_t, const char *, uint32_t ) = 0; + virtual int8_t AddItemPreviewVideo( uint64_t, const char * ) = 0; + virtual int8_t UpdateItemPreviewFile( uint64_t, uint32_t, const char * ) = 0; + virtual int8_t UpdateItemPreviewVideo( uint64_t, uint32_t, const char * ) = 0; + virtual int8_t RemoveItemPreview( uint64_t, uint32_t ) = 0; virtual uint64_t SubmitItemUpdate( uint64_t, const char * ) = 0; virtual uint32_t GetItemUpdateProgress( uint64_t, uint64_t *, uint64_t * ) = 0; - virtual uint64_t SetUserItemVote( uint64_t, bool ) = 0; + virtual uint64_t SetUserItemVote( uint64_t, int8_t ) = 0; virtual uint64_t GetUserItemVote( uint64_t ) = 0; virtual uint64_t AddItemToFavorites( uint32_t, uint64_t ) = 0; virtual uint64_t RemoveItemFromFavorites( uint32_t, uint64_t ) = 0; @@ -5464,11 +5464,11 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 virtual uint32_t GetNumSubscribedItems( ) = 0; virtual uint32_t GetSubscribedItems( uint64_t *, uint32_t ) = 0; virtual uint32_t GetItemState( uint64_t ) = 0; - virtual bool GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, uint32_t * ) = 0; - virtual bool GetItemDownloadInfo( uint64_t, uint64_t *, uint64_t * ) = 0; - virtual bool DownloadItem( uint64_t, bool ) = 0; - virtual bool BInitWorkshopForGameServer( uint32_t, const char * ) = 0; - virtual void SuspendDownloads( bool ) = 0; + virtual int8_t GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, uint32_t * ) = 0; + virtual int8_t GetItemDownloadInfo( uint64_t, uint64_t *, uint64_t * ) = 0; + virtual int8_t DownloadItem( uint64_t, int8_t ) = 0; + virtual int8_t BInitWorkshopForGameServer( uint32_t, const char * ) = 0; + virtual void SuspendDownloads( int8_t ) = 0; virtual uint64_t StartPlaytimeTracking( uint64_t *, uint32_t ) = 0; virtual uint64_t StopPlaytimeTracking( uint64_t *, uint32_t ) = 0; virtual uint64_t StopPlaytimeTrackingForAllItems( ) = 0; @@ -5489,25 +5489,25 @@ struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 virtual uint32_t CreateListenSocketP2P( int32_t ) = 0; virtual uint32_t ConnectP2P( const SteamNetworkingIdentity_144 *, int32_t ) = 0; virtual uint32_t AcceptConnection( uint32_t ) = 0; - virtual bool CloseConnection( uint32_t, int32_t, const char *, bool ) = 0; - virtual bool CloseListenSocket( uint32_t ) = 0; - virtual bool SetConnectionUserData( uint32_t, int64_t ) = 0; + virtual int8_t CloseConnection( uint32_t, int32_t, const char *, int8_t ) = 0; + virtual int8_t CloseListenSocket( uint32_t ) = 0; + virtual int8_t SetConnectionUserData( uint32_t, int64_t ) = 0; virtual int64_t GetConnectionUserData( uint32_t ) = 0; virtual void SetConnectionName( uint32_t, const char * ) = 0; - virtual bool GetConnectionName( uint32_t, char *, int32_t ) = 0; + virtual int8_t GetConnectionName( uint32_t, char *, int32_t ) = 0; virtual uint32_t SendMessageToConnection( uint32_t, const void *, uint32_t, int32_t ) = 0; virtual uint32_t FlushMessagesOnConnection( uint32_t ) = 0; virtual int32_t ReceiveMessagesOnConnection( uint32_t, u_SteamNetworkingMessage_t_144 **, int32_t ) = 0; virtual int32_t ReceiveMessagesOnListenSocket( uint32_t, u_SteamNetworkingMessage_t_144 **, int32_t ) = 0; - virtual bool GetConnectionInfo( uint32_t, SteamNetConnectionInfo_t_144 * ) = 0; - virtual bool GetQuickConnectionStatus( uint32_t, SteamNetworkingQuickConnectionStatus * ) = 0; + virtual int8_t GetConnectionInfo( uint32_t, SteamNetConnectionInfo_t_144 * ) = 0; + virtual int8_t GetQuickConnectionStatus( uint32_t, SteamNetworkingQuickConnectionStatus * ) = 0; virtual int32_t GetDetailedConnectionStatus( uint32_t, char *, int32_t ) = 0; - virtual bool GetListenSocketAddress( uint32_t, SteamNetworkingIPAddr * ) = 0; - virtual bool CreateSocketPair( uint32_t *, uint32_t *, bool, const SteamNetworkingIdentity_144 *, const SteamNetworkingIdentity_144 * ) = 0; - virtual bool GetIdentity( SteamNetworkingIdentity_144 * ) = 0; + virtual int8_t GetListenSocketAddress( uint32_t, SteamNetworkingIPAddr * ) = 0; + virtual int8_t CreateSocketPair( uint32_t *, uint32_t *, int8_t, const SteamNetworkingIdentity_144 *, const SteamNetworkingIdentity_144 * ) = 0; + virtual int8_t GetIdentity( SteamNetworkingIdentity_144 * ) = 0; virtual uint32_t InitAuthentication( ) = 0; virtual uint32_t GetAuthenticationStatus( SteamNetAuthenticationStatus_t * ) = 0; - virtual bool ReceivedRelayAuthTicket( const void *, int32_t, SteamDatagramRelayAuthTicket * ) = 0; + virtual int8_t ReceivedRelayAuthTicket( const void *, int32_t, SteamDatagramRelayAuthTicket * ) = 0; virtual int32_t FindRelayAuthTicketForServer( const SteamNetworkingIdentity_144 *, int32_t, SteamDatagramRelayAuthTicket * ) = 0; virtual uint32_t ConnectToHostedDedicatedServer( const SteamNetworkingIdentity_144 *, int32_t ) = 0; virtual uint16_t GetHostedDedicatedServerPort( ) = 0; @@ -5527,22 +5527,22 @@ struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 virtual int32_t EstimatePingTimeBetweenTwoLocations( const SteamNetworkPingLocation_t *, const SteamNetworkPingLocation_t * ) = 0; virtual int32_t EstimatePingTimeFromLocalHost( const SteamNetworkPingLocation_t * ) = 0; virtual void ConvertPingLocationToString( const SteamNetworkPingLocation_t *, char *, int32_t ) = 0; - virtual bool ParsePingLocationString( const char *, SteamNetworkPingLocation_t * ) = 0; - virtual bool CheckPingDataUpToDate( float ) = 0; + virtual int8_t ParsePingLocationString( const char *, SteamNetworkPingLocation_t * ) = 0; + virtual int8_t CheckPingDataUpToDate( float ) = 0; virtual int32_t GetPingToDataCenter( uint32_t, uint32_t * ) = 0; virtual int32_t GetDirectPingToPOP( uint32_t ) = 0; virtual int32_t GetPOPCount( ) = 0; virtual int32_t GetPOPList( uint32_t *, int32_t ) = 0; virtual int64_t GetLocalTimestamp( ) = 0; virtual void SetDebugOutputFunction( uint32_t, void (*U_STDCALL )(uint32_t, const char *) ) = 0; - virtual bool SetConfigValue( uint32_t, uint32_t, int32_t, uint32_t, const void * ) = 0; + virtual int8_t SetConfigValue( uint32_t, uint32_t, int32_t, uint32_t, const void * ) = 0; virtual uint32_t GetConfigValue( uint32_t, uint32_t, int32_t, uint32_t *, void *, uint32_t * ) = 0; - virtual bool GetConfigValueInfo( uint32_t, const char **, uint32_t *, uint32_t *, uint32_t * ) = 0; + virtual int8_t GetConfigValueInfo( uint32_t, const char **, uint32_t *, uint32_t *, uint32_t * ) = 0; virtual uint32_t GetFirstConfigValue( ) = 0; - virtual void SteamNetworkingIPAddr_ToString( const SteamNetworkingIPAddr *, char *, uint32_t, bool ) = 0; - virtual bool SteamNetworkingIPAddr_ParseString( SteamNetworkingIPAddr *, const char * ) = 0; + virtual void SteamNetworkingIPAddr_ToString( const SteamNetworkingIPAddr *, char *, uint32_t, int8_t ) = 0; + virtual int8_t SteamNetworkingIPAddr_ParseString( SteamNetworkingIPAddr *, const char * ) = 0; virtual void SteamNetworkingIdentity_ToString( const SteamNetworkingIdentity_144 *, char *, uint32_t ) = 0; - virtual bool SteamNetworkingIdentity_ParseString( SteamNetworkingIdentity_144 *, const char * ) = 0; + virtual int8_t SteamNetworkingIdentity_ParseString( SteamNetworkingIdentity_144 *, const char * ) = 0; virtual ~u_ISteamNetworkingUtils_SteamNetworkingUtils002( ) = 0; #endif /* __cplusplus */ }; @@ -5551,7 +5551,7 @@ struct u_ISteamClient_SteamClient019 { #ifdef __cplusplus virtual int32_t CreateSteamPipe( ) = 0; - virtual bool BReleaseSteamPipe( int32_t ) = 0; + virtual int8_t BReleaseSteamPipe( int32_t ) = 0; virtual int32_t ConnectToGlobalUser( int32_t ) = 0; virtual int32_t CreateLocalUser( int32_t *, uint32_t ) = 0; virtual void ReleaseUser( int32_t, int32_t ) = 0; @@ -5573,7 +5573,7 @@ struct u_ISteamClient_SteamClient019 virtual void RunFrame( ) = 0; virtual uint32_t GetIPCCallCount( ) = 0; virtual void SetWarningMessageHook( void (*U_CDECL )(int32_t, const char *) ) = 0; - virtual bool BShutdownIfAllPipesClosed( ) = 0; + virtual int8_t BShutdownIfAllPipesClosed( ) = 0; virtual void /*ISteamHTTP*/ * GetISteamHTTP( int32_t, int32_t, const char * ) = 0; virtual void * DEPRECATED_GetISteamUnifiedMessages( int32_t, int32_t, const char * ) = 0; virtual void /*ISteamController*/ * GetISteamController( int32_t, int32_t, const char * ) = 0; @@ -5602,8 +5602,8 @@ struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 virtual CSteamID GetSessionSteamID( uint32_t ) = 0; virtual const char * GetSessionClientName( uint32_t ) = 0; virtual uint32_t GetSessionClientFormFactor( uint32_t ) = 0; - virtual bool BGetSessionClientResolution( uint32_t, int32_t *, int32_t * ) = 0; - virtual bool BSendRemotePlayTogetherInvite( CSteamID ) = 0; + virtual int8_t BGetSessionClientResolution( uint32_t, int32_t *, int32_t * ) = 0; + virtual int8_t BSendRemotePlayTogetherInvite( CSteamID ) = 0; #endif /* __cplusplus */ }; @@ -5611,7 +5611,7 @@ struct u_ISteamClient_SteamClient020 { #ifdef __cplusplus virtual int32_t CreateSteamPipe( ) = 0; - virtual bool BReleaseSteamPipe( int32_t ) = 0; + virtual int8_t BReleaseSteamPipe( int32_t ) = 0; virtual int32_t ConnectToGlobalUser( int32_t ) = 0; virtual int32_t CreateLocalUser( int32_t *, uint32_t ) = 0; virtual void ReleaseUser( int32_t, int32_t ) = 0; @@ -5633,7 +5633,7 @@ struct u_ISteamClient_SteamClient020 virtual void RunFrame( ) = 0; virtual uint32_t GetIPCCallCount( ) = 0; virtual void SetWarningMessageHook( void (*U_CDECL )(int32_t, const char *) ) = 0; - virtual bool BShutdownIfAllPipesClosed( ) = 0; + virtual int8_t BShutdownIfAllPipesClosed( ) = 0; virtual void /*ISteamHTTP*/ * GetISteamHTTP( int32_t, int32_t, const char * ) = 0; virtual void * DEPRECATED_GetISteamUnifiedMessages( int32_t, int32_t, const char * ) = 0; virtual void /*ISteamController*/ * GetISteamController( int32_t, int32_t, const char * ) = 0; @@ -5658,26 +5658,26 @@ struct u_ISteamClient_SteamClient020 struct u_ISteamNetworking_SteamNetworking006 { #ifdef __cplusplus - virtual bool SendP2PPacket( CSteamID, const void *, uint32_t, uint32_t, int32_t ) = 0; - virtual bool IsP2PPacketAvailable( uint32_t *, int32_t ) = 0; - virtual bool ReadP2PPacket( void *, uint32_t, uint32_t *, CSteamID *, int32_t ) = 0; - virtual bool AcceptP2PSessionWithUser( CSteamID ) = 0; - virtual bool CloseP2PSessionWithUser( CSteamID ) = 0; - virtual bool CloseP2PChannelWithUser( CSteamID, int32_t ) = 0; - virtual bool GetP2PSessionState( CSteamID, P2PSessionState_t * ) = 0; - virtual bool AllowP2PPacketRelay( bool ) = 0; - virtual uint32_t CreateListenSocket( int32_t, SteamIPAddress_t, uint16_t, bool ) = 0; - virtual uint32_t CreateP2PConnectionSocket( CSteamID, int32_t, int32_t, bool ) = 0; + virtual int8_t SendP2PPacket( CSteamID, const void *, uint32_t, uint32_t, int32_t ) = 0; + virtual int8_t IsP2PPacketAvailable( uint32_t *, int32_t ) = 0; + virtual int8_t ReadP2PPacket( void *, uint32_t, uint32_t *, CSteamID *, int32_t ) = 0; + virtual int8_t AcceptP2PSessionWithUser( CSteamID ) = 0; + virtual int8_t CloseP2PSessionWithUser( CSteamID ) = 0; + virtual int8_t CloseP2PChannelWithUser( CSteamID, int32_t ) = 0; + virtual int8_t GetP2PSessionState( CSteamID, P2PSessionState_t * ) = 0; + virtual int8_t AllowP2PPacketRelay( int8_t ) = 0; + virtual uint32_t CreateListenSocket( int32_t, SteamIPAddress_t, uint16_t, int8_t ) = 0; + virtual uint32_t CreateP2PConnectionSocket( CSteamID, int32_t, int32_t, int8_t ) = 0; virtual uint32_t CreateConnectionSocket( SteamIPAddress_t, uint16_t, int32_t ) = 0; - virtual bool DestroySocket( uint32_t, bool ) = 0; - virtual bool DestroyListenSocket( uint32_t, bool ) = 0; - virtual bool SendDataOnSocket( uint32_t, void *, uint32_t, bool ) = 0; - virtual bool IsDataAvailableOnSocket( uint32_t, uint32_t * ) = 0; - virtual bool RetrieveDataFromSocket( uint32_t, void *, uint32_t, uint32_t * ) = 0; - virtual bool IsDataAvailable( uint32_t, uint32_t *, uint32_t * ) = 0; - virtual bool RetrieveData( uint32_t, void *, uint32_t, uint32_t *, uint32_t * ) = 0; - virtual bool GetSocketInfo( uint32_t, CSteamID *, int32_t *, SteamIPAddress_t *, uint16_t * ) = 0; - virtual bool GetListenSocketInfo( uint32_t, SteamIPAddress_t *, uint16_t * ) = 0; + virtual int8_t DestroySocket( uint32_t, int8_t ) = 0; + virtual int8_t DestroyListenSocket( uint32_t, int8_t ) = 0; + virtual int8_t SendDataOnSocket( uint32_t, void *, uint32_t, int8_t ) = 0; + virtual int8_t IsDataAvailableOnSocket( uint32_t, uint32_t * ) = 0; + virtual int8_t RetrieveDataFromSocket( uint32_t, void *, uint32_t, uint32_t * ) = 0; + virtual int8_t IsDataAvailable( uint32_t, uint32_t *, uint32_t * ) = 0; + virtual int8_t RetrieveData( uint32_t, void *, uint32_t, uint32_t *, uint32_t * ) = 0; + virtual int8_t GetSocketInfo( uint32_t, CSteamID *, int32_t *, SteamIPAddress_t *, uint16_t * ) = 0; + virtual int8_t GetListenSocketInfo( uint32_t, SteamIPAddress_t *, uint16_t * ) = 0; virtual uint32_t GetSocketConnectionType( uint32_t ) = 0; virtual int32_t GetMaxPacketSize( uint32_t ) = 0; #endif /* __cplusplus */ @@ -5691,58 +5691,58 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 virtual uint64_t CreateQueryAllUGCRequest( uint32_t, uint32_t, uint32_t, uint32_t, const char * ) = 0; virtual uint64_t CreateQueryUGCDetailsRequest( uint64_t *, uint32_t ) = 0; virtual uint64_t SendQueryUGCRequest( uint64_t ) = 0; - virtual bool GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; - virtual bool GetQueryUGCPreviewURL( uint64_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCMetadata( uint64_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCChildren( uint64_t, uint32_t, uint64_t *, uint32_t ) = 0; - virtual bool GetQueryUGCStatistic( uint64_t, uint32_t, uint32_t, uint64_t * ) = 0; + virtual int8_t GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; + virtual int8_t GetQueryUGCPreviewURL( uint64_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCMetadata( uint64_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCChildren( uint64_t, uint32_t, uint64_t *, uint32_t ) = 0; + virtual int8_t GetQueryUGCStatistic( uint64_t, uint32_t, uint32_t, uint64_t * ) = 0; virtual uint32_t GetQueryUGCNumAdditionalPreviews( uint64_t, uint32_t ) = 0; - virtual bool GetQueryUGCAdditionalPreview( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t, uint32_t * ) = 0; + virtual int8_t GetQueryUGCAdditionalPreview( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t, uint32_t * ) = 0; virtual uint32_t GetQueryUGCNumKeyValueTags( uint64_t, uint32_t ) = 0; - virtual bool GetQueryUGCKeyValueTag( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCKeyValueTag( uint64_t, uint32_t, const char *, char *, uint32_t ) = 0; - virtual bool ReleaseQueryUGCRequest( uint64_t ) = 0; - virtual bool AddRequiredTag( uint64_t, const char * ) = 0; - virtual bool AddRequiredTagGroup( uint64_t, const u_SteamParamStringArray_t * ) = 0; - virtual bool AddExcludedTag( uint64_t, const char * ) = 0; - virtual bool SetReturnOnlyIDs( uint64_t, bool ) = 0; - virtual bool SetReturnKeyValueTags( uint64_t, bool ) = 0; - virtual bool SetReturnLongDescription( uint64_t, bool ) = 0; - virtual bool SetReturnMetadata( uint64_t, bool ) = 0; - virtual bool SetReturnChildren( uint64_t, bool ) = 0; - virtual bool SetReturnAdditionalPreviews( uint64_t, bool ) = 0; - virtual bool SetReturnTotalOnly( uint64_t, bool ) = 0; - virtual bool SetReturnPlaytimeStats( uint64_t, uint32_t ) = 0; - virtual bool SetLanguage( uint64_t, const char * ) = 0; - virtual bool SetAllowCachedResponse( uint64_t, uint32_t ) = 0; - virtual bool SetCloudFileNameFilter( uint64_t, const char * ) = 0; - virtual bool SetMatchAnyTag( uint64_t, bool ) = 0; - virtual bool SetSearchText( uint64_t, const char * ) = 0; - virtual bool SetRankedByTrendDays( uint64_t, uint32_t ) = 0; - virtual bool AddRequiredKeyValueTag( uint64_t, const char *, const char * ) = 0; + virtual int8_t GetQueryUGCKeyValueTag( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCKeyValueTag( uint64_t, uint32_t, const char *, char *, uint32_t ) = 0; + virtual int8_t ReleaseQueryUGCRequest( uint64_t ) = 0; + virtual int8_t AddRequiredTag( uint64_t, const char * ) = 0; + virtual int8_t AddRequiredTagGroup( uint64_t, const u_SteamParamStringArray_t * ) = 0; + virtual int8_t AddExcludedTag( uint64_t, const char * ) = 0; + virtual int8_t SetReturnOnlyIDs( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnKeyValueTags( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnLongDescription( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnMetadata( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnChildren( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnAdditionalPreviews( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnTotalOnly( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnPlaytimeStats( uint64_t, uint32_t ) = 0; + virtual int8_t SetLanguage( uint64_t, const char * ) = 0; + virtual int8_t SetAllowCachedResponse( uint64_t, uint32_t ) = 0; + virtual int8_t SetCloudFileNameFilter( uint64_t, const char * ) = 0; + virtual int8_t SetMatchAnyTag( uint64_t, int8_t ) = 0; + virtual int8_t SetSearchText( uint64_t, const char * ) = 0; + virtual int8_t SetRankedByTrendDays( uint64_t, uint32_t ) = 0; + virtual int8_t AddRequiredKeyValueTag( uint64_t, const char *, const char * ) = 0; virtual uint64_t RequestUGCDetails( uint64_t, uint32_t ) = 0; virtual uint64_t CreateItem( uint32_t, uint32_t ) = 0; virtual uint64_t StartItemUpdate( uint32_t, uint64_t ) = 0; - virtual bool SetItemTitle( uint64_t, const char * ) = 0; - virtual bool SetItemDescription( uint64_t, const char * ) = 0; - virtual bool SetItemUpdateLanguage( uint64_t, const char * ) = 0; - virtual bool SetItemMetadata( uint64_t, const char * ) = 0; - virtual bool SetItemVisibility( uint64_t, uint32_t ) = 0; - virtual bool SetItemTags( uint64_t, const u_SteamParamStringArray_t * ) = 0; - virtual bool SetItemContent( uint64_t, const char * ) = 0; - virtual bool SetItemPreview( uint64_t, const char * ) = 0; - virtual bool SetAllowLegacyUpload( uint64_t, bool ) = 0; - virtual bool RemoveAllItemKeyValueTags( uint64_t ) = 0; - virtual bool RemoveItemKeyValueTags( uint64_t, const char * ) = 0; - virtual bool AddItemKeyValueTag( uint64_t, const char *, const char * ) = 0; - virtual bool AddItemPreviewFile( uint64_t, const char *, uint32_t ) = 0; - virtual bool AddItemPreviewVideo( uint64_t, const char * ) = 0; - virtual bool UpdateItemPreviewFile( uint64_t, uint32_t, const char * ) = 0; - virtual bool UpdateItemPreviewVideo( uint64_t, uint32_t, const char * ) = 0; - virtual bool RemoveItemPreview( uint64_t, uint32_t ) = 0; + virtual int8_t SetItemTitle( uint64_t, const char * ) = 0; + virtual int8_t SetItemDescription( uint64_t, const char * ) = 0; + virtual int8_t SetItemUpdateLanguage( uint64_t, const char * ) = 0; + virtual int8_t SetItemMetadata( uint64_t, const char * ) = 0; + virtual int8_t SetItemVisibility( uint64_t, uint32_t ) = 0; + virtual int8_t SetItemTags( uint64_t, const u_SteamParamStringArray_t * ) = 0; + virtual int8_t SetItemContent( uint64_t, const char * ) = 0; + virtual int8_t SetItemPreview( uint64_t, const char * ) = 0; + virtual int8_t SetAllowLegacyUpload( uint64_t, int8_t ) = 0; + virtual int8_t RemoveAllItemKeyValueTags( uint64_t ) = 0; + virtual int8_t RemoveItemKeyValueTags( uint64_t, const char * ) = 0; + virtual int8_t AddItemKeyValueTag( uint64_t, const char *, const char * ) = 0; + virtual int8_t AddItemPreviewFile( uint64_t, const char *, uint32_t ) = 0; + virtual int8_t AddItemPreviewVideo( uint64_t, const char * ) = 0; + virtual int8_t UpdateItemPreviewFile( uint64_t, uint32_t, const char * ) = 0; + virtual int8_t UpdateItemPreviewVideo( uint64_t, uint32_t, const char * ) = 0; + virtual int8_t RemoveItemPreview( uint64_t, uint32_t ) = 0; virtual uint64_t SubmitItemUpdate( uint64_t, const char * ) = 0; virtual uint32_t GetItemUpdateProgress( uint64_t, uint64_t *, uint64_t * ) = 0; - virtual uint64_t SetUserItemVote( uint64_t, bool ) = 0; + virtual uint64_t SetUserItemVote( uint64_t, int8_t ) = 0; virtual uint64_t GetUserItemVote( uint64_t ) = 0; virtual uint64_t AddItemToFavorites( uint32_t, uint64_t ) = 0; virtual uint64_t RemoveItemFromFavorites( uint32_t, uint64_t ) = 0; @@ -5751,11 +5751,11 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 virtual uint32_t GetNumSubscribedItems( ) = 0; virtual uint32_t GetSubscribedItems( uint64_t *, uint32_t ) = 0; virtual uint32_t GetItemState( uint64_t ) = 0; - virtual bool GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, uint32_t * ) = 0; - virtual bool GetItemDownloadInfo( uint64_t, uint64_t *, uint64_t * ) = 0; - virtual bool DownloadItem( uint64_t, bool ) = 0; - virtual bool BInitWorkshopForGameServer( uint32_t, const char * ) = 0; - virtual void SuspendDownloads( bool ) = 0; + virtual int8_t GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, uint32_t * ) = 0; + virtual int8_t GetItemDownloadInfo( uint64_t, uint64_t *, uint64_t * ) = 0; + virtual int8_t DownloadItem( uint64_t, int8_t ) = 0; + virtual int8_t BInitWorkshopForGameServer( uint32_t, const char * ) = 0; + virtual void SuspendDownloads( int8_t ) = 0; virtual uint64_t StartPlaytimeTracking( uint64_t *, uint32_t ) = 0; virtual uint64_t StopPlaytimeTracking( uint64_t *, uint32_t ) = 0; virtual uint64_t StopPlaytimeTrackingForAllItems( ) = 0; @@ -5771,23 +5771,23 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 struct u_ISteamGameServer_SteamGameServer013 { #ifdef __cplusplus - virtual bool InitGameServer( uint32_t, uint16_t, uint16_t, uint32_t, uint32_t, const char * ) = 0; + virtual int8_t InitGameServer( uint32_t, uint16_t, uint16_t, uint32_t, uint32_t, const char * ) = 0; virtual void SetProduct( const char * ) = 0; virtual void SetGameDescription( const char * ) = 0; virtual void SetModDir( const char * ) = 0; - virtual void SetDedicatedServer( bool ) = 0; + virtual void SetDedicatedServer( int8_t ) = 0; virtual void LogOn( const char * ) = 0; virtual void LogOnAnonymous( ) = 0; virtual void LogOff( ) = 0; - virtual bool BLoggedOn( ) = 0; - virtual bool BSecure( ) = 0; + virtual int8_t BLoggedOn( ) = 0; + virtual int8_t BSecure( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual bool WasRestartRequested( ) = 0; + virtual int8_t WasRestartRequested( ) = 0; virtual void SetMaxPlayerCount( int32_t ) = 0; virtual void SetBotPlayerCount( int32_t ) = 0; virtual void SetServerName( const char * ) = 0; virtual void SetMapName( const char * ) = 0; - virtual void SetPasswordProtected( bool ) = 0; + virtual void SetPasswordProtected( int8_t ) = 0; virtual void SetSpectatorPort( uint16_t ) = 0; virtual void SetSpectatorServerName( const char * ) = 0; virtual void ClearAllKeyValues( ) = 0; @@ -5795,22 +5795,22 @@ struct u_ISteamGameServer_SteamGameServer013 virtual void SetGameTags( const char * ) = 0; virtual void SetGameData( const char * ) = 0; virtual void SetRegion( const char * ) = 0; - virtual bool SendUserConnectAndAuthenticate( uint32_t, const void *, uint32_t, CSteamID * ) = 0; + virtual int8_t SendUserConnectAndAuthenticate( uint32_t, const void *, uint32_t, CSteamID * ) = 0; virtual CSteamID CreateUnauthenticatedUserConnection( ) = 0; virtual void SendUserDisconnect( CSteamID ) = 0; - virtual bool BUpdateUserData( CSteamID, const char *, uint32_t ) = 0; + virtual int8_t BUpdateUserData( CSteamID, const char *, uint32_t ) = 0; virtual uint32_t GetAuthSessionTicket( void *, int32_t, uint32_t * ) = 0; virtual uint32_t BeginAuthSession( const void *, int32_t, CSteamID ) = 0; virtual void EndAuthSession( CSteamID ) = 0; virtual void CancelAuthTicket( uint32_t ) = 0; virtual uint32_t UserHasLicenseForApp( CSteamID, uint32_t ) = 0; - virtual bool RequestUserGroupStatus( CSteamID, CSteamID ) = 0; + virtual int8_t RequestUserGroupStatus( CSteamID, CSteamID ) = 0; virtual void GetGameplayStats( ) = 0; virtual uint64_t GetServerReputation( ) = 0; virtual SteamIPAddress_t GetPublicIP( ) = 0; - virtual bool HandleIncomingPacket( const void *, int32_t, uint32_t, uint16_t ) = 0; + virtual int8_t HandleIncomingPacket( const void *, int32_t, uint32_t, uint16_t ) = 0; virtual int32_t GetNextOutgoingPacket( void *, int32_t, uint32_t *, uint16_t * ) = 0; - virtual void EnableHeartbeats( bool ) = 0; + virtual void EnableHeartbeats( int8_t ) = 0; virtual void SetHeartbeatInterval( int32_t ) = 0; virtual void ForceHeartbeat( ) = 0; virtual uint64_t AssociateWithClan( CSteamID ) = 0; @@ -5826,26 +5826,26 @@ struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 virtual uint32_t CreateListenSocketP2P( int32_t, int32_t, const SteamNetworkingConfigValue_t * ) = 0; virtual uint32_t ConnectP2P( const SteamNetworkingIdentity_144 *, int32_t, int32_t, const SteamNetworkingConfigValue_t * ) = 0; virtual uint32_t AcceptConnection( uint32_t ) = 0; - virtual bool CloseConnection( uint32_t, int32_t, const char *, bool ) = 0; - virtual bool CloseListenSocket( uint32_t ) = 0; - virtual bool SetConnectionUserData( uint32_t, int64_t ) = 0; + virtual int8_t CloseConnection( uint32_t, int32_t, const char *, int8_t ) = 0; + virtual int8_t CloseListenSocket( uint32_t ) = 0; + virtual int8_t SetConnectionUserData( uint32_t, int64_t ) = 0; virtual int64_t GetConnectionUserData( uint32_t ) = 0; virtual void SetConnectionName( uint32_t, const char * ) = 0; - virtual bool GetConnectionName( uint32_t, char *, int32_t ) = 0; + virtual int8_t GetConnectionName( uint32_t, char *, int32_t ) = 0; virtual uint32_t SendMessageToConnection( uint32_t, const void *, uint32_t, int32_t, int64_t * ) = 0; virtual void SendMessages( int32_t, u_SteamNetworkingMessage_t_147 **, int64_t * ) = 0; virtual uint32_t FlushMessagesOnConnection( uint32_t ) = 0; virtual int32_t ReceiveMessagesOnConnection( uint32_t, u_SteamNetworkingMessage_t_147 **, int32_t ) = 0; virtual int32_t ReceiveMessagesOnListenSocket( uint32_t, u_SteamNetworkingMessage_t_147 **, int32_t ) = 0; - virtual bool GetConnectionInfo( uint32_t, SteamNetConnectionInfo_t_144 * ) = 0; - virtual bool GetQuickConnectionStatus( uint32_t, SteamNetworkingQuickConnectionStatus * ) = 0; + virtual int8_t GetConnectionInfo( uint32_t, SteamNetConnectionInfo_t_144 * ) = 0; + virtual int8_t GetQuickConnectionStatus( uint32_t, SteamNetworkingQuickConnectionStatus * ) = 0; virtual int32_t GetDetailedConnectionStatus( uint32_t, char *, int32_t ) = 0; - virtual bool GetListenSocketAddress( uint32_t, SteamNetworkingIPAddr * ) = 0; - virtual bool CreateSocketPair( uint32_t *, uint32_t *, bool, const SteamNetworkingIdentity_144 *, const SteamNetworkingIdentity_144 * ) = 0; - virtual bool GetIdentity( SteamNetworkingIdentity_144 * ) = 0; + virtual int8_t GetListenSocketAddress( uint32_t, SteamNetworkingIPAddr * ) = 0; + virtual int8_t CreateSocketPair( uint32_t *, uint32_t *, int8_t, const SteamNetworkingIdentity_144 *, const SteamNetworkingIdentity_144 * ) = 0; + virtual int8_t GetIdentity( SteamNetworkingIdentity_144 * ) = 0; virtual uint32_t InitAuthentication( ) = 0; virtual uint32_t GetAuthenticationStatus( SteamNetAuthenticationStatus_t * ) = 0; - virtual bool ReceivedRelayAuthTicket( const void *, int32_t, SteamDatagramRelayAuthTicket * ) = 0; + virtual int8_t ReceivedRelayAuthTicket( const void *, int32_t, SteamDatagramRelayAuthTicket * ) = 0; virtual int32_t FindRelayAuthTicketForServer( const SteamNetworkingIdentity_144 *, int32_t, SteamDatagramRelayAuthTicket * ) = 0; virtual uint32_t ConnectToHostedDedicatedServer( const SteamNetworkingIdentity_144 *, int32_t, int32_t, const SteamNetworkingConfigValue_t * ) = 0; virtual uint16_t GetHostedDedicatedServerPort( ) = 0; @@ -5854,7 +5854,7 @@ struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 virtual uint32_t CreateHostedDedicatedServerListenSocket( int32_t, int32_t, const SteamNetworkingConfigValue_t * ) = 0; virtual uint32_t GetGameCoordinatorServerLogin( SteamDatagramGameCoordinatorServerLogin *, int32_t *, void * ) = 0; virtual uint32_t ConnectP2PCustomSignaling( u_ISteamNetworkingConnectionCustomSignaling *, const SteamNetworkingIdentity_144 *, int32_t, const SteamNetworkingConfigValue_t * ) = 0; - virtual bool ReceivedP2PCustomSignal( const void *, int32_t, u_ISteamNetworkingCustomSignalingRecvContext * ) = 0; + virtual int8_t ReceivedP2PCustomSignal( const void *, int32_t, u_ISteamNetworkingCustomSignalingRecvContext * ) = 0; virtual ~u_ISteamNetworkingSockets_SteamNetworkingSockets006( ) = 0; #endif /* __cplusplus */ }; @@ -5868,22 +5868,22 @@ struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 virtual int32_t EstimatePingTimeBetweenTwoLocations( const SteamNetworkPingLocation_t *, const SteamNetworkPingLocation_t * ) = 0; virtual int32_t EstimatePingTimeFromLocalHost( const SteamNetworkPingLocation_t * ) = 0; virtual void ConvertPingLocationToString( const SteamNetworkPingLocation_t *, char *, int32_t ) = 0; - virtual bool ParsePingLocationString( const char *, SteamNetworkPingLocation_t * ) = 0; - virtual bool CheckPingDataUpToDate( float ) = 0; + virtual int8_t ParsePingLocationString( const char *, SteamNetworkPingLocation_t * ) = 0; + virtual int8_t CheckPingDataUpToDate( float ) = 0; virtual int32_t GetPingToDataCenter( uint32_t, uint32_t * ) = 0; virtual int32_t GetDirectPingToPOP( uint32_t ) = 0; virtual int32_t GetPOPCount( ) = 0; virtual int32_t GetPOPList( uint32_t *, int32_t ) = 0; virtual int64_t GetLocalTimestamp( ) = 0; virtual void SetDebugOutputFunction( uint32_t, void (*U_STDCALL )(uint32_t, const char *) ) = 0; - virtual bool SetConfigValue( uint32_t, uint32_t, int32_t, uint32_t, const void * ) = 0; + virtual int8_t SetConfigValue( uint32_t, uint32_t, int32_t, uint32_t, const void * ) = 0; virtual uint32_t GetConfigValue( uint32_t, uint32_t, int32_t, uint32_t *, void *, uint32_t * ) = 0; - virtual bool GetConfigValueInfo( uint32_t, const char **, uint32_t *, uint32_t *, uint32_t * ) = 0; + virtual int8_t GetConfigValueInfo( uint32_t, const char **, uint32_t *, uint32_t *, uint32_t * ) = 0; virtual uint32_t GetFirstConfigValue( ) = 0; - virtual void SteamNetworkingIPAddr_ToString( const SteamNetworkingIPAddr *, char *, uint32_t, bool ) = 0; - virtual bool SteamNetworkingIPAddr_ParseString( SteamNetworkingIPAddr *, const char * ) = 0; + virtual void SteamNetworkingIPAddr_ToString( const SteamNetworkingIPAddr *, char *, uint32_t, int8_t ) = 0; + virtual int8_t SteamNetworkingIPAddr_ParseString( SteamNetworkingIPAddr *, const char * ) = 0; virtual void SteamNetworkingIdentity_ToString( const SteamNetworkingIdentity_144 *, char *, uint32_t ) = 0; - virtual bool SteamNetworkingIdentity_ParseString( SteamNetworkingIdentity_144 *, const char * ) = 0; + virtual int8_t SteamNetworkingIdentity_ParseString( SteamNetworkingIdentity_144 *, const char * ) = 0; virtual ~u_ISteamNetworkingUtils_SteamNetworkingUtils003( ) = 0; #endif /* __cplusplus */ }; @@ -5896,29 +5896,29 @@ struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 virtual uint32_t CreateListenSocketP2P( int32_t, int32_t, const SteamNetworkingConfigValue_t * ) = 0; virtual uint32_t ConnectP2P( const SteamNetworkingIdentity_144 *, int32_t, int32_t, const SteamNetworkingConfigValue_t * ) = 0; virtual uint32_t AcceptConnection( uint32_t ) = 0; - virtual bool CloseConnection( uint32_t, int32_t, const char *, bool ) = 0; - virtual bool CloseListenSocket( uint32_t ) = 0; - virtual bool SetConnectionUserData( uint32_t, int64_t ) = 0; + virtual int8_t CloseConnection( uint32_t, int32_t, const char *, int8_t ) = 0; + virtual int8_t CloseListenSocket( uint32_t ) = 0; + virtual int8_t SetConnectionUserData( uint32_t, int64_t ) = 0; virtual int64_t GetConnectionUserData( uint32_t ) = 0; virtual void SetConnectionName( uint32_t, const char * ) = 0; - virtual bool GetConnectionName( uint32_t, char *, int32_t ) = 0; + virtual int8_t GetConnectionName( uint32_t, char *, int32_t ) = 0; virtual uint32_t SendMessageToConnection( uint32_t, const void *, uint32_t, int32_t, int64_t * ) = 0; virtual void SendMessages( int32_t, u_SteamNetworkingMessage_t_147 *const *, int64_t * ) = 0; virtual uint32_t FlushMessagesOnConnection( uint32_t ) = 0; virtual int32_t ReceiveMessagesOnConnection( uint32_t, u_SteamNetworkingMessage_t_147 **, int32_t ) = 0; - virtual bool GetConnectionInfo( uint32_t, SteamNetConnectionInfo_t_144 * ) = 0; - virtual bool GetQuickConnectionStatus( uint32_t, SteamNetworkingQuickConnectionStatus * ) = 0; + virtual int8_t GetConnectionInfo( uint32_t, SteamNetConnectionInfo_t_144 * ) = 0; + virtual int8_t GetQuickConnectionStatus( uint32_t, SteamNetworkingQuickConnectionStatus * ) = 0; virtual int32_t GetDetailedConnectionStatus( uint32_t, char *, int32_t ) = 0; - virtual bool GetListenSocketAddress( uint32_t, SteamNetworkingIPAddr * ) = 0; - virtual bool CreateSocketPair( uint32_t *, uint32_t *, bool, const SteamNetworkingIdentity_144 *, const SteamNetworkingIdentity_144 * ) = 0; - virtual bool GetIdentity( SteamNetworkingIdentity_144 * ) = 0; + virtual int8_t GetListenSocketAddress( uint32_t, SteamNetworkingIPAddr * ) = 0; + virtual int8_t CreateSocketPair( uint32_t *, uint32_t *, int8_t, const SteamNetworkingIdentity_144 *, const SteamNetworkingIdentity_144 * ) = 0; + virtual int8_t GetIdentity( SteamNetworkingIdentity_144 * ) = 0; virtual uint32_t InitAuthentication( ) = 0; virtual uint32_t GetAuthenticationStatus( SteamNetAuthenticationStatus_t * ) = 0; virtual uint32_t CreatePollGroup( ) = 0; - virtual bool DestroyPollGroup( uint32_t ) = 0; - virtual bool SetConnectionPollGroup( uint32_t, uint32_t ) = 0; + virtual int8_t DestroyPollGroup( uint32_t ) = 0; + virtual int8_t SetConnectionPollGroup( uint32_t, uint32_t ) = 0; virtual int32_t ReceiveMessagesOnPollGroup( uint32_t, u_SteamNetworkingMessage_t_147 **, int32_t ) = 0; - virtual bool ReceivedRelayAuthTicket( const void *, int32_t, SteamDatagramRelayAuthTicket * ) = 0; + virtual int8_t ReceivedRelayAuthTicket( const void *, int32_t, SteamDatagramRelayAuthTicket * ) = 0; virtual int32_t FindRelayAuthTicketForServer( const SteamNetworkingIdentity_144 *, int32_t, SteamDatagramRelayAuthTicket * ) = 0; virtual uint32_t ConnectToHostedDedicatedServer( const SteamNetworkingIdentity_144 *, int32_t, int32_t, const SteamNetworkingConfigValue_t * ) = 0; virtual uint16_t GetHostedDedicatedServerPort( ) = 0; @@ -5927,9 +5927,9 @@ struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 virtual uint32_t CreateHostedDedicatedServerListenSocket( int32_t, int32_t, const SteamNetworkingConfigValue_t * ) = 0; virtual uint32_t GetGameCoordinatorServerLogin( SteamDatagramGameCoordinatorServerLogin *, int32_t *, void * ) = 0; virtual uint32_t ConnectP2PCustomSignaling( u_ISteamNetworkingConnectionCustomSignaling *, const SteamNetworkingIdentity_144 *, int32_t, const SteamNetworkingConfigValue_t * ) = 0; - virtual bool ReceivedP2PCustomSignal( const void *, int32_t, u_ISteamNetworkingCustomSignalingRecvContext * ) = 0; - virtual bool GetCertificateRequest( int32_t *, void *, char (*)[1024] ) = 0; - virtual bool SetCertificate( const void *, int32_t, char (*)[1024] ) = 0; + virtual int8_t ReceivedP2PCustomSignal( const void *, int32_t, u_ISteamNetworkingCustomSignalingRecvContext * ) = 0; + virtual int8_t GetCertificateRequest( int32_t *, void *, char (*)[1024] ) = 0; + virtual int8_t SetCertificate( const void *, int32_t, char (*)[1024] ) = 0; virtual ~u_ISteamNetworkingSockets_SteamNetworkingSockets008( ) = 0; #endif /* __cplusplus */ }; @@ -5938,16 +5938,16 @@ struct u_ISteamUser_SteamUser021 { #ifdef __cplusplus virtual int32_t GetHSteamUser( ) = 0; - virtual bool BLoggedOn( ) = 0; + virtual int8_t BLoggedOn( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual int32_t InitiateGameConnection_DEPRECATED( void *, int32_t, CSteamID, uint32_t, uint16_t, bool ) = 0; + virtual int32_t InitiateGameConnection_DEPRECATED( void *, int32_t, CSteamID, uint32_t, uint16_t, int8_t ) = 0; virtual void TerminateGameConnection_DEPRECATED( uint32_t, uint16_t ) = 0; virtual void TrackAppUsageEvent( CGameID, int32_t, const char * ) = 0; - virtual bool GetUserDataFolder( char *, int32_t ) = 0; + virtual int8_t GetUserDataFolder( char *, int32_t ) = 0; virtual void StartVoiceRecording( ) = 0; virtual void StopVoiceRecording( ) = 0; virtual uint32_t GetAvailableVoice( uint32_t *, uint32_t *, uint32_t ) = 0; - virtual uint32_t GetVoice( bool, void *, uint32_t, uint32_t *, bool, void *, uint32_t, uint32_t *, uint32_t ) = 0; + virtual uint32_t GetVoice( int8_t, void *, uint32_t, uint32_t *, int8_t, void *, uint32_t, uint32_t *, uint32_t ) = 0; virtual uint32_t DecompressVoice( const void *, uint32_t, void *, uint32_t, uint32_t *, uint32_t ) = 0; virtual uint32_t GetVoiceOptimalSampleRate( ) = 0; virtual uint32_t GetAuthSessionTicket( void *, int32_t, uint32_t * ) = 0; @@ -5955,48 +5955,48 @@ struct u_ISteamUser_SteamUser021 virtual void EndAuthSession( CSteamID ) = 0; virtual void CancelAuthTicket( uint32_t ) = 0; virtual uint32_t UserHasLicenseForApp( CSteamID, uint32_t ) = 0; - virtual bool BIsBehindNAT( ) = 0; + virtual int8_t BIsBehindNAT( ) = 0; virtual void AdvertiseGame( CSteamID, uint32_t, uint16_t ) = 0; virtual uint64_t RequestEncryptedAppTicket( void *, int32_t ) = 0; - virtual bool GetEncryptedAppTicket( void *, int32_t, uint32_t * ) = 0; - virtual int32_t GetGameBadgeLevel( int32_t, bool ) = 0; + virtual int8_t GetEncryptedAppTicket( void *, int32_t, uint32_t * ) = 0; + virtual int32_t GetGameBadgeLevel( int32_t, int8_t ) = 0; virtual int32_t GetPlayerSteamLevel( ) = 0; virtual uint64_t RequestStoreAuthURL( const char * ) = 0; - virtual bool BIsPhoneVerified( ) = 0; - virtual bool BIsTwoFactorEnabled( ) = 0; - virtual bool BIsPhoneIdentifying( ) = 0; - virtual bool BIsPhoneRequiringVerification( ) = 0; + virtual int8_t BIsPhoneVerified( ) = 0; + virtual int8_t BIsTwoFactorEnabled( ) = 0; + virtual int8_t BIsPhoneIdentifying( ) = 0; + virtual int8_t BIsPhoneRequiringVerification( ) = 0; virtual uint64_t GetMarketEligibility( ) = 0; virtual uint64_t GetDurationControl( ) = 0; - virtual bool BSetDurationControlOnlineState( uint32_t ) = 0; + virtual int8_t BSetDurationControlOnlineState( uint32_t ) = 0; #endif /* __cplusplus */ }; struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 { #ifdef __cplusplus - virtual bool RequestCurrentStats( ) = 0; - virtual bool GetStat( const char *, int32_t * ) = 0; - virtual bool GetStat( const char *, float * ) = 0; - virtual bool SetStat( const char *, int32_t ) = 0; - virtual bool SetStat( const char *, float ) = 0; - virtual bool UpdateAvgRateStat( const char *, float, double ) = 0; - virtual bool GetAchievement( const char *, bool * ) = 0; - virtual bool SetAchievement( const char * ) = 0; - virtual bool ClearAchievement( const char * ) = 0; - virtual bool GetAchievementAndUnlockTime( const char *, bool *, uint32_t * ) = 0; - virtual bool StoreStats( ) = 0; + virtual int8_t RequestCurrentStats( ) = 0; + virtual int8_t GetStat( const char *, int32_t * ) = 0; + virtual int8_t GetStat( const char *, float * ) = 0; + virtual int8_t SetStat( const char *, int32_t ) = 0; + virtual int8_t SetStat( const char *, float ) = 0; + virtual int8_t UpdateAvgRateStat( const char *, float, double ) = 0; + virtual int8_t GetAchievement( const char *, int8_t * ) = 0; + virtual int8_t SetAchievement( const char * ) = 0; + virtual int8_t ClearAchievement( const char * ) = 0; + virtual int8_t GetAchievementAndUnlockTime( const char *, int8_t *, uint32_t * ) = 0; + virtual int8_t StoreStats( ) = 0; virtual int32_t GetAchievementIcon( const char * ) = 0; virtual const char * GetAchievementDisplayAttribute( const char *, const char * ) = 0; - virtual bool IndicateAchievementProgress( const char *, uint32_t, uint32_t ) = 0; + virtual int8_t IndicateAchievementProgress( const char *, uint32_t, uint32_t ) = 0; virtual uint32_t GetNumAchievements( ) = 0; virtual const char * GetAchievementName( uint32_t ) = 0; virtual uint64_t RequestUserStats( CSteamID ) = 0; - virtual bool GetUserStat( CSteamID, const char *, int32_t * ) = 0; - virtual bool GetUserStat( CSteamID, const char *, float * ) = 0; - virtual bool GetUserAchievement( CSteamID, const char *, bool * ) = 0; - virtual bool GetUserAchievementAndUnlockTime( CSteamID, const char *, bool *, uint32_t * ) = 0; - virtual bool ResetAllStats( bool ) = 0; + virtual int8_t GetUserStat( CSteamID, const char *, int32_t * ) = 0; + virtual int8_t GetUserStat( CSteamID, const char *, float * ) = 0; + virtual int8_t GetUserAchievement( CSteamID, const char *, int8_t * ) = 0; + virtual int8_t GetUserAchievementAndUnlockTime( CSteamID, const char *, int8_t *, uint32_t * ) = 0; + virtual int8_t ResetAllStats( int8_t ) = 0; virtual uint64_t FindOrCreateLeaderboard( const char *, uint32_t, uint32_t ) = 0; virtual uint64_t FindLeaderboard( const char * ) = 0; virtual const char * GetLeaderboardName( uint64_t ) = 0; @@ -6005,21 +6005,21 @@ struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 virtual uint32_t GetLeaderboardDisplayType( uint64_t ) = 0; virtual uint64_t DownloadLeaderboardEntries( uint64_t, uint32_t, int32_t, int32_t ) = 0; virtual uint64_t DownloadLeaderboardEntriesForUsers( uint64_t, CSteamID *, int32_t ) = 0; - virtual bool GetDownloadedLeaderboardEntry( uint64_t, int32_t, u_LeaderboardEntry_t_123 *, int32_t *, int32_t ) = 0; + virtual int8_t GetDownloadedLeaderboardEntry( uint64_t, int32_t, u_LeaderboardEntry_t_123 *, int32_t *, int32_t ) = 0; virtual uint64_t UploadLeaderboardScore( uint64_t, uint32_t, int32_t, const int32_t *, int32_t ) = 0; virtual uint64_t AttachLeaderboardUGC( uint64_t, uint64_t ) = 0; virtual uint64_t GetNumberOfCurrentPlayers( ) = 0; virtual uint64_t RequestGlobalAchievementPercentages( ) = 0; - virtual int32_t GetMostAchievedAchievementInfo( char *, uint32_t, float *, bool * ) = 0; - virtual int32_t GetNextMostAchievedAchievementInfo( int32_t, char *, uint32_t, float *, bool * ) = 0; - virtual bool GetAchievementAchievedPercent( const char *, float * ) = 0; + virtual int32_t GetMostAchievedAchievementInfo( char *, uint32_t, float *, int8_t * ) = 0; + virtual int32_t GetNextMostAchievedAchievementInfo( int32_t, char *, uint32_t, float *, int8_t * ) = 0; + virtual int8_t GetAchievementAchievedPercent( const char *, float * ) = 0; virtual uint64_t RequestGlobalStats( int32_t ) = 0; - virtual bool GetGlobalStat( const char *, int64_t * ) = 0; - virtual bool GetGlobalStat( const char *, double * ) = 0; + virtual int8_t GetGlobalStat( const char *, int64_t * ) = 0; + virtual int8_t GetGlobalStat( const char *, double * ) = 0; virtual int32_t GetGlobalStatHistory( const char *, int64_t *, uint32_t ) = 0; virtual int32_t GetGlobalStatHistory( const char *, double *, uint32_t ) = 0; - virtual bool GetAchievementProgressLimits( const char *, int32_t *, int32_t * ) = 0; - virtual bool GetAchievementProgressLimits( const char *, float *, float * ) = 0; + virtual int8_t GetAchievementProgressLimits( const char *, int32_t *, int32_t * ) = 0; + virtual int8_t GetAchievementProgressLimits( const char *, float *, float * ) = 0; #endif /* __cplusplus */ }; @@ -6031,39 +6031,39 @@ struct u_ISteamUtils_SteamUtils010 virtual uint32_t GetConnectedUniverse( ) = 0; virtual uint32_t GetServerRealTime( ) = 0; virtual const char * GetIPCountry( ) = 0; - virtual bool GetImageSize( int32_t, uint32_t *, uint32_t * ) = 0; - virtual bool GetImageRGBA( int32_t, uint8_t *, int32_t ) = 0; - virtual bool GetCSERIPPort( uint32_t *, uint16_t * ) = 0; + virtual int8_t GetImageSize( int32_t, uint32_t *, uint32_t * ) = 0; + virtual int8_t GetImageRGBA( int32_t, uint8_t *, int32_t ) = 0; + virtual int8_t GetCSERIPPort( uint32_t *, uint16_t * ) = 0; virtual uint8_t GetCurrentBatteryPower( ) = 0; virtual uint32_t GetAppID( ) = 0; virtual void SetOverlayNotificationPosition( uint32_t ) = 0; - virtual bool IsAPICallCompleted( uint64_t, bool * ) = 0; + virtual int8_t IsAPICallCompleted( uint64_t, int8_t * ) = 0; virtual uint32_t GetAPICallFailureReason( uint64_t ) = 0; - virtual bool GetAPICallResult( uint64_t, void *, int32_t, int32_t, bool * ) = 0; + virtual int8_t GetAPICallResult( uint64_t, void *, int32_t, int32_t, int8_t * ) = 0; virtual void RunFrame( ) = 0; virtual uint32_t GetIPCCallCount( ) = 0; virtual void SetWarningMessageHook( void (*U_CDECL )(int32_t, const char *) ) = 0; - virtual bool IsOverlayEnabled( ) = 0; - virtual bool BOverlayNeedsPresent( ) = 0; + virtual int8_t IsOverlayEnabled( ) = 0; + virtual int8_t BOverlayNeedsPresent( ) = 0; virtual uint64_t CheckFileSignature( const char * ) = 0; - virtual bool ShowGamepadTextInput( uint32_t, uint32_t, const char *, uint32_t, const char * ) = 0; + virtual int8_t ShowGamepadTextInput( uint32_t, uint32_t, const char *, uint32_t, const char * ) = 0; virtual uint32_t GetEnteredGamepadTextLength( ) = 0; - virtual bool GetEnteredGamepadTextInput( char *, uint32_t ) = 0; + virtual int8_t GetEnteredGamepadTextInput( char *, uint32_t ) = 0; virtual const char * GetSteamUILanguage( ) = 0; - virtual bool IsSteamRunningInVR( ) = 0; + virtual int8_t IsSteamRunningInVR( ) = 0; virtual void SetOverlayNotificationInset( int32_t, int32_t ) = 0; - virtual bool IsSteamInBigPictureMode( ) = 0; + virtual int8_t IsSteamInBigPictureMode( ) = 0; virtual void StartVRDashboard( ) = 0; - virtual bool IsVRHeadsetStreamingEnabled( ) = 0; - virtual void SetVRHeadsetStreamingEnabled( bool ) = 0; - virtual bool IsSteamChinaLauncher( ) = 0; - virtual bool InitFilterText( uint32_t ) = 0; + virtual int8_t IsVRHeadsetStreamingEnabled( ) = 0; + virtual void SetVRHeadsetStreamingEnabled( int8_t ) = 0; + virtual int8_t IsSteamChinaLauncher( ) = 0; + virtual int8_t InitFilterText( uint32_t ) = 0; virtual int32_t FilterText( uint32_t, CSteamID, const char *, char *, uint32_t ) = 0; virtual uint32_t GetIPv6ConnectivityState( uint32_t ) = 0; - virtual bool IsSteamRunningOnSteamDeck( ) = 0; - virtual bool ShowFloatingGamepadTextInput( uint32_t, int32_t, int32_t, int32_t, int32_t ) = 0; - virtual void SetGameLauncherMode( bool ) = 0; - virtual bool DismissFloatingGamepadTextInput( ) = 0; + virtual int8_t IsSteamRunningOnSteamDeck( ) = 0; + virtual int8_t ShowFloatingGamepadTextInput( uint32_t, int32_t, int32_t, int32_t, int32_t ) = 0; + virtual void SetGameLauncherMode( int8_t ) = 0; + virtual int8_t DismissFloatingGamepadTextInput( ) = 0; #endif /* __cplusplus */ }; @@ -6072,9 +6072,9 @@ struct u_ISteamNetworkingMessages_SteamNetworkingMessages002 #ifdef __cplusplus virtual uint32_t SendMessageToUser( const SteamNetworkingIdentity_144 *, const void *, uint32_t, int32_t, int32_t ) = 0; virtual int32_t ReceiveMessagesOnChannel( int32_t, u_SteamNetworkingMessage_t_153a **, int32_t ) = 0; - virtual bool AcceptSessionWithUser( const SteamNetworkingIdentity_144 * ) = 0; - virtual bool CloseSessionWithUser( const SteamNetworkingIdentity_144 * ) = 0; - virtual bool CloseChannelWithUser( const SteamNetworkingIdentity_144 *, int32_t ) = 0; + virtual int8_t AcceptSessionWithUser( const SteamNetworkingIdentity_144 * ) = 0; + virtual int8_t CloseSessionWithUser( const SteamNetworkingIdentity_144 * ) = 0; + virtual int8_t CloseChannelWithUser( const SteamNetworkingIdentity_144 *, int32_t ) = 0; virtual uint32_t GetSessionConnectionInfo( const SteamNetworkingIdentity_144 *, SteamNetConnectionInfo_t_153a *, SteamNetConnectionRealTimeStatus_t * ) = 0; #endif /* __cplusplus */ }; @@ -6087,29 +6087,29 @@ struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 virtual uint32_t CreateListenSocketP2P( int32_t, int32_t, const SteamNetworkingConfigValue_t * ) = 0; virtual uint32_t ConnectP2P( const SteamNetworkingIdentity_144 *, int32_t, int32_t, const SteamNetworkingConfigValue_t * ) = 0; virtual uint32_t AcceptConnection( uint32_t ) = 0; - virtual bool CloseConnection( uint32_t, int32_t, const char *, bool ) = 0; - virtual bool CloseListenSocket( uint32_t ) = 0; - virtual bool SetConnectionUserData( uint32_t, int64_t ) = 0; + virtual int8_t CloseConnection( uint32_t, int32_t, const char *, int8_t ) = 0; + virtual int8_t CloseListenSocket( uint32_t ) = 0; + virtual int8_t SetConnectionUserData( uint32_t, int64_t ) = 0; virtual int64_t GetConnectionUserData( uint32_t ) = 0; virtual void SetConnectionName( uint32_t, const char * ) = 0; - virtual bool GetConnectionName( uint32_t, char *, int32_t ) = 0; + virtual int8_t GetConnectionName( uint32_t, char *, int32_t ) = 0; virtual uint32_t SendMessageToConnection( uint32_t, const void *, uint32_t, int32_t, int64_t * ) = 0; virtual void SendMessages( int32_t, u_SteamNetworkingMessage_t_147 *const *, int64_t * ) = 0; virtual uint32_t FlushMessagesOnConnection( uint32_t ) = 0; virtual int32_t ReceiveMessagesOnConnection( uint32_t, u_SteamNetworkingMessage_t_147 **, int32_t ) = 0; - virtual bool GetConnectionInfo( uint32_t, SteamNetConnectionInfo_t_144 * ) = 0; - virtual bool GetQuickConnectionStatus( uint32_t, SteamNetworkingQuickConnectionStatus * ) = 0; + virtual int8_t GetConnectionInfo( uint32_t, SteamNetConnectionInfo_t_144 * ) = 0; + virtual int8_t GetQuickConnectionStatus( uint32_t, SteamNetworkingQuickConnectionStatus * ) = 0; virtual int32_t GetDetailedConnectionStatus( uint32_t, char *, int32_t ) = 0; - virtual bool GetListenSocketAddress( uint32_t, SteamNetworkingIPAddr * ) = 0; - virtual bool CreateSocketPair( uint32_t *, uint32_t *, bool, const SteamNetworkingIdentity_144 *, const SteamNetworkingIdentity_144 * ) = 0; - virtual bool GetIdentity( SteamNetworkingIdentity_144 * ) = 0; + virtual int8_t GetListenSocketAddress( uint32_t, SteamNetworkingIPAddr * ) = 0; + virtual int8_t CreateSocketPair( uint32_t *, uint32_t *, int8_t, const SteamNetworkingIdentity_144 *, const SteamNetworkingIdentity_144 * ) = 0; + virtual int8_t GetIdentity( SteamNetworkingIdentity_144 * ) = 0; virtual uint32_t InitAuthentication( ) = 0; virtual uint32_t GetAuthenticationStatus( SteamNetAuthenticationStatus_t * ) = 0; virtual uint32_t CreatePollGroup( ) = 0; - virtual bool DestroyPollGroup( uint32_t ) = 0; - virtual bool SetConnectionPollGroup( uint32_t, uint32_t ) = 0; + virtual int8_t DestroyPollGroup( uint32_t ) = 0; + virtual int8_t SetConnectionPollGroup( uint32_t, uint32_t ) = 0; virtual int32_t ReceiveMessagesOnPollGroup( uint32_t, u_SteamNetworkingMessage_t_147 **, int32_t ) = 0; - virtual bool ReceivedRelayAuthTicket( const void *, int32_t, SteamDatagramRelayAuthTicket * ) = 0; + virtual int8_t ReceivedRelayAuthTicket( const void *, int32_t, SteamDatagramRelayAuthTicket * ) = 0; virtual int32_t FindRelayAuthTicketForServer( const SteamNetworkingIdentity_144 *, int32_t, SteamDatagramRelayAuthTicket * ) = 0; virtual uint32_t ConnectToHostedDedicatedServer( const SteamNetworkingIdentity_144 *, int32_t, int32_t, const SteamNetworkingConfigValue_t * ) = 0; virtual uint16_t GetHostedDedicatedServerPort( ) = 0; @@ -6118,9 +6118,9 @@ struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 virtual uint32_t CreateHostedDedicatedServerListenSocket( int32_t, int32_t, const SteamNetworkingConfigValue_t * ) = 0; virtual uint32_t GetGameCoordinatorServerLogin( SteamDatagramGameCoordinatorServerLogin *, int32_t *, void * ) = 0; virtual uint32_t ConnectP2PCustomSignaling( void /*ISteamNetworkingConnectionSignaling*/ *, const SteamNetworkingIdentity_144 *, int32_t, int32_t, const SteamNetworkingConfigValue_t * ) = 0; - virtual bool ReceivedP2PCustomSignal( const void *, int32_t, void /*ISteamNetworkingSignalingRecvContext*/ * ) = 0; - virtual bool GetCertificateRequest( int32_t *, void *, char (*)[1024] ) = 0; - virtual bool SetCertificate( const void *, int32_t, char (*)[1024] ) = 0; + virtual int8_t ReceivedP2PCustomSignal( const void *, int32_t, void /*ISteamNetworkingSignalingRecvContext*/ * ) = 0; + virtual int8_t GetCertificateRequest( int32_t *, void *, char (*)[1024] ) = 0; + virtual int8_t SetCertificate( const void *, int32_t, char (*)[1024] ) = 0; virtual void RunCallbacks( ) = 0; virtual ~u_ISteamNetworkingSockets_SteamNetworkingSockets009( ) = 0; #endif /* __cplusplus */ @@ -6129,8 +6129,8 @@ struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 struct u_ISteamInput_SteamInput002 { #ifdef __cplusplus - virtual bool Init( ) = 0; - virtual bool Shutdown( ) = 0; + virtual int8_t Init( ) = 0; + virtual int8_t Shutdown( ) = 0; virtual void RunFrame( ) = 0; virtual int32_t GetConnectedControllers( uint64_t * ) = 0; virtual uint64_t GetActionSetHandle( const char * ) = 0; @@ -6154,7 +6154,7 @@ struct u_ISteamInput_SteamInput002 virtual void SetLEDColor( uint64_t, uint8_t, uint8_t, uint8_t, uint32_t ) = 0; virtual void TriggerHapticPulse( uint64_t, uint32_t, uint16_t ) = 0; virtual void TriggerRepeatedHapticPulse( uint64_t, uint32_t, uint16_t, uint16_t, uint16_t, uint32_t ) = 0; - virtual bool ShowBindingPanel( uint64_t ) = 0; + virtual int8_t ShowBindingPanel( uint64_t ) = 0; virtual uint32_t GetInputTypeForHandle( uint64_t ) = 0; virtual uint64_t GetControllerForGamepadIndex( int32_t ) = 0; virtual int32_t GetGamepadIndexForController( uint64_t ) = 0; @@ -6162,7 +6162,7 @@ struct u_ISteamInput_SteamInput002 virtual const char * GetGlyphForXboxOrigin( uint32_t ) = 0; virtual uint32_t GetActionOriginFromXboxOrigin( uint64_t, uint32_t ) = 0; virtual uint32_t TranslateActionOrigin( uint32_t, uint32_t ) = 0; - virtual bool GetDeviceBindingRevision( uint64_t, int32_t *, int32_t * ) = 0; + virtual int8_t GetDeviceBindingRevision( uint64_t, int32_t *, int32_t * ) = 0; virtual uint32_t GetRemotePlaySessionID( uint64_t ) = 0; #endif /* __cplusplus */ }; @@ -6170,8 +6170,8 @@ struct u_ISteamInput_SteamInput002 struct u_ISteamController_SteamController008 { #ifdef __cplusplus - virtual bool Init( ) = 0; - virtual bool Shutdown( ) = 0; + virtual int8_t Init( ) = 0; + virtual int8_t Shutdown( ) = 0; virtual void RunFrame( ) = 0; virtual int32_t GetConnectedControllers( uint64_t * ) = 0; virtual uint64_t GetActionSetHandle( const char * ) = 0; @@ -6195,7 +6195,7 @@ struct u_ISteamController_SteamController008 virtual void TriggerRepeatedHapticPulse( uint64_t, uint32_t, uint16_t, uint16_t, uint16_t, uint32_t ) = 0; virtual void TriggerVibration( uint64_t, uint16_t, uint16_t ) = 0; virtual void SetLEDColor( uint64_t, uint8_t, uint8_t, uint8_t, uint32_t ) = 0; - virtual bool ShowBindingPanel( uint64_t ) = 0; + virtual int8_t ShowBindingPanel( uint64_t ) = 0; virtual uint32_t GetInputTypeForHandle( uint64_t ) = 0; virtual uint64_t GetControllerForGamepadIndex( int32_t ) = 0; virtual int32_t GetGamepadIndexForController( uint64_t ) = 0; @@ -6203,7 +6203,7 @@ struct u_ISteamController_SteamController008 virtual const char * GetGlyphForXboxOrigin( uint32_t ) = 0; virtual uint32_t GetActionOriginFromXboxOrigin( uint64_t, uint32_t ) = 0; virtual uint32_t TranslateActionOrigin( uint32_t, uint32_t ) = 0; - virtual bool GetControllerBindingRevision( uint64_t, int32_t *, int32_t * ) = 0; + virtual int8_t GetControllerBindingRevision( uint64_t, int32_t *, int32_t * ) = 0; #endif /* __cplusplus */ }; @@ -6215,61 +6215,61 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 virtual uint64_t CreateQueryAllUGCRequest( uint32_t, uint32_t, uint32_t, uint32_t, const char * ) = 0; virtual uint64_t CreateQueryUGCDetailsRequest( uint64_t *, uint32_t ) = 0; virtual uint64_t SendQueryUGCRequest( uint64_t ) = 0; - virtual bool GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; + virtual int8_t GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; virtual uint32_t GetQueryUGCNumTags( uint64_t, uint32_t ) = 0; - virtual bool GetQueryUGCTag( uint64_t, uint32_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCTagDisplayName( uint64_t, uint32_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCPreviewURL( uint64_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCMetadata( uint64_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCChildren( uint64_t, uint32_t, uint64_t *, uint32_t ) = 0; - virtual bool GetQueryUGCStatistic( uint64_t, uint32_t, uint32_t, uint64_t * ) = 0; + virtual int8_t GetQueryUGCTag( uint64_t, uint32_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCTagDisplayName( uint64_t, uint32_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCPreviewURL( uint64_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCMetadata( uint64_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCChildren( uint64_t, uint32_t, uint64_t *, uint32_t ) = 0; + virtual int8_t GetQueryUGCStatistic( uint64_t, uint32_t, uint32_t, uint64_t * ) = 0; virtual uint32_t GetQueryUGCNumAdditionalPreviews( uint64_t, uint32_t ) = 0; - virtual bool GetQueryUGCAdditionalPreview( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t, uint32_t * ) = 0; + virtual int8_t GetQueryUGCAdditionalPreview( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t, uint32_t * ) = 0; virtual uint32_t GetQueryUGCNumKeyValueTags( uint64_t, uint32_t ) = 0; - virtual bool GetQueryUGCKeyValueTag( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCKeyValueTag( uint64_t, uint32_t, const char *, char *, uint32_t ) = 0; - virtual bool ReleaseQueryUGCRequest( uint64_t ) = 0; - virtual bool AddRequiredTag( uint64_t, const char * ) = 0; - virtual bool AddRequiredTagGroup( uint64_t, const u_SteamParamStringArray_t * ) = 0; - virtual bool AddExcludedTag( uint64_t, const char * ) = 0; - virtual bool SetReturnOnlyIDs( uint64_t, bool ) = 0; - virtual bool SetReturnKeyValueTags( uint64_t, bool ) = 0; - virtual bool SetReturnLongDescription( uint64_t, bool ) = 0; - virtual bool SetReturnMetadata( uint64_t, bool ) = 0; - virtual bool SetReturnChildren( uint64_t, bool ) = 0; - virtual bool SetReturnAdditionalPreviews( uint64_t, bool ) = 0; - virtual bool SetReturnTotalOnly( uint64_t, bool ) = 0; - virtual bool SetReturnPlaytimeStats( uint64_t, uint32_t ) = 0; - virtual bool SetLanguage( uint64_t, const char * ) = 0; - virtual bool SetAllowCachedResponse( uint64_t, uint32_t ) = 0; - virtual bool SetCloudFileNameFilter( uint64_t, const char * ) = 0; - virtual bool SetMatchAnyTag( uint64_t, bool ) = 0; - virtual bool SetSearchText( uint64_t, const char * ) = 0; - virtual bool SetRankedByTrendDays( uint64_t, uint32_t ) = 0; - virtual bool AddRequiredKeyValueTag( uint64_t, const char *, const char * ) = 0; + virtual int8_t GetQueryUGCKeyValueTag( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCKeyValueTag( uint64_t, uint32_t, const char *, char *, uint32_t ) = 0; + virtual int8_t ReleaseQueryUGCRequest( uint64_t ) = 0; + virtual int8_t AddRequiredTag( uint64_t, const char * ) = 0; + virtual int8_t AddRequiredTagGroup( uint64_t, const u_SteamParamStringArray_t * ) = 0; + virtual int8_t AddExcludedTag( uint64_t, const char * ) = 0; + virtual int8_t SetReturnOnlyIDs( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnKeyValueTags( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnLongDescription( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnMetadata( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnChildren( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnAdditionalPreviews( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnTotalOnly( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnPlaytimeStats( uint64_t, uint32_t ) = 0; + virtual int8_t SetLanguage( uint64_t, const char * ) = 0; + virtual int8_t SetAllowCachedResponse( uint64_t, uint32_t ) = 0; + virtual int8_t SetCloudFileNameFilter( uint64_t, const char * ) = 0; + virtual int8_t SetMatchAnyTag( uint64_t, int8_t ) = 0; + virtual int8_t SetSearchText( uint64_t, const char * ) = 0; + virtual int8_t SetRankedByTrendDays( uint64_t, uint32_t ) = 0; + virtual int8_t AddRequiredKeyValueTag( uint64_t, const char *, const char * ) = 0; virtual uint64_t RequestUGCDetails( uint64_t, uint32_t ) = 0; virtual uint64_t CreateItem( uint32_t, uint32_t ) = 0; virtual uint64_t StartItemUpdate( uint32_t, uint64_t ) = 0; - virtual bool SetItemTitle( uint64_t, const char * ) = 0; - virtual bool SetItemDescription( uint64_t, const char * ) = 0; - virtual bool SetItemUpdateLanguage( uint64_t, const char * ) = 0; - virtual bool SetItemMetadata( uint64_t, const char * ) = 0; - virtual bool SetItemVisibility( uint64_t, uint32_t ) = 0; - virtual bool SetItemTags( uint64_t, const u_SteamParamStringArray_t * ) = 0; - virtual bool SetItemContent( uint64_t, const char * ) = 0; - virtual bool SetItemPreview( uint64_t, const char * ) = 0; - virtual bool SetAllowLegacyUpload( uint64_t, bool ) = 0; - virtual bool RemoveAllItemKeyValueTags( uint64_t ) = 0; - virtual bool RemoveItemKeyValueTags( uint64_t, const char * ) = 0; - virtual bool AddItemKeyValueTag( uint64_t, const char *, const char * ) = 0; - virtual bool AddItemPreviewFile( uint64_t, const char *, uint32_t ) = 0; - virtual bool AddItemPreviewVideo( uint64_t, const char * ) = 0; - virtual bool UpdateItemPreviewFile( uint64_t, uint32_t, const char * ) = 0; - virtual bool UpdateItemPreviewVideo( uint64_t, uint32_t, const char * ) = 0; - virtual bool RemoveItemPreview( uint64_t, uint32_t ) = 0; + virtual int8_t SetItemTitle( uint64_t, const char * ) = 0; + virtual int8_t SetItemDescription( uint64_t, const char * ) = 0; + virtual int8_t SetItemUpdateLanguage( uint64_t, const char * ) = 0; + virtual int8_t SetItemMetadata( uint64_t, const char * ) = 0; + virtual int8_t SetItemVisibility( uint64_t, uint32_t ) = 0; + virtual int8_t SetItemTags( uint64_t, const u_SteamParamStringArray_t * ) = 0; + virtual int8_t SetItemContent( uint64_t, const char * ) = 0; + virtual int8_t SetItemPreview( uint64_t, const char * ) = 0; + virtual int8_t SetAllowLegacyUpload( uint64_t, int8_t ) = 0; + virtual int8_t RemoveAllItemKeyValueTags( uint64_t ) = 0; + virtual int8_t RemoveItemKeyValueTags( uint64_t, const char * ) = 0; + virtual int8_t AddItemKeyValueTag( uint64_t, const char *, const char * ) = 0; + virtual int8_t AddItemPreviewFile( uint64_t, const char *, uint32_t ) = 0; + virtual int8_t AddItemPreviewVideo( uint64_t, const char * ) = 0; + virtual int8_t UpdateItemPreviewFile( uint64_t, uint32_t, const char * ) = 0; + virtual int8_t UpdateItemPreviewVideo( uint64_t, uint32_t, const char * ) = 0; + virtual int8_t RemoveItemPreview( uint64_t, uint32_t ) = 0; virtual uint64_t SubmitItemUpdate( uint64_t, const char * ) = 0; virtual uint32_t GetItemUpdateProgress( uint64_t, uint64_t *, uint64_t * ) = 0; - virtual uint64_t SetUserItemVote( uint64_t, bool ) = 0; + virtual uint64_t SetUserItemVote( uint64_t, int8_t ) = 0; virtual uint64_t GetUserItemVote( uint64_t ) = 0; virtual uint64_t AddItemToFavorites( uint32_t, uint64_t ) = 0; virtual uint64_t RemoveItemFromFavorites( uint32_t, uint64_t ) = 0; @@ -6278,11 +6278,11 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 virtual uint32_t GetNumSubscribedItems( ) = 0; virtual uint32_t GetSubscribedItems( uint64_t *, uint32_t ) = 0; virtual uint32_t GetItemState( uint64_t ) = 0; - virtual bool GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, uint32_t * ) = 0; - virtual bool GetItemDownloadInfo( uint64_t, uint64_t *, uint64_t * ) = 0; - virtual bool DownloadItem( uint64_t, bool ) = 0; - virtual bool BInitWorkshopForGameServer( uint32_t, const char * ) = 0; - virtual void SuspendDownloads( bool ) = 0; + virtual int8_t GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, uint32_t * ) = 0; + virtual int8_t GetItemDownloadInfo( uint64_t, uint64_t *, uint64_t * ) = 0; + virtual int8_t DownloadItem( uint64_t, int8_t ) = 0; + virtual int8_t BInitWorkshopForGameServer( uint32_t, const char * ) = 0; + virtual void SuspendDownloads( int8_t ) = 0; virtual uint64_t StartPlaytimeTracking( uint64_t *, uint32_t ) = 0; virtual uint64_t StopPlaytimeTracking( uint64_t *, uint32_t ) = 0; virtual uint64_t StopPlaytimeTrackingForAllItems( ) = 0; @@ -6292,7 +6292,7 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 virtual uint64_t RemoveAppDependency( uint64_t, uint32_t ) = 0; virtual uint64_t GetAppDependencies( uint64_t ) = 0; virtual uint64_t DeleteItem( uint64_t ) = 0; - virtual bool ShowWorkshopEULA( ) = 0; + virtual int8_t ShowWorkshopEULA( ) = 0; virtual uint64_t GetWorkshopEULAStatus( ) = 0; #endif /* __cplusplus */ }; @@ -6300,44 +6300,44 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 { #ifdef __cplusplus - virtual bool FileWrite( const char *, const void *, int32_t ) = 0; + virtual int8_t FileWrite( const char *, const void *, int32_t ) = 0; virtual int32_t FileRead( const char *, void *, int32_t ) = 0; virtual uint64_t FileWriteAsync( const char *, const void *, uint32_t ) = 0; virtual uint64_t FileReadAsync( const char *, uint32_t, uint32_t ) = 0; - virtual bool FileReadAsyncComplete( uint64_t, void *, uint32_t ) = 0; - virtual bool FileForget( const char * ) = 0; - virtual bool FileDelete( const char * ) = 0; + virtual int8_t FileReadAsyncComplete( uint64_t, void *, uint32_t ) = 0; + virtual int8_t FileForget( const char * ) = 0; + virtual int8_t FileDelete( const char * ) = 0; virtual uint64_t FileShare( const char * ) = 0; - virtual bool SetSyncPlatforms( const char *, uint32_t ) = 0; + virtual int8_t SetSyncPlatforms( const char *, uint32_t ) = 0; virtual uint64_t FileWriteStreamOpen( const char * ) = 0; - virtual bool FileWriteStreamWriteChunk( uint64_t, const void *, int32_t ) = 0; - virtual bool FileWriteStreamClose( uint64_t ) = 0; - virtual bool FileWriteStreamCancel( uint64_t ) = 0; - virtual bool FileExists( const char * ) = 0; - virtual bool FilePersisted( const char * ) = 0; + virtual int8_t FileWriteStreamWriteChunk( uint64_t, const void *, int32_t ) = 0; + virtual int8_t FileWriteStreamClose( uint64_t ) = 0; + virtual int8_t FileWriteStreamCancel( uint64_t ) = 0; + virtual int8_t FileExists( const char * ) = 0; + virtual int8_t FilePersisted( const char * ) = 0; virtual int32_t GetFileSize( const char * ) = 0; virtual int64_t GetFileTimestamp( const char * ) = 0; virtual uint32_t GetSyncPlatforms( const char * ) = 0; virtual int32_t GetFileCount( ) = 0; virtual const char * GetFileNameAndSize( int32_t, int32_t * ) = 0; - virtual bool GetQuota( uint64_t *, uint64_t * ) = 0; - virtual bool IsCloudEnabledForAccount( ) = 0; - virtual bool IsCloudEnabledForApp( ) = 0; - virtual void SetCloudEnabledForApp( bool ) = 0; + virtual int8_t GetQuota( uint64_t *, uint64_t * ) = 0; + virtual int8_t IsCloudEnabledForAccount( ) = 0; + virtual int8_t IsCloudEnabledForApp( ) = 0; + virtual void SetCloudEnabledForApp( int8_t ) = 0; virtual uint64_t UGCDownload( uint64_t, uint32_t ) = 0; - virtual bool GetUGCDownloadProgress( uint64_t, int32_t *, int32_t * ) = 0; - virtual bool GetUGCDetails( uint64_t, uint32_t *, char **, int32_t *, CSteamID * ) = 0; + virtual int8_t GetUGCDownloadProgress( uint64_t, int32_t *, int32_t * ) = 0; + virtual int8_t GetUGCDetails( uint64_t, uint32_t *, char **, int32_t *, CSteamID * ) = 0; virtual int32_t UGCRead( uint64_t, void *, int32_t, uint32_t, uint32_t ) = 0; virtual int32_t GetCachedUGCCount( ) = 0; virtual uint64_t GetCachedUGCHandle( int32_t ) = 0; virtual uint64_t PublishWorkshopFile( const char *, const char *, uint32_t, const char *, const char *, uint32_t, u_SteamParamStringArray_t *, uint32_t ) = 0; virtual uint64_t CreatePublishedFileUpdateRequest( uint64_t ) = 0; - virtual bool UpdatePublishedFileFile( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFilePreviewFile( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFileTitle( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFileDescription( uint64_t, const char * ) = 0; - virtual bool UpdatePublishedFileVisibility( uint64_t, uint32_t ) = 0; - virtual bool UpdatePublishedFileTags( uint64_t, u_SteamParamStringArray_t * ) = 0; + virtual int8_t UpdatePublishedFileFile( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFilePreviewFile( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileTitle( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileDescription( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileVisibility( uint64_t, uint32_t ) = 0; + virtual int8_t UpdatePublishedFileTags( uint64_t, u_SteamParamStringArray_t * ) = 0; virtual uint64_t CommitPublishedFileUpdate( uint64_t ) = 0; virtual uint64_t GetPublishedFileDetails( uint64_t, uint32_t ) = 0; virtual uint64_t DeletePublishedFile( uint64_t ) = 0; @@ -6345,9 +6345,9 @@ struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 virtual uint64_t SubscribePublishedFile( uint64_t ) = 0; virtual uint64_t EnumerateUserSubscribedFiles( uint32_t ) = 0; virtual uint64_t UnsubscribePublishedFile( uint64_t ) = 0; - virtual bool UpdatePublishedFileSetChangeDescription( uint64_t, const char * ) = 0; + virtual int8_t UpdatePublishedFileSetChangeDescription( uint64_t, const char * ) = 0; virtual uint64_t GetPublishedItemVoteDetails( uint64_t ) = 0; - virtual uint64_t UpdateUserPublishedItemVote( uint64_t, bool ) = 0; + virtual uint64_t UpdateUserPublishedItemVote( uint64_t, int8_t ) = 0; virtual uint64_t GetUserPublishedItemVoteDetails( uint64_t ) = 0; virtual uint64_t EnumerateUserSharedWorkshopFiles( CSteamID, uint32_t, u_SteamParamStringArray_t *, u_SteamParamStringArray_t * ) = 0; virtual uint64_t PublishVideo( uint32_t, const char *, const char *, const char *, uint32_t, const char *, const char *, uint32_t, u_SteamParamStringArray_t * ) = 0; @@ -6357,20 +6357,20 @@ struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 virtual uint64_t UGCDownloadToLocation( uint64_t, const char *, uint32_t ) = 0; virtual int32_t GetLocalFileChangeCount( ) = 0; virtual const char * GetLocalFileChange( int32_t, uint32_t *, uint32_t * ) = 0; - virtual bool BeginFileWriteBatch( ) = 0; - virtual bool EndFileWriteBatch( ) = 0; + virtual int8_t BeginFileWriteBatch( ) = 0; + virtual int8_t EndFileWriteBatch( ) = 0; #endif /* __cplusplus */ }; struct u_ISteamInput_SteamInput005 { #ifdef __cplusplus - virtual bool Init( bool ) = 0; - virtual bool Shutdown( ) = 0; - virtual bool SetInputActionManifestFilePath( const char * ) = 0; - virtual void RunFrame( bool ) = 0; - virtual bool BWaitForData( bool, uint32_t ) = 0; - virtual bool BNewDataAvailable( ) = 0; + virtual int8_t Init( int8_t ) = 0; + virtual int8_t Shutdown( ) = 0; + virtual int8_t SetInputActionManifestFilePath( const char * ) = 0; + virtual void RunFrame( int8_t ) = 0; + virtual int8_t BWaitForData( int8_t, uint32_t ) = 0; + virtual int8_t BNewDataAvailable( ) = 0; virtual int32_t GetConnectedControllers( uint64_t * ) = 0; virtual void EnableDeviceCallbacks( ) = 0; virtual void EnableActionEventCallbacks( void (*U_STDCALL )(SteamInputActionEvent_t *) ) = 0; @@ -6401,7 +6401,7 @@ struct u_ISteamInput_SteamInput005 virtual void SetLEDColor( uint64_t, uint8_t, uint8_t, uint8_t, uint32_t ) = 0; virtual void Legacy_TriggerHapticPulse( uint64_t, uint32_t, uint16_t ) = 0; virtual void Legacy_TriggerRepeatedHapticPulse( uint64_t, uint32_t, uint16_t, uint16_t, uint16_t, uint32_t ) = 0; - virtual bool ShowBindingPanel( uint64_t ) = 0; + virtual int8_t ShowBindingPanel( uint64_t ) = 0; virtual uint32_t GetInputTypeForHandle( uint64_t ) = 0; virtual uint64_t GetControllerForGamepadIndex( int32_t ) = 0; virtual int32_t GetGamepadIndexForController( uint64_t ) = 0; @@ -6409,7 +6409,7 @@ struct u_ISteamInput_SteamInput005 virtual const char * GetGlyphForXboxOrigin( uint32_t ) = 0; virtual uint32_t GetActionOriginFromXboxOrigin( uint64_t, uint32_t ) = 0; virtual uint32_t TranslateActionOrigin( uint32_t, uint32_t ) = 0; - virtual bool GetDeviceBindingRevision( uint64_t, int32_t *, int32_t * ) = 0; + virtual int8_t GetDeviceBindingRevision( uint64_t, int32_t *, int32_t * ) = 0; virtual uint32_t GetRemotePlaySessionID( uint64_t ) = 0; virtual uint16_t GetSessionInputConfigurationSettings( ) = 0; #endif /* __cplusplus */ @@ -6418,23 +6418,23 @@ struct u_ISteamInput_SteamInput005 struct u_ISteamGameServer_SteamGameServer014 { #ifdef __cplusplus - virtual bool InitGameServer( uint32_t, uint16_t, uint16_t, uint32_t, uint32_t, const char * ) = 0; + virtual int8_t InitGameServer( uint32_t, uint16_t, uint16_t, uint32_t, uint32_t, const char * ) = 0; virtual void SetProduct( const char * ) = 0; virtual void SetGameDescription( const char * ) = 0; virtual void SetModDir( const char * ) = 0; - virtual void SetDedicatedServer( bool ) = 0; + virtual void SetDedicatedServer( int8_t ) = 0; virtual void LogOn( const char * ) = 0; virtual void LogOnAnonymous( ) = 0; virtual void LogOff( ) = 0; - virtual bool BLoggedOn( ) = 0; - virtual bool BSecure( ) = 0; + virtual int8_t BLoggedOn( ) = 0; + virtual int8_t BSecure( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual bool WasRestartRequested( ) = 0; + virtual int8_t WasRestartRequested( ) = 0; virtual void SetMaxPlayerCount( int32_t ) = 0; virtual void SetBotPlayerCount( int32_t ) = 0; virtual void SetServerName( const char * ) = 0; virtual void SetMapName( const char * ) = 0; - virtual void SetPasswordProtected( bool ) = 0; + virtual void SetPasswordProtected( int8_t ) = 0; virtual void SetSpectatorPort( uint16_t ) = 0; virtual void SetSpectatorServerName( const char * ) = 0; virtual void ClearAllKeyValues( ) = 0; @@ -6442,24 +6442,24 @@ struct u_ISteamGameServer_SteamGameServer014 virtual void SetGameTags( const char * ) = 0; virtual void SetGameData( const char * ) = 0; virtual void SetRegion( const char * ) = 0; - virtual void SetAdvertiseServerActive( bool ) = 0; + virtual void SetAdvertiseServerActive( int8_t ) = 0; virtual uint32_t GetAuthSessionTicket( void *, int32_t, uint32_t * ) = 0; virtual uint32_t BeginAuthSession( const void *, int32_t, CSteamID ) = 0; virtual void EndAuthSession( CSteamID ) = 0; virtual void CancelAuthTicket( uint32_t ) = 0; virtual uint32_t UserHasLicenseForApp( CSteamID, uint32_t ) = 0; - virtual bool RequestUserGroupStatus( CSteamID, CSteamID ) = 0; + virtual int8_t RequestUserGroupStatus( CSteamID, CSteamID ) = 0; virtual void GetGameplayStats( ) = 0; virtual uint64_t GetServerReputation( ) = 0; virtual SteamIPAddress_t GetPublicIP( ) = 0; - virtual bool HandleIncomingPacket( const void *, int32_t, uint32_t, uint16_t ) = 0; + virtual int8_t HandleIncomingPacket( const void *, int32_t, uint32_t, uint16_t ) = 0; virtual int32_t GetNextOutgoingPacket( void *, int32_t, uint32_t *, uint16_t * ) = 0; virtual uint64_t AssociateWithClan( CSteamID ) = 0; virtual uint64_t ComputeNewPlayerCompatibility( CSteamID ) = 0; - virtual bool SendUserConnectAndAuthenticate_DEPRECATED( uint32_t, const void *, uint32_t, CSteamID * ) = 0; + virtual int8_t SendUserConnectAndAuthenticate_DEPRECATED( uint32_t, const void *, uint32_t, CSteamID * ) = 0; virtual CSteamID CreateUnauthenticatedUserConnection( ) = 0; virtual void SendUserDisconnect_DEPRECATED( CSteamID ) = 0; - virtual bool BUpdateUserData( CSteamID, const char *, uint32_t ) = 0; + virtual int8_t BUpdateUserData( CSteamID, const char *, uint32_t ) = 0; virtual void SetMasterServerHeartbeatInterval_DEPRECATED( int32_t ) = 0; virtual void ForceMasterServerHeartbeat_DEPRECATED( ) = 0; #endif /* __cplusplus */ @@ -6468,12 +6468,12 @@ struct u_ISteamGameServer_SteamGameServer014 struct u_ISteamInput_SteamInput006 { #ifdef __cplusplus - virtual bool Init( bool ) = 0; - virtual bool Shutdown( ) = 0; - virtual bool SetInputActionManifestFilePath( const char * ) = 0; - virtual void RunFrame( bool ) = 0; - virtual bool BWaitForData( bool, uint32_t ) = 0; - virtual bool BNewDataAvailable( ) = 0; + virtual int8_t Init( int8_t ) = 0; + virtual int8_t Shutdown( ) = 0; + virtual int8_t SetInputActionManifestFilePath( const char * ) = 0; + virtual void RunFrame( int8_t ) = 0; + virtual int8_t BWaitForData( int8_t, uint32_t ) = 0; + virtual int8_t BNewDataAvailable( ) = 0; virtual int32_t GetConnectedControllers( uint64_t * ) = 0; virtual void EnableDeviceCallbacks( ) = 0; virtual void EnableActionEventCallbacks( void (*U_STDCALL )(SteamInputActionEvent_t *) ) = 0; @@ -6504,7 +6504,7 @@ struct u_ISteamInput_SteamInput006 virtual void SetLEDColor( uint64_t, uint8_t, uint8_t, uint8_t, uint32_t ) = 0; virtual void Legacy_TriggerHapticPulse( uint64_t, uint32_t, uint16_t ) = 0; virtual void Legacy_TriggerRepeatedHapticPulse( uint64_t, uint32_t, uint16_t, uint16_t, uint16_t, uint32_t ) = 0; - virtual bool ShowBindingPanel( uint64_t ) = 0; + virtual int8_t ShowBindingPanel( uint64_t ) = 0; virtual uint32_t GetInputTypeForHandle( uint64_t ) = 0; virtual uint64_t GetControllerForGamepadIndex( int32_t ) = 0; virtual int32_t GetGamepadIndexForController( uint64_t ) = 0; @@ -6512,7 +6512,7 @@ struct u_ISteamInput_SteamInput006 virtual const char * GetGlyphForXboxOrigin( uint32_t ) = 0; virtual uint32_t GetActionOriginFromXboxOrigin( uint64_t, uint32_t ) = 0; virtual uint32_t TranslateActionOrigin( uint32_t, uint32_t ) = 0; - virtual bool GetDeviceBindingRevision( uint64_t, int32_t *, int32_t * ) = 0; + virtual int8_t GetDeviceBindingRevision( uint64_t, int32_t *, int32_t * ) = 0; virtual uint32_t GetRemotePlaySessionID( uint64_t ) = 0; virtual uint16_t GetSessionInputConfigurationSettings( ) = 0; virtual void SetDualSenseTriggerEffect( uint64_t, const ScePadTriggerEffectParam * ) = 0; @@ -6527,63 +6527,63 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 virtual uint64_t CreateQueryAllUGCRequest( uint32_t, uint32_t, uint32_t, uint32_t, const char * ) = 0; virtual uint64_t CreateQueryUGCDetailsRequest( uint64_t *, uint32_t ) = 0; virtual uint64_t SendQueryUGCRequest( uint64_t ) = 0; - virtual bool GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; + virtual int8_t GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; virtual uint32_t GetQueryUGCNumTags( uint64_t, uint32_t ) = 0; - virtual bool GetQueryUGCTag( uint64_t, uint32_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCTagDisplayName( uint64_t, uint32_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCPreviewURL( uint64_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCMetadata( uint64_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCChildren( uint64_t, uint32_t, uint64_t *, uint32_t ) = 0; - virtual bool GetQueryUGCStatistic( uint64_t, uint32_t, uint32_t, uint64_t * ) = 0; + virtual int8_t GetQueryUGCTag( uint64_t, uint32_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCTagDisplayName( uint64_t, uint32_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCPreviewURL( uint64_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCMetadata( uint64_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCChildren( uint64_t, uint32_t, uint64_t *, uint32_t ) = 0; + virtual int8_t GetQueryUGCStatistic( uint64_t, uint32_t, uint32_t, uint64_t * ) = 0; virtual uint32_t GetQueryUGCNumAdditionalPreviews( uint64_t, uint32_t ) = 0; - virtual bool GetQueryUGCAdditionalPreview( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t, uint32_t * ) = 0; + virtual int8_t GetQueryUGCAdditionalPreview( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t, uint32_t * ) = 0; virtual uint32_t GetQueryUGCNumKeyValueTags( uint64_t, uint32_t ) = 0; - virtual bool GetQueryUGCKeyValueTag( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCKeyValueTag( uint64_t, uint32_t, const char *, char *, uint32_t ) = 0; - virtual bool ReleaseQueryUGCRequest( uint64_t ) = 0; - virtual bool AddRequiredTag( uint64_t, const char * ) = 0; - virtual bool AddRequiredTagGroup( uint64_t, const u_SteamParamStringArray_t * ) = 0; - virtual bool AddExcludedTag( uint64_t, const char * ) = 0; - virtual bool SetReturnOnlyIDs( uint64_t, bool ) = 0; - virtual bool SetReturnKeyValueTags( uint64_t, bool ) = 0; - virtual bool SetReturnLongDescription( uint64_t, bool ) = 0; - virtual bool SetReturnMetadata( uint64_t, bool ) = 0; - virtual bool SetReturnChildren( uint64_t, bool ) = 0; - virtual bool SetReturnAdditionalPreviews( uint64_t, bool ) = 0; - virtual bool SetReturnTotalOnly( uint64_t, bool ) = 0; - virtual bool SetReturnPlaytimeStats( uint64_t, uint32_t ) = 0; - virtual bool SetLanguage( uint64_t, const char * ) = 0; - virtual bool SetAllowCachedResponse( uint64_t, uint32_t ) = 0; - virtual bool SetCloudFileNameFilter( uint64_t, const char * ) = 0; - virtual bool SetMatchAnyTag( uint64_t, bool ) = 0; - virtual bool SetSearchText( uint64_t, const char * ) = 0; - virtual bool SetRankedByTrendDays( uint64_t, uint32_t ) = 0; - virtual bool SetTimeCreatedDateRange( uint64_t, uint32_t, uint32_t ) = 0; - virtual bool SetTimeUpdatedDateRange( uint64_t, uint32_t, uint32_t ) = 0; - virtual bool AddRequiredKeyValueTag( uint64_t, const char *, const char * ) = 0; + virtual int8_t GetQueryUGCKeyValueTag( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCKeyValueTag( uint64_t, uint32_t, const char *, char *, uint32_t ) = 0; + virtual int8_t ReleaseQueryUGCRequest( uint64_t ) = 0; + virtual int8_t AddRequiredTag( uint64_t, const char * ) = 0; + virtual int8_t AddRequiredTagGroup( uint64_t, const u_SteamParamStringArray_t * ) = 0; + virtual int8_t AddExcludedTag( uint64_t, const char * ) = 0; + virtual int8_t SetReturnOnlyIDs( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnKeyValueTags( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnLongDescription( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnMetadata( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnChildren( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnAdditionalPreviews( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnTotalOnly( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnPlaytimeStats( uint64_t, uint32_t ) = 0; + virtual int8_t SetLanguage( uint64_t, const char * ) = 0; + virtual int8_t SetAllowCachedResponse( uint64_t, uint32_t ) = 0; + virtual int8_t SetCloudFileNameFilter( uint64_t, const char * ) = 0; + virtual int8_t SetMatchAnyTag( uint64_t, int8_t ) = 0; + virtual int8_t SetSearchText( uint64_t, const char * ) = 0; + virtual int8_t SetRankedByTrendDays( uint64_t, uint32_t ) = 0; + virtual int8_t SetTimeCreatedDateRange( uint64_t, uint32_t, uint32_t ) = 0; + virtual int8_t SetTimeUpdatedDateRange( uint64_t, uint32_t, uint32_t ) = 0; + virtual int8_t AddRequiredKeyValueTag( uint64_t, const char *, const char * ) = 0; virtual uint64_t RequestUGCDetails( uint64_t, uint32_t ) = 0; virtual uint64_t CreateItem( uint32_t, uint32_t ) = 0; virtual uint64_t StartItemUpdate( uint32_t, uint64_t ) = 0; - virtual bool SetItemTitle( uint64_t, const char * ) = 0; - virtual bool SetItemDescription( uint64_t, const char * ) = 0; - virtual bool SetItemUpdateLanguage( uint64_t, const char * ) = 0; - virtual bool SetItemMetadata( uint64_t, const char * ) = 0; - virtual bool SetItemVisibility( uint64_t, uint32_t ) = 0; - virtual bool SetItemTags( uint64_t, const u_SteamParamStringArray_t * ) = 0; - virtual bool SetItemContent( uint64_t, const char * ) = 0; - virtual bool SetItemPreview( uint64_t, const char * ) = 0; - virtual bool SetAllowLegacyUpload( uint64_t, bool ) = 0; - virtual bool RemoveAllItemKeyValueTags( uint64_t ) = 0; - virtual bool RemoveItemKeyValueTags( uint64_t, const char * ) = 0; - virtual bool AddItemKeyValueTag( uint64_t, const char *, const char * ) = 0; - virtual bool AddItemPreviewFile( uint64_t, const char *, uint32_t ) = 0; - virtual bool AddItemPreviewVideo( uint64_t, const char * ) = 0; - virtual bool UpdateItemPreviewFile( uint64_t, uint32_t, const char * ) = 0; - virtual bool UpdateItemPreviewVideo( uint64_t, uint32_t, const char * ) = 0; - virtual bool RemoveItemPreview( uint64_t, uint32_t ) = 0; + virtual int8_t SetItemTitle( uint64_t, const char * ) = 0; + virtual int8_t SetItemDescription( uint64_t, const char * ) = 0; + virtual int8_t SetItemUpdateLanguage( uint64_t, const char * ) = 0; + virtual int8_t SetItemMetadata( uint64_t, const char * ) = 0; + virtual int8_t SetItemVisibility( uint64_t, uint32_t ) = 0; + virtual int8_t SetItemTags( uint64_t, const u_SteamParamStringArray_t * ) = 0; + virtual int8_t SetItemContent( uint64_t, const char * ) = 0; + virtual int8_t SetItemPreview( uint64_t, const char * ) = 0; + virtual int8_t SetAllowLegacyUpload( uint64_t, int8_t ) = 0; + virtual int8_t RemoveAllItemKeyValueTags( uint64_t ) = 0; + virtual int8_t RemoveItemKeyValueTags( uint64_t, const char * ) = 0; + virtual int8_t AddItemKeyValueTag( uint64_t, const char *, const char * ) = 0; + virtual int8_t AddItemPreviewFile( uint64_t, const char *, uint32_t ) = 0; + virtual int8_t AddItemPreviewVideo( uint64_t, const char * ) = 0; + virtual int8_t UpdateItemPreviewFile( uint64_t, uint32_t, const char * ) = 0; + virtual int8_t UpdateItemPreviewVideo( uint64_t, uint32_t, const char * ) = 0; + virtual int8_t RemoveItemPreview( uint64_t, uint32_t ) = 0; virtual uint64_t SubmitItemUpdate( uint64_t, const char * ) = 0; virtual uint32_t GetItemUpdateProgress( uint64_t, uint64_t *, uint64_t * ) = 0; - virtual uint64_t SetUserItemVote( uint64_t, bool ) = 0; + virtual uint64_t SetUserItemVote( uint64_t, int8_t ) = 0; virtual uint64_t GetUserItemVote( uint64_t ) = 0; virtual uint64_t AddItemToFavorites( uint32_t, uint64_t ) = 0; virtual uint64_t RemoveItemFromFavorites( uint32_t, uint64_t ) = 0; @@ -6592,11 +6592,11 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 virtual uint32_t GetNumSubscribedItems( ) = 0; virtual uint32_t GetSubscribedItems( uint64_t *, uint32_t ) = 0; virtual uint32_t GetItemState( uint64_t ) = 0; - virtual bool GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, uint32_t * ) = 0; - virtual bool GetItemDownloadInfo( uint64_t, uint64_t *, uint64_t * ) = 0; - virtual bool DownloadItem( uint64_t, bool ) = 0; - virtual bool BInitWorkshopForGameServer( uint32_t, const char * ) = 0; - virtual void SuspendDownloads( bool ) = 0; + virtual int8_t GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, uint32_t * ) = 0; + virtual int8_t GetItemDownloadInfo( uint64_t, uint64_t *, uint64_t * ) = 0; + virtual int8_t DownloadItem( uint64_t, int8_t ) = 0; + virtual int8_t BInitWorkshopForGameServer( uint32_t, const char * ) = 0; + virtual void SuspendDownloads( int8_t ) = 0; virtual uint64_t StartPlaytimeTracking( uint64_t *, uint32_t ) = 0; virtual uint64_t StopPlaytimeTracking( uint64_t *, uint32_t ) = 0; virtual uint64_t StopPlaytimeTrackingForAllItems( ) = 0; @@ -6606,7 +6606,7 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 virtual uint64_t RemoveAppDependency( uint64_t, uint32_t ) = 0; virtual uint64_t GetAppDependencies( uint64_t ) = 0; virtual uint64_t DeleteItem( uint64_t ) = 0; - virtual bool ShowWorkshopEULA( ) = 0; + virtual int8_t ShowWorkshopEULA( ) = 0; virtual uint64_t GetWorkshopEULAStatus( ) = 0; #endif /* __cplusplus */ }; @@ -6619,30 +6619,30 @@ struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 virtual uint32_t CreateListenSocketP2P( int32_t, int32_t, const SteamNetworkingConfigValue_t * ) = 0; virtual uint32_t ConnectP2P( const SteamNetworkingIdentity_144 *, int32_t, int32_t, const SteamNetworkingConfigValue_t * ) = 0; virtual uint32_t AcceptConnection( uint32_t ) = 0; - virtual bool CloseConnection( uint32_t, int32_t, const char *, bool ) = 0; - virtual bool CloseListenSocket( uint32_t ) = 0; - virtual bool SetConnectionUserData( uint32_t, int64_t ) = 0; + virtual int8_t CloseConnection( uint32_t, int32_t, const char *, int8_t ) = 0; + virtual int8_t CloseListenSocket( uint32_t ) = 0; + virtual int8_t SetConnectionUserData( uint32_t, int64_t ) = 0; virtual int64_t GetConnectionUserData( uint32_t ) = 0; virtual void SetConnectionName( uint32_t, const char * ) = 0; - virtual bool GetConnectionName( uint32_t, char *, int32_t ) = 0; + virtual int8_t GetConnectionName( uint32_t, char *, int32_t ) = 0; virtual uint32_t SendMessageToConnection( uint32_t, const void *, uint32_t, int32_t, int64_t * ) = 0; virtual void SendMessages( int32_t, u_SteamNetworkingMessage_t_153a *const *, int64_t * ) = 0; virtual uint32_t FlushMessagesOnConnection( uint32_t ) = 0; virtual int32_t ReceiveMessagesOnConnection( uint32_t, u_SteamNetworkingMessage_t_153a **, int32_t ) = 0; - virtual bool GetConnectionInfo( uint32_t, SteamNetConnectionInfo_t_153a * ) = 0; + virtual int8_t GetConnectionInfo( uint32_t, SteamNetConnectionInfo_t_153a * ) = 0; virtual uint32_t GetConnectionRealTimeStatus( uint32_t, SteamNetConnectionRealTimeStatus_t *, int32_t, SteamNetConnectionRealTimeLaneStatus_t * ) = 0; virtual int32_t GetDetailedConnectionStatus( uint32_t, char *, int32_t ) = 0; - virtual bool GetListenSocketAddress( uint32_t, SteamNetworkingIPAddr * ) = 0; - virtual bool CreateSocketPair( uint32_t *, uint32_t *, bool, const SteamNetworkingIdentity_144 *, const SteamNetworkingIdentity_144 * ) = 0; + virtual int8_t GetListenSocketAddress( uint32_t, SteamNetworkingIPAddr * ) = 0; + virtual int8_t CreateSocketPair( uint32_t *, uint32_t *, int8_t, const SteamNetworkingIdentity_144 *, const SteamNetworkingIdentity_144 * ) = 0; virtual uint32_t ConfigureConnectionLanes( uint32_t, int32_t, const int32_t *, const uint16_t * ) = 0; - virtual bool GetIdentity( SteamNetworkingIdentity_144 * ) = 0; + virtual int8_t GetIdentity( SteamNetworkingIdentity_144 * ) = 0; virtual uint32_t InitAuthentication( ) = 0; virtual uint32_t GetAuthenticationStatus( SteamNetAuthenticationStatus_t * ) = 0; virtual uint32_t CreatePollGroup( ) = 0; - virtual bool DestroyPollGroup( uint32_t ) = 0; - virtual bool SetConnectionPollGroup( uint32_t, uint32_t ) = 0; + virtual int8_t DestroyPollGroup( uint32_t ) = 0; + virtual int8_t SetConnectionPollGroup( uint32_t, uint32_t ) = 0; virtual int32_t ReceiveMessagesOnPollGroup( uint32_t, u_SteamNetworkingMessage_t_153a **, int32_t ) = 0; - virtual bool ReceivedRelayAuthTicket( const void *, int32_t, SteamDatagramRelayAuthTicket * ) = 0; + virtual int8_t ReceivedRelayAuthTicket( const void *, int32_t, SteamDatagramRelayAuthTicket * ) = 0; virtual int32_t FindRelayAuthTicketForServer( const SteamNetworkingIdentity_144 *, int32_t, SteamDatagramRelayAuthTicket * ) = 0; virtual uint32_t ConnectToHostedDedicatedServer( const SteamNetworkingIdentity_144 *, int32_t, int32_t, const SteamNetworkingConfigValue_t * ) = 0; virtual uint16_t GetHostedDedicatedServerPort( ) = 0; @@ -6651,12 +6651,12 @@ struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 virtual uint32_t CreateHostedDedicatedServerListenSocket( int32_t, int32_t, const SteamNetworkingConfigValue_t * ) = 0; virtual uint32_t GetGameCoordinatorServerLogin( SteamDatagramGameCoordinatorServerLogin *, int32_t *, void * ) = 0; virtual uint32_t ConnectP2PCustomSignaling( void /*ISteamNetworkingConnectionSignaling*/ *, const SteamNetworkingIdentity_144 *, int32_t, int32_t, const SteamNetworkingConfigValue_t * ) = 0; - virtual bool ReceivedP2PCustomSignal( const void *, int32_t, void /*ISteamNetworkingSignalingRecvContext*/ * ) = 0; - virtual bool GetCertificateRequest( int32_t *, void *, char (*)[1024] ) = 0; - virtual bool SetCertificate( const void *, int32_t, char (*)[1024] ) = 0; + virtual int8_t ReceivedP2PCustomSignal( const void *, int32_t, void /*ISteamNetworkingSignalingRecvContext*/ * ) = 0; + virtual int8_t GetCertificateRequest( int32_t *, void *, char (*)[1024] ) = 0; + virtual int8_t SetCertificate( const void *, int32_t, char (*)[1024] ) = 0; virtual void ResetIdentity( const SteamNetworkingIdentity_144 * ) = 0; virtual void RunCallbacks( ) = 0; - virtual bool BeginAsyncRequestFakeIP( int32_t ) = 0; + virtual int8_t BeginAsyncRequestFakeIP( int32_t ) = 0; virtual void GetFakeIP( int32_t, SteamNetworkingFakeIPResult_t * ) = 0; virtual uint32_t CreateListenSocketP2PFakeIP( int32_t, int32_t, const SteamNetworkingConfigValue_t * ) = 0; virtual uint32_t GetRemoteFakeIPForConnection( uint32_t, SteamNetworkingIPAddr * ) = 0; @@ -6674,8 +6674,8 @@ struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 virtual int32_t EstimatePingTimeBetweenTwoLocations( const SteamNetworkPingLocation_t *, const SteamNetworkPingLocation_t * ) = 0; virtual int32_t EstimatePingTimeFromLocalHost( const SteamNetworkPingLocation_t * ) = 0; virtual void ConvertPingLocationToString( const SteamNetworkPingLocation_t *, char *, int32_t ) = 0; - virtual bool ParsePingLocationString( const char *, SteamNetworkPingLocation_t * ) = 0; - virtual bool CheckPingDataUpToDate( float ) = 0; + virtual int8_t ParsePingLocationString( const char *, SteamNetworkPingLocation_t * ) = 0; + virtual int8_t CheckPingDataUpToDate( float ) = 0; virtual int32_t GetPingToDataCenter( uint32_t, uint32_t * ) = 0; virtual int32_t GetDirectPingToPOP( uint32_t ) = 0; virtual int32_t GetPOPCount( ) = 0; @@ -6684,15 +6684,15 @@ struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 virtual void SetDebugOutputFunction( uint32_t, void (*U_STDCALL )(uint32_t, const char *) ) = 0; virtual uint32_t GetIPv4FakeIPType( uint32_t ) = 0; virtual uint32_t GetRealIdentityForFakeIP( const SteamNetworkingIPAddr *, SteamNetworkingIdentity_144 * ) = 0; - virtual bool SetConfigValue( uint32_t, uint32_t, int32_t, uint32_t, const void * ) = 0; + virtual int8_t SetConfigValue( uint32_t, uint32_t, int32_t, uint32_t, const void * ) = 0; virtual uint32_t GetConfigValue( uint32_t, uint32_t, int32_t, uint32_t *, void *, uint32_t * ) = 0; virtual const char * GetConfigValueInfo( uint32_t, uint32_t *, uint32_t * ) = 0; - virtual uint32_t IterateGenericEditableConfigValues( uint32_t, bool ) = 0; - virtual void SteamNetworkingIPAddr_ToString( const SteamNetworkingIPAddr *, char *, uint32_t, bool ) = 0; - virtual bool SteamNetworkingIPAddr_ParseString( SteamNetworkingIPAddr *, const char * ) = 0; + virtual uint32_t IterateGenericEditableConfigValues( uint32_t, int8_t ) = 0; + virtual void SteamNetworkingIPAddr_ToString( const SteamNetworkingIPAddr *, char *, uint32_t, int8_t ) = 0; + virtual int8_t SteamNetworkingIPAddr_ParseString( SteamNetworkingIPAddr *, const char * ) = 0; virtual uint32_t SteamNetworkingIPAddr_GetFakeIPType( const SteamNetworkingIPAddr * ) = 0; virtual void SteamNetworkingIdentity_ToString( const SteamNetworkingIdentity_144 *, char *, uint32_t ) = 0; - virtual bool SteamNetworkingIdentity_ParseString( SteamNetworkingIdentity_144 *, const char * ) = 0; + virtual int8_t SteamNetworkingIdentity_ParseString( SteamNetworkingIdentity_144 *, const char * ) = 0; virtual ~u_ISteamNetworkingUtils_SteamNetworkingUtils004( ) = 0; #endif /* __cplusplus */ }; @@ -6711,16 +6711,16 @@ struct u_ISteamUser_SteamUser022 { #ifdef __cplusplus virtual int32_t GetHSteamUser( ) = 0; - virtual bool BLoggedOn( ) = 0; + virtual int8_t BLoggedOn( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual int32_t InitiateGameConnection_DEPRECATED( void *, int32_t, CSteamID, uint32_t, uint16_t, bool ) = 0; + virtual int32_t InitiateGameConnection_DEPRECATED( void *, int32_t, CSteamID, uint32_t, uint16_t, int8_t ) = 0; virtual void TerminateGameConnection_DEPRECATED( uint32_t, uint16_t ) = 0; virtual void TrackAppUsageEvent( CGameID, int32_t, const char * ) = 0; - virtual bool GetUserDataFolder( char *, int32_t ) = 0; + virtual int8_t GetUserDataFolder( char *, int32_t ) = 0; virtual void StartVoiceRecording( ) = 0; virtual void StopVoiceRecording( ) = 0; virtual uint32_t GetAvailableVoice( uint32_t *, uint32_t *, uint32_t ) = 0; - virtual uint32_t GetVoice( bool, void *, uint32_t, uint32_t *, bool, void *, uint32_t, uint32_t *, uint32_t ) = 0; + virtual uint32_t GetVoice( int8_t, void *, uint32_t, uint32_t *, int8_t, void *, uint32_t, uint32_t *, uint32_t ) = 0; virtual uint32_t DecompressVoice( const void *, uint32_t, void *, uint32_t, uint32_t *, uint32_t ) = 0; virtual uint32_t GetVoiceOptimalSampleRate( ) = 0; virtual uint32_t GetAuthSessionTicket( void *, int32_t, uint32_t *, const SteamNetworkingIdentity_144 * ) = 0; @@ -6728,20 +6728,20 @@ struct u_ISteamUser_SteamUser022 virtual void EndAuthSession( CSteamID ) = 0; virtual void CancelAuthTicket( uint32_t ) = 0; virtual uint32_t UserHasLicenseForApp( CSteamID, uint32_t ) = 0; - virtual bool BIsBehindNAT( ) = 0; + virtual int8_t BIsBehindNAT( ) = 0; virtual void AdvertiseGame( CSteamID, uint32_t, uint16_t ) = 0; virtual uint64_t RequestEncryptedAppTicket( void *, int32_t ) = 0; - virtual bool GetEncryptedAppTicket( void *, int32_t, uint32_t * ) = 0; - virtual int32_t GetGameBadgeLevel( int32_t, bool ) = 0; + virtual int8_t GetEncryptedAppTicket( void *, int32_t, uint32_t * ) = 0; + virtual int32_t GetGameBadgeLevel( int32_t, int8_t ) = 0; virtual int32_t GetPlayerSteamLevel( ) = 0; virtual uint64_t RequestStoreAuthURL( const char * ) = 0; - virtual bool BIsPhoneVerified( ) = 0; - virtual bool BIsTwoFactorEnabled( ) = 0; - virtual bool BIsPhoneIdentifying( ) = 0; - virtual bool BIsPhoneRequiringVerification( ) = 0; + virtual int8_t BIsPhoneVerified( ) = 0; + virtual int8_t BIsTwoFactorEnabled( ) = 0; + virtual int8_t BIsPhoneIdentifying( ) = 0; + virtual int8_t BIsPhoneRequiringVerification( ) = 0; virtual uint64_t GetMarketEligibility( ) = 0; virtual uint64_t GetDurationControl( ) = 0; - virtual bool BSetDurationControlOnlineState( uint32_t ) = 0; + virtual int8_t BSetDurationControlOnlineState( uint32_t ) = 0; #endif /* __cplusplus */ }; @@ -6753,66 +6753,66 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 virtual uint64_t CreateQueryAllUGCRequest( uint32_t, uint32_t, uint32_t, uint32_t, const char * ) = 0; virtual uint64_t CreateQueryUGCDetailsRequest( uint64_t *, uint32_t ) = 0; virtual uint64_t SendQueryUGCRequest( uint64_t ) = 0; - virtual bool GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; + virtual int8_t GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; virtual uint32_t GetQueryUGCNumTags( uint64_t, uint32_t ) = 0; - virtual bool GetQueryUGCTag( uint64_t, uint32_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCTagDisplayName( uint64_t, uint32_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCPreviewURL( uint64_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCMetadata( uint64_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCChildren( uint64_t, uint32_t, uint64_t *, uint32_t ) = 0; - virtual bool GetQueryUGCStatistic( uint64_t, uint32_t, uint32_t, uint64_t * ) = 0; + virtual int8_t GetQueryUGCTag( uint64_t, uint32_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCTagDisplayName( uint64_t, uint32_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCPreviewURL( uint64_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCMetadata( uint64_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCChildren( uint64_t, uint32_t, uint64_t *, uint32_t ) = 0; + virtual int8_t GetQueryUGCStatistic( uint64_t, uint32_t, uint32_t, uint64_t * ) = 0; virtual uint32_t GetQueryUGCNumAdditionalPreviews( uint64_t, uint32_t ) = 0; - virtual bool GetQueryUGCAdditionalPreview( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t, uint32_t * ) = 0; + virtual int8_t GetQueryUGCAdditionalPreview( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t, uint32_t * ) = 0; virtual uint32_t GetQueryUGCNumKeyValueTags( uint64_t, uint32_t ) = 0; - virtual bool GetQueryUGCKeyValueTag( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCKeyValueTag( uint64_t, uint32_t, const char *, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCKeyValueTag( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCKeyValueTag( uint64_t, uint32_t, const char *, char *, uint32_t ) = 0; virtual uint32_t GetQueryUGCContentDescriptors( uint64_t, uint32_t, uint32_t *, uint32_t ) = 0; - virtual bool ReleaseQueryUGCRequest( uint64_t ) = 0; - virtual bool AddRequiredTag( uint64_t, const char * ) = 0; - virtual bool AddRequiredTagGroup( uint64_t, const u_SteamParamStringArray_t * ) = 0; - virtual bool AddExcludedTag( uint64_t, const char * ) = 0; - virtual bool SetReturnOnlyIDs( uint64_t, bool ) = 0; - virtual bool SetReturnKeyValueTags( uint64_t, bool ) = 0; - virtual bool SetReturnLongDescription( uint64_t, bool ) = 0; - virtual bool SetReturnMetadata( uint64_t, bool ) = 0; - virtual bool SetReturnChildren( uint64_t, bool ) = 0; - virtual bool SetReturnAdditionalPreviews( uint64_t, bool ) = 0; - virtual bool SetReturnTotalOnly( uint64_t, bool ) = 0; - virtual bool SetReturnPlaytimeStats( uint64_t, uint32_t ) = 0; - virtual bool SetLanguage( uint64_t, const char * ) = 0; - virtual bool SetAllowCachedResponse( uint64_t, uint32_t ) = 0; - virtual bool SetCloudFileNameFilter( uint64_t, const char * ) = 0; - virtual bool SetMatchAnyTag( uint64_t, bool ) = 0; - virtual bool SetSearchText( uint64_t, const char * ) = 0; - virtual bool SetRankedByTrendDays( uint64_t, uint32_t ) = 0; - virtual bool SetTimeCreatedDateRange( uint64_t, uint32_t, uint32_t ) = 0; - virtual bool SetTimeUpdatedDateRange( uint64_t, uint32_t, uint32_t ) = 0; - virtual bool AddRequiredKeyValueTag( uint64_t, const char *, const char * ) = 0; + virtual int8_t ReleaseQueryUGCRequest( uint64_t ) = 0; + virtual int8_t AddRequiredTag( uint64_t, const char * ) = 0; + virtual int8_t AddRequiredTagGroup( uint64_t, const u_SteamParamStringArray_t * ) = 0; + virtual int8_t AddExcludedTag( uint64_t, const char * ) = 0; + virtual int8_t SetReturnOnlyIDs( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnKeyValueTags( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnLongDescription( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnMetadata( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnChildren( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnAdditionalPreviews( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnTotalOnly( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnPlaytimeStats( uint64_t, uint32_t ) = 0; + virtual int8_t SetLanguage( uint64_t, const char * ) = 0; + virtual int8_t SetAllowCachedResponse( uint64_t, uint32_t ) = 0; + virtual int8_t SetCloudFileNameFilter( uint64_t, const char * ) = 0; + virtual int8_t SetMatchAnyTag( uint64_t, int8_t ) = 0; + virtual int8_t SetSearchText( uint64_t, const char * ) = 0; + virtual int8_t SetRankedByTrendDays( uint64_t, uint32_t ) = 0; + virtual int8_t SetTimeCreatedDateRange( uint64_t, uint32_t, uint32_t ) = 0; + virtual int8_t SetTimeUpdatedDateRange( uint64_t, uint32_t, uint32_t ) = 0; + virtual int8_t AddRequiredKeyValueTag( uint64_t, const char *, const char * ) = 0; virtual uint64_t RequestUGCDetails( uint64_t, uint32_t ) = 0; virtual uint64_t CreateItem( uint32_t, uint32_t ) = 0; virtual uint64_t StartItemUpdate( uint32_t, uint64_t ) = 0; - virtual bool SetItemTitle( uint64_t, const char * ) = 0; - virtual bool SetItemDescription( uint64_t, const char * ) = 0; - virtual bool SetItemUpdateLanguage( uint64_t, const char * ) = 0; - virtual bool SetItemMetadata( uint64_t, const char * ) = 0; - virtual bool SetItemVisibility( uint64_t, uint32_t ) = 0; - virtual bool SetItemTags( uint64_t, const u_SteamParamStringArray_t * ) = 0; - virtual bool SetItemContent( uint64_t, const char * ) = 0; - virtual bool SetItemPreview( uint64_t, const char * ) = 0; - virtual bool SetAllowLegacyUpload( uint64_t, bool ) = 0; - virtual bool RemoveAllItemKeyValueTags( uint64_t ) = 0; - virtual bool RemoveItemKeyValueTags( uint64_t, const char * ) = 0; - virtual bool AddItemKeyValueTag( uint64_t, const char *, const char * ) = 0; - virtual bool AddItemPreviewFile( uint64_t, const char *, uint32_t ) = 0; - virtual bool AddItemPreviewVideo( uint64_t, const char * ) = 0; - virtual bool UpdateItemPreviewFile( uint64_t, uint32_t, const char * ) = 0; - virtual bool UpdateItemPreviewVideo( uint64_t, uint32_t, const char * ) = 0; - virtual bool RemoveItemPreview( uint64_t, uint32_t ) = 0; - virtual bool AddContentDescriptor( uint64_t, uint32_t ) = 0; - virtual bool RemoveContentDescriptor( uint64_t, uint32_t ) = 0; + virtual int8_t SetItemTitle( uint64_t, const char * ) = 0; + virtual int8_t SetItemDescription( uint64_t, const char * ) = 0; + virtual int8_t SetItemUpdateLanguage( uint64_t, const char * ) = 0; + virtual int8_t SetItemMetadata( uint64_t, const char * ) = 0; + virtual int8_t SetItemVisibility( uint64_t, uint32_t ) = 0; + virtual int8_t SetItemTags( uint64_t, const u_SteamParamStringArray_t * ) = 0; + virtual int8_t SetItemContent( uint64_t, const char * ) = 0; + virtual int8_t SetItemPreview( uint64_t, const char * ) = 0; + virtual int8_t SetAllowLegacyUpload( uint64_t, int8_t ) = 0; + virtual int8_t RemoveAllItemKeyValueTags( uint64_t ) = 0; + virtual int8_t RemoveItemKeyValueTags( uint64_t, const char * ) = 0; + virtual int8_t AddItemKeyValueTag( uint64_t, const char *, const char * ) = 0; + virtual int8_t AddItemPreviewFile( uint64_t, const char *, uint32_t ) = 0; + virtual int8_t AddItemPreviewVideo( uint64_t, const char * ) = 0; + virtual int8_t UpdateItemPreviewFile( uint64_t, uint32_t, const char * ) = 0; + virtual int8_t UpdateItemPreviewVideo( uint64_t, uint32_t, const char * ) = 0; + virtual int8_t RemoveItemPreview( uint64_t, uint32_t ) = 0; + virtual int8_t AddContentDescriptor( uint64_t, uint32_t ) = 0; + virtual int8_t RemoveContentDescriptor( uint64_t, uint32_t ) = 0; virtual uint64_t SubmitItemUpdate( uint64_t, const char * ) = 0; virtual uint32_t GetItemUpdateProgress( uint64_t, uint64_t *, uint64_t * ) = 0; - virtual uint64_t SetUserItemVote( uint64_t, bool ) = 0; + virtual uint64_t SetUserItemVote( uint64_t, int8_t ) = 0; virtual uint64_t GetUserItemVote( uint64_t ) = 0; virtual uint64_t AddItemToFavorites( uint32_t, uint64_t ) = 0; virtual uint64_t RemoveItemFromFavorites( uint32_t, uint64_t ) = 0; @@ -6821,11 +6821,11 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 virtual uint32_t GetNumSubscribedItems( ) = 0; virtual uint32_t GetSubscribedItems( uint64_t *, uint32_t ) = 0; virtual uint32_t GetItemState( uint64_t ) = 0; - virtual bool GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, uint32_t * ) = 0; - virtual bool GetItemDownloadInfo( uint64_t, uint64_t *, uint64_t * ) = 0; - virtual bool DownloadItem( uint64_t, bool ) = 0; - virtual bool BInitWorkshopForGameServer( uint32_t, const char * ) = 0; - virtual void SuspendDownloads( bool ) = 0; + virtual int8_t GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, uint32_t * ) = 0; + virtual int8_t GetItemDownloadInfo( uint64_t, uint64_t *, uint64_t * ) = 0; + virtual int8_t DownloadItem( uint64_t, int8_t ) = 0; + virtual int8_t BInitWorkshopForGameServer( uint32_t, const char * ) = 0; + virtual void SuspendDownloads( int8_t ) = 0; virtual uint64_t StartPlaytimeTracking( uint64_t *, uint32_t ) = 0; virtual uint64_t StopPlaytimeTracking( uint64_t *, uint32_t ) = 0; virtual uint64_t StopPlaytimeTrackingForAllItems( ) = 0; @@ -6835,7 +6835,7 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 virtual uint64_t RemoveAppDependency( uint64_t, uint32_t ) = 0; virtual uint64_t GetAppDependencies( uint64_t ) = 0; virtual uint64_t DeleteItem( uint64_t ) = 0; - virtual bool ShowWorkshopEULA( ) = 0; + virtual int8_t ShowWorkshopEULA( ) = 0; virtual uint64_t GetWorkshopEULAStatus( ) = 0; #endif /* __cplusplus */ }; @@ -6843,23 +6843,23 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 struct u_ISteamGameServer_SteamGameServer015 { #ifdef __cplusplus - virtual bool InitGameServer( uint32_t, uint16_t, uint16_t, uint32_t, uint32_t, const char * ) = 0; + virtual int8_t InitGameServer( uint32_t, uint16_t, uint16_t, uint32_t, uint32_t, const char * ) = 0; virtual void SetProduct( const char * ) = 0; virtual void SetGameDescription( const char * ) = 0; virtual void SetModDir( const char * ) = 0; - virtual void SetDedicatedServer( bool ) = 0; + virtual void SetDedicatedServer( int8_t ) = 0; virtual void LogOn( const char * ) = 0; virtual void LogOnAnonymous( ) = 0; virtual void LogOff( ) = 0; - virtual bool BLoggedOn( ) = 0; - virtual bool BSecure( ) = 0; + virtual int8_t BLoggedOn( ) = 0; + virtual int8_t BSecure( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual bool WasRestartRequested( ) = 0; + virtual int8_t WasRestartRequested( ) = 0; virtual void SetMaxPlayerCount( int32_t ) = 0; virtual void SetBotPlayerCount( int32_t ) = 0; virtual void SetServerName( const char * ) = 0; virtual void SetMapName( const char * ) = 0; - virtual void SetPasswordProtected( bool ) = 0; + virtual void SetPasswordProtected( int8_t ) = 0; virtual void SetSpectatorPort( uint16_t ) = 0; virtual void SetSpectatorServerName( const char * ) = 0; virtual void ClearAllKeyValues( ) = 0; @@ -6867,24 +6867,24 @@ struct u_ISteamGameServer_SteamGameServer015 virtual void SetGameTags( const char * ) = 0; virtual void SetGameData( const char * ) = 0; virtual void SetRegion( const char * ) = 0; - virtual void SetAdvertiseServerActive( bool ) = 0; + virtual void SetAdvertiseServerActive( int8_t ) = 0; virtual uint32_t GetAuthSessionTicket( void *, int32_t, uint32_t *, const SteamNetworkingIdentity_144 * ) = 0; virtual uint32_t BeginAuthSession( const void *, int32_t, CSteamID ) = 0; virtual void EndAuthSession( CSteamID ) = 0; virtual void CancelAuthTicket( uint32_t ) = 0; virtual uint32_t UserHasLicenseForApp( CSteamID, uint32_t ) = 0; - virtual bool RequestUserGroupStatus( CSteamID, CSteamID ) = 0; + virtual int8_t RequestUserGroupStatus( CSteamID, CSteamID ) = 0; virtual void GetGameplayStats( ) = 0; virtual uint64_t GetServerReputation( ) = 0; virtual SteamIPAddress_t GetPublicIP( ) = 0; - virtual bool HandleIncomingPacket( const void *, int32_t, uint32_t, uint16_t ) = 0; + virtual int8_t HandleIncomingPacket( const void *, int32_t, uint32_t, uint16_t ) = 0; virtual int32_t GetNextOutgoingPacket( void *, int32_t, uint32_t *, uint16_t * ) = 0; virtual uint64_t AssociateWithClan( CSteamID ) = 0; virtual uint64_t ComputeNewPlayerCompatibility( CSteamID ) = 0; - virtual bool SendUserConnectAndAuthenticate_DEPRECATED( uint32_t, const void *, uint32_t, CSteamID * ) = 0; + virtual int8_t SendUserConnectAndAuthenticate_DEPRECATED( uint32_t, const void *, uint32_t, CSteamID * ) = 0; virtual CSteamID CreateUnauthenticatedUserConnection( ) = 0; virtual void SendUserDisconnect_DEPRECATED( CSteamID ) = 0; - virtual bool BUpdateUserData( CSteamID, const char *, uint32_t ) = 0; + virtual int8_t BUpdateUserData( CSteamID, const char *, uint32_t ) = 0; virtual void SetMasterServerHeartbeatInterval_DEPRECATED( int32_t ) = 0; virtual void ForceMasterServerHeartbeat_DEPRECATED( ) = 0; #endif /* __cplusplus */ @@ -6894,16 +6894,16 @@ struct u_ISteamUser_SteamUser023 { #ifdef __cplusplus virtual int32_t GetHSteamUser( ) = 0; - virtual bool BLoggedOn( ) = 0; + virtual int8_t BLoggedOn( ) = 0; virtual CSteamID GetSteamID( ) = 0; - virtual int32_t InitiateGameConnection_DEPRECATED( void *, int32_t, CSteamID, uint32_t, uint16_t, bool ) = 0; + virtual int32_t InitiateGameConnection_DEPRECATED( void *, int32_t, CSteamID, uint32_t, uint16_t, int8_t ) = 0; virtual void TerminateGameConnection_DEPRECATED( uint32_t, uint16_t ) = 0; virtual void TrackAppUsageEvent( CGameID, int32_t, const char * ) = 0; - virtual bool GetUserDataFolder( char *, int32_t ) = 0; + virtual int8_t GetUserDataFolder( char *, int32_t ) = 0; virtual void StartVoiceRecording( ) = 0; virtual void StopVoiceRecording( ) = 0; virtual uint32_t GetAvailableVoice( uint32_t *, uint32_t *, uint32_t ) = 0; - virtual uint32_t GetVoice( bool, void *, uint32_t, uint32_t *, bool, void *, uint32_t, uint32_t *, uint32_t ) = 0; + virtual uint32_t GetVoice( int8_t, void *, uint32_t, uint32_t *, int8_t, void *, uint32_t, uint32_t *, uint32_t ) = 0; virtual uint32_t DecompressVoice( const void *, uint32_t, void *, uint32_t, uint32_t *, uint32_t ) = 0; virtual uint32_t GetVoiceOptimalSampleRate( ) = 0; virtual uint32_t GetAuthSessionTicket( void *, int32_t, uint32_t *, const SteamNetworkingIdentity_144 * ) = 0; @@ -6912,20 +6912,20 @@ struct u_ISteamUser_SteamUser023 virtual void EndAuthSession( CSteamID ) = 0; virtual void CancelAuthTicket( uint32_t ) = 0; virtual uint32_t UserHasLicenseForApp( CSteamID, uint32_t ) = 0; - virtual bool BIsBehindNAT( ) = 0; + virtual int8_t BIsBehindNAT( ) = 0; virtual void AdvertiseGame( CSteamID, uint32_t, uint16_t ) = 0; virtual uint64_t RequestEncryptedAppTicket( void *, int32_t ) = 0; - virtual bool GetEncryptedAppTicket( void *, int32_t, uint32_t * ) = 0; - virtual int32_t GetGameBadgeLevel( int32_t, bool ) = 0; + virtual int8_t GetEncryptedAppTicket( void *, int32_t, uint32_t * ) = 0; + virtual int32_t GetGameBadgeLevel( int32_t, int8_t ) = 0; virtual int32_t GetPlayerSteamLevel( ) = 0; virtual uint64_t RequestStoreAuthURL( const char * ) = 0; - virtual bool BIsPhoneVerified( ) = 0; - virtual bool BIsTwoFactorEnabled( ) = 0; - virtual bool BIsPhoneIdentifying( ) = 0; - virtual bool BIsPhoneRequiringVerification( ) = 0; + virtual int8_t BIsPhoneVerified( ) = 0; + virtual int8_t BIsTwoFactorEnabled( ) = 0; + virtual int8_t BIsPhoneIdentifying( ) = 0; + virtual int8_t BIsPhoneRequiringVerification( ) = 0; virtual uint64_t GetMarketEligibility( ) = 0; virtual uint64_t GetDurationControl( ) = 0; - virtual bool BSetDurationControlOnlineState( uint32_t ) = 0; + virtual int8_t BSetDurationControlOnlineState( uint32_t ) = 0; #endif /* __cplusplus */ }; @@ -6937,66 +6937,66 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 virtual uint64_t CreateQueryAllUGCRequest( uint32_t, uint32_t, uint32_t, uint32_t, const char * ) = 0; virtual uint64_t CreateQueryUGCDetailsRequest( uint64_t *, uint32_t ) = 0; virtual uint64_t SendQueryUGCRequest( uint64_t ) = 0; - virtual bool GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; + virtual int8_t GetQueryUGCResult( uint64_t, uint32_t, u_SteamUGCDetails_t_128x * ) = 0; virtual uint32_t GetQueryUGCNumTags( uint64_t, uint32_t ) = 0; - virtual bool GetQueryUGCTag( uint64_t, uint32_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCTagDisplayName( uint64_t, uint32_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCPreviewURL( uint64_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCMetadata( uint64_t, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCChildren( uint64_t, uint32_t, uint64_t *, uint32_t ) = 0; - virtual bool GetQueryUGCStatistic( uint64_t, uint32_t, uint32_t, uint64_t * ) = 0; + virtual int8_t GetQueryUGCTag( uint64_t, uint32_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCTagDisplayName( uint64_t, uint32_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCPreviewURL( uint64_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCMetadata( uint64_t, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCChildren( uint64_t, uint32_t, uint64_t *, uint32_t ) = 0; + virtual int8_t GetQueryUGCStatistic( uint64_t, uint32_t, uint32_t, uint64_t * ) = 0; virtual uint32_t GetQueryUGCNumAdditionalPreviews( uint64_t, uint32_t ) = 0; - virtual bool GetQueryUGCAdditionalPreview( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t, uint32_t * ) = 0; + virtual int8_t GetQueryUGCAdditionalPreview( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t, uint32_t * ) = 0; virtual uint32_t GetQueryUGCNumKeyValueTags( uint64_t, uint32_t ) = 0; - virtual bool GetQueryUGCKeyValueTag( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t ) = 0; - virtual bool GetQueryUGCKeyValueTag( uint64_t, uint32_t, const char *, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCKeyValueTag( uint64_t, uint32_t, uint32_t, char *, uint32_t, char *, uint32_t ) = 0; + virtual int8_t GetQueryUGCKeyValueTag( uint64_t, uint32_t, const char *, char *, uint32_t ) = 0; virtual uint32_t GetQueryUGCContentDescriptors( uint64_t, uint32_t, uint32_t *, uint32_t ) = 0; - virtual bool ReleaseQueryUGCRequest( uint64_t ) = 0; - virtual bool AddRequiredTag( uint64_t, const char * ) = 0; - virtual bool AddRequiredTagGroup( uint64_t, const u_SteamParamStringArray_t * ) = 0; - virtual bool AddExcludedTag( uint64_t, const char * ) = 0; - virtual bool SetReturnOnlyIDs( uint64_t, bool ) = 0; - virtual bool SetReturnKeyValueTags( uint64_t, bool ) = 0; - virtual bool SetReturnLongDescription( uint64_t, bool ) = 0; - virtual bool SetReturnMetadata( uint64_t, bool ) = 0; - virtual bool SetReturnChildren( uint64_t, bool ) = 0; - virtual bool SetReturnAdditionalPreviews( uint64_t, bool ) = 0; - virtual bool SetReturnTotalOnly( uint64_t, bool ) = 0; - virtual bool SetReturnPlaytimeStats( uint64_t, uint32_t ) = 0; - virtual bool SetLanguage( uint64_t, const char * ) = 0; - virtual bool SetAllowCachedResponse( uint64_t, uint32_t ) = 0; - virtual bool SetCloudFileNameFilter( uint64_t, const char * ) = 0; - virtual bool SetMatchAnyTag( uint64_t, bool ) = 0; - virtual bool SetSearchText( uint64_t, const char * ) = 0; - virtual bool SetRankedByTrendDays( uint64_t, uint32_t ) = 0; - virtual bool SetTimeCreatedDateRange( uint64_t, uint32_t, uint32_t ) = 0; - virtual bool SetTimeUpdatedDateRange( uint64_t, uint32_t, uint32_t ) = 0; - virtual bool AddRequiredKeyValueTag( uint64_t, const char *, const char * ) = 0; + virtual int8_t ReleaseQueryUGCRequest( uint64_t ) = 0; + virtual int8_t AddRequiredTag( uint64_t, const char * ) = 0; + virtual int8_t AddRequiredTagGroup( uint64_t, const u_SteamParamStringArray_t * ) = 0; + virtual int8_t AddExcludedTag( uint64_t, const char * ) = 0; + virtual int8_t SetReturnOnlyIDs( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnKeyValueTags( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnLongDescription( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnMetadata( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnChildren( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnAdditionalPreviews( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnTotalOnly( uint64_t, int8_t ) = 0; + virtual int8_t SetReturnPlaytimeStats( uint64_t, uint32_t ) = 0; + virtual int8_t SetLanguage( uint64_t, const char * ) = 0; + virtual int8_t SetAllowCachedResponse( uint64_t, uint32_t ) = 0; + virtual int8_t SetCloudFileNameFilter( uint64_t, const char * ) = 0; + virtual int8_t SetMatchAnyTag( uint64_t, int8_t ) = 0; + virtual int8_t SetSearchText( uint64_t, const char * ) = 0; + virtual int8_t SetRankedByTrendDays( uint64_t, uint32_t ) = 0; + virtual int8_t SetTimeCreatedDateRange( uint64_t, uint32_t, uint32_t ) = 0; + virtual int8_t SetTimeUpdatedDateRange( uint64_t, uint32_t, uint32_t ) = 0; + virtual int8_t AddRequiredKeyValueTag( uint64_t, const char *, const char * ) = 0; virtual uint64_t RequestUGCDetails( uint64_t, uint32_t ) = 0; virtual uint64_t CreateItem( uint32_t, uint32_t ) = 0; virtual uint64_t StartItemUpdate( uint32_t, uint64_t ) = 0; - virtual bool SetItemTitle( uint64_t, const char * ) = 0; - virtual bool SetItemDescription( uint64_t, const char * ) = 0; - virtual bool SetItemUpdateLanguage( uint64_t, const char * ) = 0; - virtual bool SetItemMetadata( uint64_t, const char * ) = 0; - virtual bool SetItemVisibility( uint64_t, uint32_t ) = 0; - virtual bool SetItemTags( uint64_t, const u_SteamParamStringArray_t *, bool ) = 0; - virtual bool SetItemContent( uint64_t, const char * ) = 0; - virtual bool SetItemPreview( uint64_t, const char * ) = 0; - virtual bool SetAllowLegacyUpload( uint64_t, bool ) = 0; - virtual bool RemoveAllItemKeyValueTags( uint64_t ) = 0; - virtual bool RemoveItemKeyValueTags( uint64_t, const char * ) = 0; - virtual bool AddItemKeyValueTag( uint64_t, const char *, const char * ) = 0; - virtual bool AddItemPreviewFile( uint64_t, const char *, uint32_t ) = 0; - virtual bool AddItemPreviewVideo( uint64_t, const char * ) = 0; - virtual bool UpdateItemPreviewFile( uint64_t, uint32_t, const char * ) = 0; - virtual bool UpdateItemPreviewVideo( uint64_t, uint32_t, const char * ) = 0; - virtual bool RemoveItemPreview( uint64_t, uint32_t ) = 0; - virtual bool AddContentDescriptor( uint64_t, uint32_t ) = 0; - virtual bool RemoveContentDescriptor( uint64_t, uint32_t ) = 0; + virtual int8_t SetItemTitle( uint64_t, const char * ) = 0; + virtual int8_t SetItemDescription( uint64_t, const char * ) = 0; + virtual int8_t SetItemUpdateLanguage( uint64_t, const char * ) = 0; + virtual int8_t SetItemMetadata( uint64_t, const char * ) = 0; + virtual int8_t SetItemVisibility( uint64_t, uint32_t ) = 0; + virtual int8_t SetItemTags( uint64_t, const u_SteamParamStringArray_t *, int8_t ) = 0; + virtual int8_t SetItemContent( uint64_t, const char * ) = 0; + virtual int8_t SetItemPreview( uint64_t, const char * ) = 0; + virtual int8_t SetAllowLegacyUpload( uint64_t, int8_t ) = 0; + virtual int8_t RemoveAllItemKeyValueTags( uint64_t ) = 0; + virtual int8_t RemoveItemKeyValueTags( uint64_t, const char * ) = 0; + virtual int8_t AddItemKeyValueTag( uint64_t, const char *, const char * ) = 0; + virtual int8_t AddItemPreviewFile( uint64_t, const char *, uint32_t ) = 0; + virtual int8_t AddItemPreviewVideo( uint64_t, const char * ) = 0; + virtual int8_t UpdateItemPreviewFile( uint64_t, uint32_t, const char * ) = 0; + virtual int8_t UpdateItemPreviewVideo( uint64_t, uint32_t, const char * ) = 0; + virtual int8_t RemoveItemPreview( uint64_t, uint32_t ) = 0; + virtual int8_t AddContentDescriptor( uint64_t, uint32_t ) = 0; + virtual int8_t RemoveContentDescriptor( uint64_t, uint32_t ) = 0; virtual uint64_t SubmitItemUpdate( uint64_t, const char * ) = 0; virtual uint32_t GetItemUpdateProgress( uint64_t, uint64_t *, uint64_t * ) = 0; - virtual uint64_t SetUserItemVote( uint64_t, bool ) = 0; + virtual uint64_t SetUserItemVote( uint64_t, int8_t ) = 0; virtual uint64_t GetUserItemVote( uint64_t ) = 0; virtual uint64_t AddItemToFavorites( uint32_t, uint64_t ) = 0; virtual uint64_t RemoveItemFromFavorites( uint32_t, uint64_t ) = 0; @@ -7005,11 +7005,11 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 virtual uint32_t GetNumSubscribedItems( ) = 0; virtual uint32_t GetSubscribedItems( uint64_t *, uint32_t ) = 0; virtual uint32_t GetItemState( uint64_t ) = 0; - virtual bool GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, uint32_t * ) = 0; - virtual bool GetItemDownloadInfo( uint64_t, uint64_t *, uint64_t * ) = 0; - virtual bool DownloadItem( uint64_t, bool ) = 0; - virtual bool BInitWorkshopForGameServer( uint32_t, const char * ) = 0; - virtual void SuspendDownloads( bool ) = 0; + virtual int8_t GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, uint32_t * ) = 0; + virtual int8_t GetItemDownloadInfo( uint64_t, uint64_t *, uint64_t * ) = 0; + virtual int8_t DownloadItem( uint64_t, int8_t ) = 0; + virtual int8_t BInitWorkshopForGameServer( uint32_t, const char * ) = 0; + virtual void SuspendDownloads( int8_t ) = 0; virtual uint64_t StartPlaytimeTracking( uint64_t *, uint32_t ) = 0; virtual uint64_t StopPlaytimeTracking( uint64_t *, uint32_t ) = 0; virtual uint64_t StopPlaytimeTrackingForAllItems( ) = 0; @@ -7019,7 +7019,7 @@ struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 virtual uint64_t RemoveAppDependency( uint64_t, uint32_t ) = 0; virtual uint64_t GetAppDependencies( uint64_t ) = 0; virtual uint64_t DeleteItem( uint64_t ) = 0; - virtual bool ShowWorkshopEULA( ) = 0; + virtual int8_t ShowWorkshopEULA( ) = 0; virtual uint64_t GetWorkshopEULAStatus( ) = 0; virtual uint32_t GetUserContentDescriptorPreferences( uint32_t *, uint32_t ) = 0; #endif /* __cplusplus */ @@ -7033,9 +7033,9 @@ struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 virtual CSteamID GetSessionSteamID( uint32_t ) = 0; virtual const char * GetSessionClientName( uint32_t ) = 0; virtual uint32_t GetSessionClientFormFactor( uint32_t ) = 0; - virtual bool BGetSessionClientResolution( uint32_t, int32_t *, int32_t * ) = 0; - virtual bool BStartRemotePlayTogether( bool ) = 0; - virtual bool BSendRemotePlayTogetherInvite( CSteamID ) = 0; + virtual int8_t BGetSessionClientResolution( uint32_t, int32_t *, int32_t * ) = 0; + virtual int8_t BStartRemotePlayTogether( int8_t ) = 0; + virtual int8_t BSendRemotePlayTogetherInvite( CSteamID ) = 0; #endif /* __cplusplus */ }; diff --git a/lsteamclient/unixlib.cpp b/lsteamclient/unixlib.cpp index dd057d83..bbb731ba 100644 --- a/lsteamclient/unixlib.cpp +++ b/lsteamclient/unixlib.cpp @@ -266,9 +266,9 @@ NTSTATUS steamclient_next_callback( void *args ) } static void *(*p_CreateInterface)( const char *name, int *return_code ); -static bool (*p_Steam_BGetCallback)( int32_t a, u_CallbackMsg_t *b, int32_t *c ); -static bool (*p_Steam_GetAPICallResult)( int32_t, uint64_t, void *, int, int, bool * ); -static bool (*p_Steam_FreeLastCallback)( int32_t ); +static int8_t (*p_Steam_BGetCallback)( int32_t a, u_CallbackMsg_t *b, int32_t *c ); +static int8_t (*p_Steam_GetAPICallResult)( int32_t, uint64_t, void *, int, int, int8_t * ); +static int8_t (*p_Steam_FreeLastCallback)( int32_t ); static void (*p_Steam_ReleaseThreadLocalMemory)( int ); static bool (*p_Steam_IsKnownInterface)( const char * ); static void (*p_Steam_NotifyMissingInterface)( int32_t, const char * ); diff --git a/lsteamclient/unixlib.h b/lsteamclient/unixlib.h index 6295c147..021f4a66 100644 --- a/lsteamclient/unixlib.h +++ b/lsteamclient/unixlib.h @@ -4,7 +4,6 @@ #include #include #include -#include #include #include @@ -25,9 +24,9 @@ extern char g_tmppath[PATH_MAX]; struct steamclient_init_params { const char *steam_app_id; - bool steam_app_id_unset; + int8_t steam_app_id_unset; const char *ignore_child_processes; - bool ignore_child_processes_unset; + int8_t ignore_child_processes_unset; }; enum callback_type @@ -102,7 +101,7 @@ struct callback struct steamclient_next_callback_params { - bool _ret; + int8_t _ret; struct callback *callback; uint32_t size; }; @@ -116,18 +115,18 @@ struct steamclient_CreateInterface_params struct steamclient_Steam_GetAPICallResult_params { - bool _ret; + int8_t _ret; int32_t pipe; uint64_t call; void *w_callback; int w_callback_len; int id; - bool *failed; + int8_t *failed; }; struct steamclient_Steam_BGetCallback_params { - bool _ret; + int8_t _ret; uint32_t pipe; w_CallbackMsg_t *w_msg; int32_t *ignored; @@ -142,7 +141,7 @@ struct steamclient_callback_message_receive_params struct steamclient_Steam_FreeLastCallback_params { - bool _ret; + int8_t _ret; uint32_t pipe; }; @@ -153,7 +152,7 @@ struct steamclient_Steam_ReleaseThreadLocalMemory_params struct steamclient_Steam_IsKnownInterface_params { - bool _ret; + int8_t _ret; const char *version; }; diff --git a/lsteamclient/unixlib_generated.h b/lsteamclient/unixlib_generated.h index f39633e7..9a0d1e8e 100644 --- a/lsteamclient/unixlib_generated.h +++ b/lsteamclient/unixlib_generated.h @@ -2,7 +2,6 @@ #include #include #include -#include #ifdef __cplusplus extern "C" { @@ -60,25 +59,25 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION001_GetAppData_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentGameLanguage_params @@ -96,32 +95,32 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages_param struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsVACBanned_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetCurrentGameLanguage_params @@ -139,39 +138,39 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetAvailableGameLanguages_param struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsDlcInstalled_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsVACBanned_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetCurrentGameLanguage_params @@ -189,14 +188,14 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetAvailableGameLanguages_param struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedApp_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsDlcInstalled_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t appID; }; @@ -210,7 +209,7 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetEarliestPurchaseUnixTime_par struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedFromFreeWeekend_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetDLCCount_params @@ -222,10 +221,10 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetDLCCount_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iDLC; uint32_t *pAppID; - bool *pbAvailable; + int8_t *pbAvailable; char *pchName; int32_t cchNameBufferSize; }; @@ -245,25 +244,25 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_UninstallDLC_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsLowViolence_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsCybercafe_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsVACBanned_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentGameLanguage_params @@ -281,14 +280,14 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAvailableGameLanguages_param struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedApp_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsDlcInstalled_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t appID; }; @@ -302,7 +301,7 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetEarliestPurchaseUnixTime_par struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedFromFreeWeekend_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetDLCCount_params @@ -314,10 +313,10 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetDLCCount_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByIndex_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iDLC; uint32_t *pAppID; - bool *pbAvailable; + int8_t *pbAvailable; char *pchName; int32_t cchNameBufferSize; }; @@ -343,7 +342,7 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_RequestAppProofOfPurchaseKey_pa struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; char *pchName; int32_t cchNameBufferSize; }; @@ -351,8 +350,8 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_MarkContentCorrupt_params { struct u_steam_iface *linux_side; - bool _ret; - bool bMissingFilesOnly; + int8_t _ret; + int8_t bMissingFilesOnly; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetInstalledDepots_params @@ -375,32 +374,32 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDir_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsAppInstalled_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsLowViolence_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsCybercafe_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsVACBanned_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentGameLanguage_params @@ -418,14 +417,14 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAvailableGameLanguages_param struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedApp_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsDlcInstalled_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t appID; }; @@ -439,7 +438,7 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetEarliestPurchaseUnixTime_par struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedFromFreeWeekend_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetDLCCount_params @@ -451,10 +450,10 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetDLCCount_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByIndex_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iDLC; uint32_t *pAppID; - bool *pbAvailable; + int8_t *pbAvailable; char *pchName; int32_t cchNameBufferSize; }; @@ -480,7 +479,7 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_RequestAppProofOfPurchaseKey_pa struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; char *pchName; int32_t cchNameBufferSize; }; @@ -488,8 +487,8 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_MarkContentCorrupt_params { struct u_steam_iface *linux_side; - bool _ret; - bool bMissingFilesOnly; + int8_t _ret; + int8_t bMissingFilesOnly; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetInstalledDepots_params @@ -513,7 +512,7 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppInstallDir_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsAppInstalled_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t appID; }; @@ -533,25 +532,25 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetLaunchQueryParam_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsVACBanned_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentGameLanguage_params @@ -569,14 +568,14 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAvailableGameLanguages_param struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedApp_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsDlcInstalled_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t appID; }; @@ -590,7 +589,7 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetEarliestPurchaseUnixTime_par struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedFromFreeWeekend_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDLCCount_params @@ -602,10 +601,10 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDLCCount_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByIndex_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iDLC; uint32_t *pAppID; - bool *pbAvailable; + int8_t *pbAvailable; char *pchName; int32_t cchNameBufferSize; }; @@ -631,7 +630,7 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_RequestAppProofOfPurchaseKey_pa struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; char *pchName; int32_t cchNameBufferSize; }; @@ -639,8 +638,8 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_MarkContentCorrupt_params { struct u_steam_iface *linux_side; - bool _ret; - bool bMissingFilesOnly; + int8_t _ret; + int8_t bMissingFilesOnly; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetInstalledDepots_params @@ -664,7 +663,7 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppInstallDir_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsAppInstalled_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t appID; }; @@ -684,7 +683,7 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetLaunchQueryParam_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t nAppID; uint64_t *punBytesDownloaded; uint64_t *punBytesTotal; @@ -699,25 +698,25 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppBuildId_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsLowViolence_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsCybercafe_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsVACBanned_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentGameLanguage_params @@ -735,14 +734,14 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAvailableGameLanguages_param struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedApp_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsDlcInstalled_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t appID; }; @@ -756,7 +755,7 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetEarliestPurchaseUnixTime_par struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFreeWeekend_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDLCCount_params @@ -768,10 +767,10 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDLCCount_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByIndex_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iDLC; uint32_t *pAppID; - bool *pbAvailable; + int8_t *pbAvailable; char *pchName; int32_t cchNameBufferSize; }; @@ -797,7 +796,7 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAppProofOfPurchaseKey_pa struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; char *pchName; int32_t cchNameBufferSize; }; @@ -805,8 +804,8 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_MarkContentCorrupt_params { struct u_steam_iface *linux_side; - bool _ret; - bool bMissingFilesOnly; + int8_t _ret; + int8_t bMissingFilesOnly; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetInstalledDepots_params @@ -830,7 +829,7 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppInstallDir_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsAppInstalled_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t appID; }; @@ -850,7 +849,7 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchQueryParam_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadProgress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t nAppID; uint64_t *punBytesDownloaded; uint64_t *punBytesTotal; @@ -885,13 +884,13 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchCommandLine_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFamilySharing_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t *punSecondsAllowed; uint32_t *punSecondsPlayed; }; @@ -899,7 +898,7 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetDlcContext_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t nAppID; }; @@ -919,14 +918,14 @@ struct ISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001_GetAppOwnershipTicket struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Init_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchAbsolutePathToControllerConfigVDF; }; struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Shutdown_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_RunFrame_params @@ -937,7 +936,7 @@ struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_RunFrame_params struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_GetControllerState_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unControllerIndex; SteamControllerState001_t *pState; }; @@ -959,13 +958,13 @@ struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_SetOverrideMode_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Init_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Shutdown_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CreateBrowser_params @@ -1115,7 +1114,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetKeyFocus_para { struct u_steam_iface *linux_side; uint32_t unBrowserHandle; - bool bHasKeyFocus; + int8_t bHasKeyFocus; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ViewSource_params @@ -1141,8 +1140,8 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find_params struct u_steam_iface *linux_side; uint32_t unBrowserHandle; const char *pchSearchStr; - bool bCurrentlyInFind; - bool bReverse; + int8_t bCurrentlyInFind; + int8_t bReverse; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopFind_params @@ -1163,14 +1162,14 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AllowStartReques { struct u_steam_iface *linux_side; uint32_t unBrowserHandle; - bool bAllowed; + int8_t bAllowed; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_JSDialogResponse_params { struct u_steam_iface *linux_side; uint32_t unBrowserHandle; - bool bResult; + int8_t bResult; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_FileLoadDialogResponse_params @@ -1183,13 +1182,13 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_FileLoadDialogRe struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Init_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Shutdown_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CreateBrowser_params @@ -1339,7 +1338,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetKeyFocus_para { struct u_steam_iface *linux_side; uint32_t unBrowserHandle; - bool bHasKeyFocus; + int8_t bHasKeyFocus; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ViewSource_params @@ -1365,8 +1364,8 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find_params struct u_steam_iface *linux_side; uint32_t unBrowserHandle; const char *pchSearchStr; - bool bCurrentlyInFind; - bool bReverse; + int8_t bCurrentlyInFind; + int8_t bReverse; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopFind_params @@ -1391,8 +1390,8 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetCookie_params const char *pchValue; const char *pchPath; uint32_t nExpires; - bool bSecure; - bool bHTTPOnly; + int8_t bSecure; + int8_t bHTTPOnly; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetPageScaleFactor_params @@ -1408,14 +1407,14 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AllowStartReques { struct u_steam_iface *linux_side; uint32_t unBrowserHandle; - bool bAllowed; + int8_t bAllowed; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_JSDialogResponse_params { struct u_steam_iface *linux_side; uint32_t unBrowserHandle; - bool bResult; + int8_t bResult; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_FileLoadDialogResponse_params @@ -1428,13 +1427,13 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_FileLoadDialogRe struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Init_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Shutdown_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CreateBrowser_params @@ -1584,7 +1583,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetKeyFocus_para { struct u_steam_iface *linux_side; uint32_t unBrowserHandle; - bool bHasKeyFocus; + int8_t bHasKeyFocus; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ViewSource_params @@ -1610,8 +1609,8 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find_params struct u_steam_iface *linux_side; uint32_t unBrowserHandle; const char *pchSearchStr; - bool bCurrentlyInFind; - bool bReverse; + int8_t bCurrentlyInFind; + int8_t bReverse; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopFind_params @@ -1636,8 +1635,8 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetCookie_params const char *pchValue; const char *pchPath; uint32_t nExpires; - bool bSecure; - bool bHTTPOnly; + int8_t bSecure; + int8_t bHTTPOnly; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetPageScaleFactor_params @@ -1653,21 +1652,21 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetBackgroundMod { struct u_steam_iface *linux_side; uint32_t unBrowserHandle; - bool bBackgroundMode; + int8_t bBackgroundMode; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AllowStartRequest_params { struct u_steam_iface *linux_side; uint32_t unBrowserHandle; - bool bAllowed; + int8_t bAllowed; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_JSDialogResponse_params { struct u_steam_iface *linux_side; uint32_t unBrowserHandle; - bool bResult; + int8_t bResult; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_FileLoadDialogResponse_params @@ -1680,13 +1679,13 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_FileLoadDialogRe struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Init_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Shutdown_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CreateBrowser_params @@ -1836,7 +1835,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetKeyFocus_para { struct u_steam_iface *linux_side; uint32_t unBrowserHandle; - bool bHasKeyFocus; + int8_t bHasKeyFocus; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ViewSource_params @@ -1862,8 +1861,8 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find_params struct u_steam_iface *linux_side; uint32_t unBrowserHandle; const char *pchSearchStr; - bool bCurrentlyInFind; - bool bReverse; + int8_t bCurrentlyInFind; + int8_t bReverse; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopFind_params @@ -1888,8 +1887,8 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetCookie_params const char *pchValue; const char *pchPath; uint32_t nExpires; - bool bSecure; - bool bHTTPOnly; + int8_t bSecure; + int8_t bHTTPOnly; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetPageScaleFactor_params @@ -1905,7 +1904,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetBackgroundMod { struct u_steam_iface *linux_side; uint32_t unBrowserHandle; - bool bBackgroundMode; + int8_t bBackgroundMode; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetDPIScalingFactor_params @@ -1919,14 +1918,14 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AllowStartReques { struct u_steam_iface *linux_side; uint32_t unBrowserHandle; - bool bAllowed; + int8_t bAllowed; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_JSDialogResponse_params { struct u_steam_iface *linux_side; uint32_t unBrowserHandle; - bool bResult; + int8_t bResult; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_FileLoadDialogResponse_params @@ -1939,13 +1938,13 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_FileLoadDialogRe struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Init_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Shutdown_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CreateBrowser_params @@ -2059,7 +2058,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyDown_params uint32_t unBrowserHandle; uint32_t nNativeKeyCode; uint32_t eHTMLKeyModifiers; - bool bIsSystemKey; + int8_t bIsSystemKey; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyUp_params @@ -2096,7 +2095,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetKeyFocus_para { struct u_steam_iface *linux_side; uint32_t unBrowserHandle; - bool bHasKeyFocus; + int8_t bHasKeyFocus; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ViewSource_params @@ -2122,8 +2121,8 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find_params struct u_steam_iface *linux_side; uint32_t unBrowserHandle; const char *pchSearchStr; - bool bCurrentlyInFind; - bool bReverse; + int8_t bCurrentlyInFind; + int8_t bReverse; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopFind_params @@ -2148,8 +2147,8 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetCookie_params const char *pchValue; const char *pchPath; uint32_t nExpires; - bool bSecure; - bool bHTTPOnly; + int8_t bSecure; + int8_t bHTTPOnly; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetPageScaleFactor_params @@ -2165,7 +2164,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetBackgroundMod { struct u_steam_iface *linux_side; uint32_t unBrowserHandle; - bool bBackgroundMode; + int8_t bBackgroundMode; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetDPIScalingFactor_params @@ -2185,14 +2184,14 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AllowStartReques { struct u_steam_iface *linux_side; uint32_t unBrowserHandle; - bool bAllowed; + int8_t bAllowed; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_JSDialogResponse_params { struct u_steam_iface *linux_side; uint32_t unBrowserHandle; - bool bResult; + int8_t bResult; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_FileLoadDialogResponse_params @@ -2213,7 +2212,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_CreateHTTPRequest_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; uint64_t ulContextValue; }; @@ -2221,7 +2220,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue_para struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivityTimeout_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; uint32_t unTimeoutSeconds; }; @@ -2229,7 +2228,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivityTi struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeaderValue_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; const char *pchHeaderName; const char *pchHeaderValue; @@ -2238,7 +2237,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeaderValue_param struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOrPostParameter_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; const char *pchParamName; const char *pchParamValue; @@ -2247,7 +2246,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOrPostParamete struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; uint64_t *pCallHandle; }; @@ -2255,21 +2254,21 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_DeferHTTPRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_PrioritizeHTTPRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderSize_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; const char *pchHeaderName; uint32_t *unResponseHeaderSize; @@ -2278,7 +2277,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderSize_param struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderValue_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; const char *pchHeaderName; uint8_t *pHeaderValueBuffer; @@ -2288,7 +2287,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderValue_para struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodySize_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; uint32_t *unBodySize; }; @@ -2296,7 +2295,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodySize_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodyData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; uint8_t *pBodyDataBuffer; uint32_t unBufferSize; @@ -2305,14 +2304,14 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodyData_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_ReleaseHTTPRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; float *pflPercentOut; }; @@ -2320,7 +2319,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct_para struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestRawPostBody_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; const char *pchContentType; uint8_t *pubBody; @@ -2338,7 +2337,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateHTTPRequest_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; uint64_t ulContextValue; }; @@ -2346,7 +2345,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue_para struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivityTimeout_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; uint32_t unTimeoutSeconds; }; @@ -2354,7 +2353,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivityTi struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeaderValue_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; const char *pchHeaderName; const char *pchHeaderValue; @@ -2363,7 +2362,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeaderValue_param struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOrPostParameter_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; const char *pchParamName; const char *pchParamValue; @@ -2372,7 +2371,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOrPostParamete struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; uint64_t *pCallHandle; }; @@ -2380,7 +2379,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndStreamResponse_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; uint64_t *pCallHandle; }; @@ -2388,21 +2387,21 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndStreamRespons struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_DeferHTTPRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_PrioritizeHTTPRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderSize_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; const char *pchHeaderName; uint32_t *unResponseHeaderSize; @@ -2411,7 +2410,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderSize_param struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderValue_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; const char *pchHeaderName; uint8_t *pHeaderValueBuffer; @@ -2421,7 +2420,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderValue_para struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodySize_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; uint32_t *unBodySize; }; @@ -2429,7 +2428,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodySize_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodyData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; uint8_t *pBodyDataBuffer; uint32_t unBufferSize; @@ -2438,7 +2437,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodyData_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingResponseBodyData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; uint32_t cOffset; uint8_t *pBodyDataBuffer; @@ -2448,14 +2447,14 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingResponseBodyDat struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseHTTPRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProgressPct_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; float *pflPercentOut; }; @@ -2463,7 +2462,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProgressPct_para struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPostBody_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; const char *pchContentType; uint8_t *pubBody; @@ -2474,20 +2473,20 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateCookieContainer_params { struct u_steam_iface *linux_side; uint32_t _ret; - bool bAllowResponsesToModify; + int8_t bAllowResponsesToModify; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseCookieContainer_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hCookieContainer; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hCookieContainer; const char *pchHost; const char *pchUrl; @@ -2497,7 +2496,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCookieContainer_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; uint32_t hCookieContainer; }; @@ -2505,7 +2504,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCookieContainer_p struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserAgentInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; const char *pchUserAgentInfo; }; @@ -2513,15 +2512,15 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserAgentInfo_par struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRequiresVerifiedCertificate_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; - bool bRequireVerifiedCertificate; + int8_t bRequireVerifiedCertificate; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeoutMS_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; uint32_t unMilliseconds; }; @@ -2529,9 +2528,9 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeoutMS struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPRequestWasTimedOut_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; - bool *pbWasTimedOut; + int8_t *pbWasTimedOut; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateHTTPRequest_params @@ -2545,7 +2544,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateHTTPRequest_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; uint64_t ulContextValue; }; @@ -2553,7 +2552,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue_para struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivityTimeout_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; uint32_t unTimeoutSeconds; }; @@ -2561,7 +2560,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivityTi struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeaderValue_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; const char *pchHeaderName; const char *pchHeaderValue; @@ -2570,7 +2569,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeaderValue_param struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOrPostParameter_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; const char *pchParamName; const char *pchParamValue; @@ -2579,7 +2578,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOrPostParamete struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; uint64_t *pCallHandle; }; @@ -2587,7 +2586,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndStreamResponse_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; uint64_t *pCallHandle; }; @@ -2595,21 +2594,21 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndStreamRespons struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_DeferHTTPRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_PrioritizeHTTPRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderSize_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; const char *pchHeaderName; uint32_t *unResponseHeaderSize; @@ -2618,7 +2617,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderSize_param struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderValue_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; const char *pchHeaderName; uint8_t *pHeaderValueBuffer; @@ -2628,7 +2627,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderValue_para struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodySize_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; uint32_t *unBodySize; }; @@ -2636,7 +2635,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodySize_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodyData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; uint8_t *pBodyDataBuffer; uint32_t unBufferSize; @@ -2645,7 +2644,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodyData_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingResponseBodyData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; uint32_t cOffset; uint8_t *pBodyDataBuffer; @@ -2655,14 +2654,14 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingResponseBodyDat struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseHTTPRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProgressPct_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; float *pflPercentOut; }; @@ -2670,7 +2669,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProgressPct_para struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPostBody_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; const char *pchContentType; uint8_t *pubBody; @@ -2681,20 +2680,20 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateCookieContainer_params { struct u_steam_iface *linux_side; uint32_t _ret; - bool bAllowResponsesToModify; + int8_t bAllowResponsesToModify; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseCookieContainer_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hCookieContainer; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hCookieContainer; const char *pchHost; const char *pchUrl; @@ -2704,7 +2703,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCookieContainer_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; uint32_t hCookieContainer; }; @@ -2712,7 +2711,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCookieContainer_p struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserAgentInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; const char *pchUserAgentInfo; }; @@ -2720,15 +2719,15 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserAgentInfo_par struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRequiresVerifiedCertificate_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; - bool bRequireVerifiedCertificate; + int8_t bRequireVerifiedCertificate; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeoutMS_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; uint32_t unMilliseconds; }; @@ -2736,9 +2735,9 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeoutMS struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPRequestWasTimedOut_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hRequest; - bool *pbWasTimedOut; + int8_t *pbWasTimedOut; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultStatus_params @@ -2751,7 +2750,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultStatus_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t resultHandle; SteamItemDetails_t *pOutItemsArray; uint32_t *punOutItemsArraySize; @@ -2767,7 +2766,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultTimestamp_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_CheckResultSteamID_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t resultHandle; CSteamID steamIDExpected; }; @@ -2781,14 +2780,14 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DestroyResult_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetAllItems_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; const uint64_t *pInstanceIDs; uint32_t unCountInstanceIDs; @@ -2797,7 +2796,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t resultHandle; void *pOutBuffer; uint32_t *punOutBufferSize; @@ -2806,17 +2805,17 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pOutResultHandle; const void *pBuffer; uint32_t unBufferSize; - bool bRESERVED_MUST_BE_FALSE; + int8_t bRESERVED_MUST_BE_FALSE; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; const int32_t *pArrayItemDefs; const uint32_t *punArrayQuantity; @@ -2826,14 +2825,14 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GrantPromoItems_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; int32_t itemDef; }; @@ -2841,7 +2840,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; const int32_t *pArrayItemDefs; uint32_t unArrayLength; @@ -2850,7 +2849,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; uint64_t itemConsume; uint32_t unQuantity; @@ -2859,7 +2858,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; const int32_t *pArrayGenerate; const uint32_t *punArrayGenerateQuantity; @@ -2872,7 +2871,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TransferItemQuantity_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; uint64_t itemIdSource; uint32_t unQuantity; @@ -2887,7 +2886,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SendItemDropHeartbeat_param struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; int32_t dropListDefinition; }; @@ -2895,7 +2894,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; CSteamID steamIDTradePartner; const uint64_t *pArrayGive; @@ -2909,13 +2908,13 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_LoadItemDefinitions_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionIDs_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pItemDefIDs; uint32_t *punItemDefIDsArraySize; }; @@ -2923,7 +2922,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionIDs_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionProperty_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iDefinition; const char *pchPropertyName; char *pchValueBuffer; @@ -2940,7 +2939,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_RequestEligiblePromoItemDef struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetEligiblePromoItemDefinitionIDs_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamID; int32_t *pItemDefIDs; uint32_t *punItemDefIDsArraySize; @@ -2956,7 +2955,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultStatus_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t resultHandle; SteamItemDetails_t *pOutItemsArray; uint32_t *punOutItemsArraySize; @@ -2965,7 +2964,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemProperty_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t resultHandle; uint32_t unItemIndex; const char *pchPropertyName; @@ -2983,7 +2982,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultTimestamp_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_CheckResultSteamID_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t resultHandle; CSteamID steamIDExpected; }; @@ -2997,14 +2996,14 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DestroyResult_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetAllItems_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; const uint64_t *pInstanceIDs; uint32_t unCountInstanceIDs; @@ -3013,7 +3012,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t resultHandle; void *pOutBuffer; uint32_t *punOutBufferSize; @@ -3022,17 +3021,17 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pOutResultHandle; const void *pBuffer; uint32_t unBufferSize; - bool bRESERVED_MUST_BE_FALSE; + int8_t bRESERVED_MUST_BE_FALSE; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; const int32_t *pArrayItemDefs; const uint32_t *punArrayQuantity; @@ -3042,14 +3041,14 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GrantPromoItems_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; int32_t itemDef; }; @@ -3057,7 +3056,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; const int32_t *pArrayItemDefs; uint32_t unArrayLength; @@ -3066,7 +3065,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; uint64_t itemConsume; uint32_t unQuantity; @@ -3075,7 +3074,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; const int32_t *pArrayGenerate; const uint32_t *punArrayGenerateQuantity; @@ -3088,7 +3087,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TransferItemQuantity_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; uint64_t itemIdSource; uint32_t unQuantity; @@ -3103,7 +3102,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SendItemDropHeartbeat_param struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; int32_t dropListDefinition; }; @@ -3111,7 +3110,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; CSteamID steamIDTradePartner; const uint64_t *pArrayGive; @@ -3125,13 +3124,13 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_LoadItemDefinitions_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionIDs_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pItemDefIDs; uint32_t *punItemDefIDsArraySize; }; @@ -3139,7 +3138,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionIDs_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionProperty_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iDefinition; const char *pchPropertyName; char *pchValueBuffer; @@ -3156,7 +3155,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestEligiblePromoItemDef struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligiblePromoItemDefinitionIDs_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamID; int32_t *pItemDefIDs; uint32_t *punItemDefIDsArraySize; @@ -3186,7 +3185,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetNumItemsWithPrices_param struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPrices_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pArrayItemDefs; uint64_t *pPrices; uint32_t unArrayLength; @@ -3195,7 +3194,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPrices_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemPrice_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iDefinition; uint64_t *pPrice; }; @@ -3209,7 +3208,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartUpdateProperties_param struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint64_t nItemID; const char *pchPropertyName; @@ -3218,7 +3217,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint64_t nItemID; const char *pchPropertyName; @@ -3228,17 +3227,17 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint64_t nItemID; const char *pchPropertyName; - bool bValue; + int8_t bValue; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint64_t nItemID; const char *pchPropertyName; @@ -3248,7 +3247,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint64_t nItemID; const char *pchPropertyName; @@ -3258,7 +3257,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SubmitUpdateProperties_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; int32_t *pResultHandle; }; @@ -3273,7 +3272,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultStatus_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t resultHandle; SteamItemDetails_t *pOutItemsArray; uint32_t *punOutItemsArraySize; @@ -3282,7 +3281,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemProperty_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t resultHandle; uint32_t unItemIndex; const char *pchPropertyName; @@ -3300,7 +3299,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultTimestamp_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_CheckResultSteamID_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t resultHandle; CSteamID steamIDExpected; }; @@ -3314,14 +3313,14 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DestroyResult_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetAllItems_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; const uint64_t *pInstanceIDs; uint32_t unCountInstanceIDs; @@ -3330,7 +3329,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t resultHandle; void *pOutBuffer; uint32_t *punOutBufferSize; @@ -3339,17 +3338,17 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pOutResultHandle; const void *pBuffer; uint32_t unBufferSize; - bool bRESERVED_MUST_BE_FALSE; + int8_t bRESERVED_MUST_BE_FALSE; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; const int32_t *pArrayItemDefs; const uint32_t *punArrayQuantity; @@ -3359,14 +3358,14 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GrantPromoItems_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; int32_t itemDef; }; @@ -3374,7 +3373,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; const int32_t *pArrayItemDefs; uint32_t unArrayLength; @@ -3383,7 +3382,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; uint64_t itemConsume; uint32_t unQuantity; @@ -3392,7 +3391,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; const int32_t *pArrayGenerate; const uint32_t *punArrayGenerateQuantity; @@ -3405,7 +3404,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TransferItemQuantity_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; uint64_t itemIdSource; uint32_t unQuantity; @@ -3420,7 +3419,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SendItemDropHeartbeat_param struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; int32_t dropListDefinition; }; @@ -3428,7 +3427,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; CSteamID steamIDTradePartner; const uint64_t *pArrayGive; @@ -3442,13 +3441,13 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_LoadItemDefinitions_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionIDs_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pItemDefIDs; uint32_t *punItemDefIDsArraySize; }; @@ -3456,7 +3455,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionIDs_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionProperty_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iDefinition; const char *pchPropertyName; char *pchValueBuffer; @@ -3473,7 +3472,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestEligiblePromoItemDef struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligiblePromoItemDefinitionIDs_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamID; int32_t *pItemDefIDs; uint32_t *punItemDefIDsArraySize; @@ -3503,7 +3502,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetNumItemsWithPrices_param struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPrices_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pArrayItemDefs; uint64_t *pCurrentPrices; uint64_t *pBasePrices; @@ -3513,7 +3512,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPrices_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iDefinition; uint64_t *pCurrentPrice; uint64_t *pBasePrice; @@ -3528,7 +3527,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartUpdateProperties_param struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint64_t nItemID; const char *pchPropertyName; @@ -3537,7 +3536,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint64_t nItemID; const char *pchPropertyName; @@ -3547,17 +3546,17 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint64_t nItemID; const char *pchPropertyName; - bool bValue; + int8_t bValue; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint64_t nItemID; const char *pchPropertyName; @@ -3567,7 +3566,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint64_t nItemID; const char *pchPropertyName; @@ -3577,7 +3576,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; int32_t *pResultHandle; }; @@ -3585,7 +3584,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties_para struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_InspectItem_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pResultHandle; const char *pchItemToken; }; @@ -3593,40 +3592,40 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_InspectItem_params struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_RegisterSteamMusicRemote_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_DeregisterSteamMusicRemote_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BIsCurrentMusicRemote_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BActivationSuccess_params { struct u_steam_iface *linux_side; - bool _ret; - bool bValue; + int8_t _ret; + int8_t bValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetDisplayName_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchDisplayName; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPNGIcon_64x64_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; void *pvBuffer; uint32_t cbBufferLength; }; @@ -3634,104 +3633,104 @@ struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPNGIcon_64x64_ struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayPrevious_params { struct u_steam_iface *linux_side; - bool _ret; - bool bValue; + int8_t _ret; + int8_t bValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayNext_params { struct u_steam_iface *linux_side; - bool _ret; - bool bValue; + int8_t _ret; + int8_t bValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableShuffled_params { struct u_steam_iface *linux_side; - bool _ret; - bool bValue; + int8_t _ret; + int8_t bValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableLooped_params { struct u_steam_iface *linux_side; - bool _ret; - bool bValue; + int8_t _ret; + int8_t bValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableQueue_params { struct u_steam_iface *linux_side; - bool _ret; - bool bValue; + int8_t _ret; + int8_t bValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlaylists_params { struct u_steam_iface *linux_side; - bool _ret; - bool bValue; + int8_t _ret; + int8_t bValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdatePlaybackStatus_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t nStatus; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateShuffled_params { struct u_steam_iface *linux_side; - bool _ret; - bool bValue; + int8_t _ret; + int8_t bValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateLooped_params { struct u_steam_iface *linux_side; - bool _ret; - bool bValue; + int8_t _ret; + int8_t bValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateVolume_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; float flValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryWillChange_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryIsAvailable_params { struct u_steam_iface *linux_side; - bool _ret; - bool bAvailable; + int8_t _ret; + int8_t bAvailable; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryText_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchText; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryElapsedSeconds_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t nValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryCoverArt_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; void *pvBuffer; uint32_t cbBufferLength; }; @@ -3739,25 +3738,25 @@ struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntr struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryDidChange_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueWillChange_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetQueueEntries_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQueueEntry_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t nID; int32_t nPosition; const char *pchEntryText; @@ -3766,32 +3765,32 @@ struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQueueEntry_par struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentQueueEntry_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t nID; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueDidChange_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistWillChange_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetPlaylistEntries_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPlaylistEntry_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t nID; int32_t nPosition; const char *pchEntryText; @@ -3800,26 +3799,26 @@ struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPlaylistEntry_ struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentPlaylistEntry_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t nID; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistDidChange_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsEnabled_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsPlaying_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetPlaybackStatus_params @@ -3863,40 +3862,40 @@ struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetVolume_params struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppBlocked_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t nAppID; }; struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppInBlockList_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t nAppID; }; struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eFeature; }; struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eFeature; }; @@ -3937,7 +3936,7 @@ struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientFor struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClientResolution_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unSessionID; int32_t *pnResolutionX; int32_t *pnResolutionY; @@ -3946,7 +3945,7 @@ struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClientRe struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BSendRemotePlayTogetherInvite_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; }; @@ -3987,7 +3986,7 @@ struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientFor struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSessionClientResolution_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unSessionID; int32_t *pnResolutionX; int32_t *pnResolutionY; @@ -3996,21 +3995,21 @@ struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSessionClientRe struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BStartRemotePlayTogether_params { struct u_steam_iface *linux_side; - bool _ret; - bool bShowOverlay; + int8_t _ret; + int8_t bShowOverlay; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BSendRemotePlayTogetherInvite_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileWrite_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; const void *pvData; int32_t cubData; @@ -4035,14 +4034,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileExists_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileDelete_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; @@ -4063,7 +4062,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; }; @@ -4071,7 +4070,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileWrite_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; const void *pvData; int32_t cubData; @@ -4096,7 +4095,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileExists_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; @@ -4117,7 +4116,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; }; @@ -4125,7 +4124,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileWrite_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; const void *pvData; int32_t cubData; @@ -4143,14 +4142,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileForget_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileDelete_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; @@ -4164,14 +4163,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileShare_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileExists_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FilePersisted_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; @@ -4206,7 +4205,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetQuota_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; }; @@ -4214,19 +4213,19 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForAccount_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForApp_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_SetCloudEnabledForApp_params { struct u_steam_iface *linux_side; - bool bEnabled; + int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCDownload_params @@ -4239,7 +4238,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCDownload_p struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetUGCDetails_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hContent; uint32_t *pnAppID; char **ppchName; @@ -4272,7 +4271,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCH struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileWrite_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; const void *pvData; int32_t cubData; @@ -4290,14 +4289,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileForget_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileDelete_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; @@ -4311,7 +4310,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileShare_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetSyncPlatforms_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; }; @@ -4319,14 +4318,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetSyncPlatfo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileExists_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FilePersisted_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; @@ -4368,7 +4367,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetQuota_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; }; @@ -4376,19 +4375,19 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForAccount_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForApp_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetCloudEnabledForApp_params { struct u_steam_iface *linux_side; - bool bEnabled; + int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCDownload_params @@ -4401,7 +4400,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCDownload_p struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetUGCDetails_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hContent; uint32_t *pnAppID; char **ppchName; @@ -4434,7 +4433,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCH struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileWrite_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; const void *pvData; int32_t cubData; @@ -4452,14 +4451,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileForget_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileDelete_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; @@ -4473,7 +4472,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileShare_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetSyncPlatforms_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; }; @@ -4481,14 +4480,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetSyncPlatfo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileExists_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FilePersisted_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; @@ -4530,7 +4529,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetQuota_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; }; @@ -4538,19 +4537,19 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForAccount_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForApp_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetCloudEnabledForApp_params { struct u_steam_iface *linux_side; - bool bEnabled; + int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCDownload_params @@ -4563,7 +4562,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCDownload_p struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetUGCDetails_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hContent; uint32_t *pnAppID; char **ppchName; @@ -4670,7 +4669,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UnsubscribePu struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileWrite_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; const void *pvData; int32_t cubData; @@ -4688,14 +4687,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileForget_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileDelete_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; @@ -4709,7 +4708,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileShare_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetSyncPlatforms_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; }; @@ -4717,14 +4716,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetSyncPlatfo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileExists_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FilePersisted_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; @@ -4766,7 +4765,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetQuota_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; }; @@ -4774,19 +4773,19 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForAccount_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForApp_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetCloudEnabledForApp_params { struct u_steam_iface *linux_side; - bool bEnabled; + int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCDownload_params @@ -4799,7 +4798,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCDownload_p struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDownloadProgress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hContent; int32_t *pnBytesDownloaded; int32_t *pnBytesExpected; @@ -4808,7 +4807,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDownloa struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDetails_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hContent; uint32_t *pnAppID; char **ppchName; @@ -4862,7 +4861,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CreatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchFile; }; @@ -4870,7 +4869,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFilePreviewFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchPreviewFile; }; @@ -4878,7 +4877,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTitle_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchTitle; }; @@ -4886,7 +4885,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchDescription; }; @@ -4894,7 +4893,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileVisibility_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; uint32_t eVisibility; }; @@ -4902,7 +4901,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; w_SteamParamStringArray_t *pTags; }; @@ -4959,7 +4958,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UnsubscribePu struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileSetChangeDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchChangeDescription; }; @@ -4976,7 +4975,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdateUserPub struct u_steam_iface *linux_side; uint64_t _ret; uint64_t unPublishedFileId; - bool bVoteUp; + int8_t bVoteUp; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUserPublishedItemVoteDetails_params @@ -5040,7 +5039,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileWrite_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; const void *pvData; int32_t cubData; @@ -5058,14 +5057,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileForget_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileDelete_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; @@ -5079,7 +5078,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileShare_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetSyncPlatforms_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; }; @@ -5087,14 +5086,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetSyncPlatfo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileExists_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FilePersisted_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; @@ -5136,7 +5135,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetQuota_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; }; @@ -5144,19 +5143,19 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForAccount_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForApp_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetCloudEnabledForApp_params { struct u_steam_iface *linux_side; - bool bEnabled; + int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCDownload_params @@ -5169,7 +5168,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCDownload_p struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDownloadProgress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hContent; int32_t *pnBytesDownloaded; int32_t *pnBytesExpected; @@ -5178,7 +5177,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDownloa struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDetails_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hContent; uint32_t *pnAppID; char **ppchName; @@ -5232,7 +5231,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CreatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchFile; }; @@ -5240,7 +5239,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFilePreviewFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchPreviewFile; }; @@ -5248,7 +5247,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTitle_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchTitle; }; @@ -5256,7 +5255,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchDescription; }; @@ -5264,7 +5263,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileVisibility_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; uint32_t eVisibility; }; @@ -5272,7 +5271,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; w_SteamParamStringArray_t *pTags; }; @@ -5329,7 +5328,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UnsubscribePu struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileSetChangeDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchChangeDescription; }; @@ -5346,7 +5345,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdateUserPub struct u_steam_iface *linux_side; uint64_t _ret; uint64_t unPublishedFileId; - bool bVoteUp; + int8_t bVoteUp; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUserPublishedItemVoteDetails_params @@ -5412,7 +5411,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWrite_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; const void *pvData; int32_t cubData; @@ -5430,14 +5429,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileForget_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileDelete_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; @@ -5451,7 +5450,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileShare_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetSyncPlatforms_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; }; @@ -5466,7 +5465,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamWriteChunk_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t writeHandle; const void *pvData; int32_t cubData; @@ -5475,28 +5474,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamClose_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamCancel_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileExists_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FilePersisted_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; @@ -5538,7 +5537,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetQuota_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; }; @@ -5546,19 +5545,19 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForAccount_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForApp_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetCloudEnabledForApp_params { struct u_steam_iface *linux_side; - bool bEnabled; + int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCDownload_params @@ -5571,7 +5570,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCDownload_p struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDownloadProgress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hContent; int32_t *pnBytesDownloaded; int32_t *pnBytesExpected; @@ -5580,7 +5579,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDownloa struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDetails_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hContent; uint32_t *pnAppID; char **ppchName; @@ -5634,7 +5633,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CreatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchFile; }; @@ -5642,7 +5641,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFilePreviewFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchPreviewFile; }; @@ -5650,7 +5649,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTitle_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchTitle; }; @@ -5658,7 +5657,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchDescription; }; @@ -5666,7 +5665,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileVisibility_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; uint32_t eVisibility; }; @@ -5674,7 +5673,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; w_SteamParamStringArray_t *pTags; }; @@ -5731,7 +5730,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UnsubscribePu struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileSetChangeDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchChangeDescription; }; @@ -5748,7 +5747,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdateUserPub struct u_steam_iface *linux_side; uint64_t _ret; uint64_t unPublishedFileId; - bool bVoteUp; + int8_t bVoteUp; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUserPublishedItemVoteDetails_params @@ -5814,7 +5813,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWrite_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; const void *pvData; int32_t cubData; @@ -5832,14 +5831,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileForget_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileDelete_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; @@ -5853,7 +5852,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileShare_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetSyncPlatforms_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; }; @@ -5868,7 +5867,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamWriteChunk_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t writeHandle; const void *pvData; int32_t cubData; @@ -5877,28 +5876,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamClose_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamCancel_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileExists_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FilePersisted_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; @@ -5940,7 +5939,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetQuota_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; }; @@ -5948,19 +5947,19 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForAccount_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForApp_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetCloudEnabledForApp_params { struct u_steam_iface *linux_side; - bool bEnabled; + int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCDownload_params @@ -5973,7 +5972,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCDownload_p struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDownloadProgress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hContent; int32_t *pnBytesDownloaded; int32_t *pnBytesExpected; @@ -5982,7 +5981,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDownloa struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDetails_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hContent; uint32_t *pnAppID; char **ppchName; @@ -6037,7 +6036,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CreatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchFile; }; @@ -6045,7 +6044,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFilePreviewFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchPreviewFile; }; @@ -6053,7 +6052,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTitle_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchTitle; }; @@ -6061,7 +6060,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchDescription; }; @@ -6069,7 +6068,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileVisibility_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; uint32_t eVisibility; }; @@ -6077,7 +6076,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; w_SteamParamStringArray_t *pTags; }; @@ -6134,7 +6133,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UnsubscribePu struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileSetChangeDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchChangeDescription; }; @@ -6151,7 +6150,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdateUserPub struct u_steam_iface *linux_side; uint64_t _ret; uint64_t unPublishedFileId; - bool bVoteUp; + int8_t bVoteUp; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUserPublishedItemVoteDetails_params @@ -6217,7 +6216,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWrite_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; const void *pvData; int32_t cubData; @@ -6235,14 +6234,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileForget_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileDelete_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; @@ -6256,7 +6255,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileShare_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetSyncPlatforms_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; }; @@ -6271,7 +6270,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamWriteChunk_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t writeHandle; const void *pvData; int32_t cubData; @@ -6280,28 +6279,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamClose_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamCancel_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileExists_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FilePersisted_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; @@ -6343,7 +6342,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetQuota_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; }; @@ -6351,19 +6350,19 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForAccount_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForApp_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetCloudEnabledForApp_params { struct u_steam_iface *linux_side; - bool bEnabled; + int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownload_params @@ -6377,7 +6376,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownload_p struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDownloadProgress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hContent; int32_t *pnBytesDownloaded; int32_t *pnBytesExpected; @@ -6386,7 +6385,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDownloa struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDetails_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hContent; uint32_t *pnAppID; char **ppchName; @@ -6441,7 +6440,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CreatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchFile; }; @@ -6449,7 +6448,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFilePreviewFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchPreviewFile; }; @@ -6457,7 +6456,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTitle_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchTitle; }; @@ -6465,7 +6464,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchDescription; }; @@ -6473,7 +6472,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileVisibility_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; uint32_t eVisibility; }; @@ -6481,7 +6480,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; w_SteamParamStringArray_t *pTags; }; @@ -6538,7 +6537,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UnsubscribePu struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileSetChangeDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchChangeDescription; }; @@ -6555,7 +6554,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdateUserPub struct u_steam_iface *linux_side; uint64_t _ret; uint64_t unPublishedFileId; - bool bVoteUp; + int8_t bVoteUp; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUserPublishedItemVoteDetails_params @@ -6630,7 +6629,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownloadTo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWrite_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; const void *pvData; int32_t cubData; @@ -6648,14 +6647,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileForget_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileDelete_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; @@ -6669,7 +6668,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileShare_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetSyncPlatforms_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; }; @@ -6684,7 +6683,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamWriteChunk_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t writeHandle; const void *pvData; int32_t cubData; @@ -6693,28 +6692,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamClose_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamCancel_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileExists_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FilePersisted_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; @@ -6756,7 +6755,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetQuota_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; }; @@ -6764,19 +6763,19 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForAccount_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForApp_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetCloudEnabledForApp_params { struct u_steam_iface *linux_side; - bool bEnabled; + int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownload_params @@ -6790,7 +6789,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownload_p struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDownloadProgress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hContent; int32_t *pnBytesDownloaded; int32_t *pnBytesExpected; @@ -6799,7 +6798,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDownloa struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDetails_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hContent; uint32_t *pnAppID; char **ppchName; @@ -6854,7 +6853,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CreatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchFile; }; @@ -6862,7 +6861,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFilePreviewFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchPreviewFile; }; @@ -6870,7 +6869,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTitle_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchTitle; }; @@ -6878,7 +6877,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchDescription; }; @@ -6886,7 +6885,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileVisibility_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; uint32_t eVisibility; }; @@ -6894,7 +6893,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; w_SteamParamStringArray_t *pTags; }; @@ -6952,7 +6951,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UnsubscribePu struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileSetChangeDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchChangeDescription; }; @@ -6969,7 +6968,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdateUserPub struct u_steam_iface *linux_side; uint64_t _ret; uint64_t unPublishedFileId; - bool bVoteUp; + int8_t bVoteUp; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUserPublishedItemVoteDetails_params @@ -7044,7 +7043,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownloadTo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWrite_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; const void *pvData; int32_t cubData; @@ -7062,14 +7061,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileForget_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileDelete_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; @@ -7083,7 +7082,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileShare_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetSyncPlatforms_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; }; @@ -7098,7 +7097,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamWriteChunk_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t writeHandle; const void *pvData; int32_t cubData; @@ -7107,28 +7106,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamClose_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamCancel_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileExists_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FilePersisted_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; @@ -7170,7 +7169,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetQuota_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; }; @@ -7178,19 +7177,19 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForAccount_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForApp_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetCloudEnabledForApp_params { struct u_steam_iface *linux_side; - bool bEnabled; + int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownload_params @@ -7204,7 +7203,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownload_p struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDownloadProgress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hContent; int32_t *pnBytesDownloaded; int32_t *pnBytesExpected; @@ -7213,7 +7212,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDownloa struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDetails_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hContent; uint32_t *pnAppID; char **ppchName; @@ -7269,7 +7268,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CreatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchFile; }; @@ -7277,7 +7276,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFilePreviewFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchPreviewFile; }; @@ -7285,7 +7284,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTitle_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchTitle; }; @@ -7293,7 +7292,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchDescription; }; @@ -7301,7 +7300,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileVisibility_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; uint32_t eVisibility; }; @@ -7309,7 +7308,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; w_SteamParamStringArray_t *pTags; }; @@ -7367,7 +7366,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UnsubscribePu struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileSetChangeDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchChangeDescription; }; @@ -7384,7 +7383,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdateUserPub struct u_steam_iface *linux_side; uint64_t _ret; uint64_t unPublishedFileId; - bool bVoteUp; + int8_t bVoteUp; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUserPublishedItemVoteDetails_params @@ -7459,7 +7458,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownloadTo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWrite_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; const void *pvData; int32_t cubData; @@ -7495,7 +7494,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsync struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsyncComplete_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hReadCall; void *pvBuffer; uint32_t cubToRead; @@ -7504,14 +7503,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsync struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileForget_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileDelete_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; @@ -7525,7 +7524,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileShare_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetSyncPlatforms_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; }; @@ -7540,7 +7539,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamWriteChunk_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t writeHandle; const void *pvData; int32_t cubData; @@ -7549,28 +7548,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamClose_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamCancel_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileExists_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FilePersisted_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; @@ -7612,7 +7611,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetQuota_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; }; @@ -7620,19 +7619,19 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForAccount_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForApp_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetCloudEnabledForApp_params { struct u_steam_iface *linux_side; - bool bEnabled; + int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownload_params @@ -7646,7 +7645,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownload_p struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDownloadProgress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hContent; int32_t *pnBytesDownloaded; int32_t *pnBytesExpected; @@ -7655,7 +7654,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDownloa struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDetails_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hContent; uint32_t *pnAppID; char **ppchName; @@ -7711,7 +7710,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CreatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchFile; }; @@ -7719,7 +7718,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFilePreviewFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchPreviewFile; }; @@ -7727,7 +7726,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTitle_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchTitle; }; @@ -7735,7 +7734,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchDescription; }; @@ -7743,7 +7742,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileVisibility_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; uint32_t eVisibility; }; @@ -7751,7 +7750,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; w_SteamParamStringArray_t *pTags; }; @@ -7809,7 +7808,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UnsubscribePu struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileSetChangeDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchChangeDescription; }; @@ -7826,7 +7825,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdateUserPub struct u_steam_iface *linux_side; uint64_t _ret; uint64_t unPublishedFileId; - bool bVoteUp; + int8_t bVoteUp; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUserPublishedItemVoteDetails_params @@ -7901,7 +7900,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownloadTo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWrite_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; const void *pvData; int32_t cubData; @@ -7937,7 +7936,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsync struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsyncComplete_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hReadCall; void *pvBuffer; uint32_t cubToRead; @@ -7946,14 +7945,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsync struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileForget_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileDelete_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; @@ -7967,7 +7966,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileShare_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetSyncPlatforms_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; }; @@ -7982,7 +7981,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamWriteChunk_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t writeHandle; const void *pvData; int32_t cubData; @@ -7991,28 +7990,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamClose_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamCancel_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileExists_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FilePersisted_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; @@ -8054,7 +8053,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetQuota_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t *pnTotalBytes; uint64_t *puAvailableBytes; }; @@ -8062,19 +8061,19 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForAccount_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForApp_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetCloudEnabledForApp_params { struct u_steam_iface *linux_side; - bool bEnabled; + int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownload_params @@ -8088,7 +8087,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownload_p struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDownloadProgress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hContent; int32_t *pnBytesDownloaded; int32_t *pnBytesExpected; @@ -8097,7 +8096,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDownloa struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDetails_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hContent; uint32_t *pnAppID; char **ppchName; @@ -8153,7 +8152,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CreatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchFile; }; @@ -8161,7 +8160,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFilePreviewFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchPreviewFile; }; @@ -8169,7 +8168,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTitle_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchTitle; }; @@ -8177,7 +8176,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchDescription; }; @@ -8185,7 +8184,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileVisibility_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; uint32_t eVisibility; }; @@ -8193,7 +8192,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; w_SteamParamStringArray_t *pTags; }; @@ -8251,7 +8250,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UnsubscribePu struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileSetChangeDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchChangeDescription; }; @@ -8268,7 +8267,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdateUserPub struct u_steam_iface *linux_side; uint64_t _ret; uint64_t unPublishedFileId; - bool bVoteUp; + int8_t bVoteUp; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUserPublishedItemVoteDetails_params @@ -8343,7 +8342,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownloadTo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWrite_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; const void *pvData; int32_t cubData; @@ -8379,7 +8378,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsync struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsyncComplete_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hReadCall; void *pvBuffer; uint32_t cubToRead; @@ -8388,14 +8387,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsync struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileForget_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileDelete_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; @@ -8409,7 +8408,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileShare_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetSyncPlatforms_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; }; @@ -8424,7 +8423,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamWriteChunk_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t writeHandle; const void *pvData; int32_t cubData; @@ -8433,28 +8432,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamClose_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamCancel_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileExists_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FilePersisted_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchFile; }; @@ -8496,7 +8495,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetQuota_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t *pnTotalBytes; uint64_t *puAvailableBytes; }; @@ -8504,19 +8503,19 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForAccount_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForApp_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetCloudEnabledForApp_params { struct u_steam_iface *linux_side; - bool bEnabled; + int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownload_params @@ -8530,7 +8529,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownload_p struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDownloadProgress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hContent; int32_t *pnBytesDownloaded; int32_t *pnBytesExpected; @@ -8539,7 +8538,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDownloa struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDetails_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hContent; uint32_t *pnAppID; char **ppchName; @@ -8595,7 +8594,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CreatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchFile; }; @@ -8603,7 +8602,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFilePreviewFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchPreviewFile; }; @@ -8611,7 +8610,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTitle_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchTitle; }; @@ -8619,7 +8618,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchDescription; }; @@ -8627,7 +8626,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileVisibility_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; uint32_t eVisibility; }; @@ -8635,7 +8634,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; w_SteamParamStringArray_t *pTags; }; @@ -8693,7 +8692,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UnsubscribePu struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileSetChangeDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const char *pchChangeDescription; }; @@ -8710,7 +8709,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdateUserPub struct u_steam_iface *linux_side; uint64_t _ret; uint64_t unPublishedFileId; - bool bVoteUp; + int8_t bVoteUp; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUserPublishedItemVoteDetails_params @@ -8800,13 +8799,13 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileC struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_BeginFileWriteBatch_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EndFileWriteBatch_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_WriteScreenshot_params @@ -8837,13 +8836,13 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TriggerScreenshot struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_HookScreenshots_params { struct u_steam_iface *linux_side; - bool bHook; + int8_t bHook; }; struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hScreenshot; const char *pchLocation; }; @@ -8851,7 +8850,7 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation_param struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TagUser_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hScreenshot; CSteamID steamID; }; @@ -8884,13 +8883,13 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TriggerScreenshot struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_HookScreenshots_params { struct u_steam_iface *linux_side; - bool bHook; + int8_t bHook; }; struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLocation_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hScreenshot; const char *pchLocation; }; @@ -8898,7 +8897,7 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLocation_param struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hScreenshot; CSteamID steamID; }; @@ -8906,7 +8905,7 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser_params struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagPublishedFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hScreenshot; uint64_t unPublishedFileID; }; @@ -8939,13 +8938,13 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TriggerScreenshot struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_HookScreenshots_params { struct u_steam_iface *linux_side; - bool bHook; + int8_t bHook; }; struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLocation_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hScreenshot; const char *pchLocation; }; @@ -8953,7 +8952,7 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLocation_param struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUser_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hScreenshot; CSteamID steamID; }; @@ -8961,7 +8960,7 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUser_params struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPublishedFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hScreenshot; uint64_t unPublishedFileID; }; @@ -8969,7 +8968,7 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPublishedFile_ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_IsScreenshotsHooked_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddVRScreenshotToLibrary_params @@ -9015,7 +9014,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SendQueryUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; w_SteamUGCDetails_t_126 *pDetails; @@ -9024,14 +9023,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_ReleaseQueryUGCRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -9039,7 +9038,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -9047,23 +9046,23 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnLongDescription; + int8_t bReturnLongDescription; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnTotalOnly; + int8_t bReturnTotalOnly; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilter_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; }; @@ -9071,15 +9070,15 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bMatchAnyTag; + int8_t bMatchAnyTag; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pSearchText; }; @@ -9087,7 +9086,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDays_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unDays; }; @@ -9133,7 +9132,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SendQueryUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; w_SteamUGCDetails_t_128x *pDetails; @@ -9142,14 +9141,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_ReleaseQueryUGCRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -9157,7 +9156,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -9165,23 +9164,23 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnLongDescription; + int8_t bReturnLongDescription; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnTotalOnly; + int8_t bReturnTotalOnly; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedResponse_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; }; @@ -9189,7 +9188,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilter_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; }; @@ -9197,15 +9196,15 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bMatchAnyTag; + int8_t bMatchAnyTag; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pSearchText; }; @@ -9213,7 +9212,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetRankedByTrendDays_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unDays; }; @@ -9245,7 +9244,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchTitle; }; @@ -9253,7 +9252,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchDescription; }; @@ -9261,7 +9260,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t eVisibility; }; @@ -9269,7 +9268,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; }; @@ -9277,7 +9276,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszContentFolder; }; @@ -9285,7 +9284,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszPreviewFile; }; @@ -9338,7 +9337,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; char *pchFolder; @@ -9348,10 +9347,10 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; - bool *pbNeedsUpdate; - bool *pbIsDownloading; + int8_t *pbNeedsUpdate; + int8_t *pbIsDownloading; uint64_t *punBytesDownloaded; uint64_t *punBytesTotal; }; @@ -9390,7 +9389,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SendQueryUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; w_SteamUGCDetails_t_128x *pDetails; @@ -9399,14 +9398,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -9414,7 +9413,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -9422,23 +9421,23 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnLongDescription; + int8_t bReturnLongDescription; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnTotalOnly; + int8_t bReturnTotalOnly; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; }; @@ -9446,7 +9445,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; }; @@ -9454,15 +9453,15 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bMatchAnyTag; + int8_t bMatchAnyTag; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pSearchText; }; @@ -9470,7 +9469,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unDays; }; @@ -9502,7 +9501,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchTitle; }; @@ -9510,7 +9509,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchDescription; }; @@ -9518,7 +9517,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t eVisibility; }; @@ -9526,7 +9525,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; }; @@ -9534,7 +9533,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszContentFolder; }; @@ -9542,7 +9541,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszPreviewFile; }; @@ -9595,21 +9594,21 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; char *pchFolder; uint32_t cchFolderSize; - bool *pbLegacyItem; + int8_t *pbLegacyItem; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; - bool *pbNeedsUpdate; - bool *pbIsDownloading; + int8_t *pbNeedsUpdate; + int8_t *pbIsDownloading; uint64_t *punBytesDownloaded; uint64_t *punBytesTotal; }; @@ -9648,7 +9647,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SendQueryUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; w_SteamUGCDetails_t_128x *pDetails; @@ -9657,14 +9656,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_ReleaseQueryUGCRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -9672,7 +9671,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -9680,23 +9679,23 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnLongDescription; + int8_t bReturnLongDescription; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnTotalOnly; + int8_t bReturnTotalOnly; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedResponse_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; }; @@ -9704,7 +9703,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilter_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; }; @@ -9712,15 +9711,15 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bMatchAnyTag; + int8_t bMatchAnyTag; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pSearchText; }; @@ -9728,7 +9727,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetRankedByTrendDays_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unDays; }; @@ -9760,7 +9759,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchTitle; }; @@ -9768,7 +9767,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchDescription; }; @@ -9776,7 +9775,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t eVisibility; }; @@ -9784,7 +9783,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; }; @@ -9792,7 +9791,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszContentFolder; }; @@ -9800,7 +9799,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszPreviewFile; }; @@ -9860,7 +9859,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemState_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; char *pchFolder; @@ -9871,7 +9870,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; uint64_t *punBytesTotal; @@ -9880,9 +9879,9 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_DownloadItem_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; - bool bHighPriority; + int8_t bHighPriority; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUserUGCRequest_params @@ -9927,7 +9926,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SendQueryUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; w_SteamUGCDetails_t_128x *pDetails; @@ -9936,7 +9935,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; char *pchURL; @@ -9946,7 +9945,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; char *pchMetadata; @@ -9956,7 +9955,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint64_t *pvecPublishedFileID; @@ -9966,7 +9965,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatistic_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t eStatType; @@ -9984,26 +9983,26 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditionalPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t previewIndex; char *pchURLOrVideoID; uint32_t cchURLSize; - bool *pbIsImage; + int8_t *pbIsImage; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_ReleaseQueryUGCRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -10011,7 +10010,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -10019,47 +10018,47 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnLongDescription; + int8_t bReturnLongDescription; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnMetadata; + int8_t bReturnMetadata; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnChildren; + int8_t bReturnChildren; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditionalPreviews_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnAdditionalPreviews; + int8_t bReturnAdditionalPreviews; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnTotalOnly; + int8_t bReturnTotalOnly; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedResponse_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; }; @@ -10067,7 +10066,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilter_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; }; @@ -10075,15 +10074,15 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bMatchAnyTag; + int8_t bMatchAnyTag; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pSearchText; }; @@ -10091,7 +10090,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetRankedByTrendDays_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unDays; }; @@ -10123,7 +10122,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchTitle; }; @@ -10131,7 +10130,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchDescription; }; @@ -10139,7 +10138,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchMetaData; }; @@ -10147,7 +10146,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t eVisibility; }; @@ -10155,7 +10154,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; }; @@ -10163,7 +10162,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszContentFolder; }; @@ -10171,7 +10170,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszPreviewFile; }; @@ -10247,7 +10246,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemState_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; char *pchFolder; @@ -10258,7 +10257,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; uint64_t *punBytesTotal; @@ -10267,9 +10266,9 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_DownloadItem_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; - bool bHighPriority; + int8_t bHighPriority; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUserUGCRequest_params @@ -10314,7 +10313,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SendQueryUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; w_SteamUGCDetails_t_128x *pDetails; @@ -10323,7 +10322,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; char *pchURL; @@ -10333,7 +10332,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; char *pchMetadata; @@ -10343,7 +10342,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint64_t *pvecPublishedFileID; @@ -10353,7 +10352,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatistic_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t eStatType; @@ -10371,26 +10370,26 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditionalPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t previewIndex; char *pchURLOrVideoID; uint32_t cchURLSize; - bool *pbIsImage; + int8_t *pbIsImage; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_ReleaseQueryUGCRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -10398,7 +10397,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -10406,47 +10405,47 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnLongDescription; + int8_t bReturnLongDescription; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnMetadata; + int8_t bReturnMetadata; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnChildren; + int8_t bReturnChildren; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditionalPreviews_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnAdditionalPreviews; + int8_t bReturnAdditionalPreviews; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnTotalOnly; + int8_t bReturnTotalOnly; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchLanguage; }; @@ -10454,7 +10453,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedResponse_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; }; @@ -10462,7 +10461,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilter_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; }; @@ -10470,15 +10469,15 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bMatchAnyTag; + int8_t bMatchAnyTag; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pSearchText; }; @@ -10486,7 +10485,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetRankedByTrendDays_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unDays; }; @@ -10518,7 +10517,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchTitle; }; @@ -10526,7 +10525,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchDescription; }; @@ -10534,7 +10533,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchLanguage; }; @@ -10542,7 +10541,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchMetaData; }; @@ -10550,7 +10549,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t eVisibility; }; @@ -10558,7 +10557,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; }; @@ -10566,7 +10565,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszContentFolder; }; @@ -10574,7 +10573,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszPreviewFile; }; @@ -10601,7 +10600,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetUserItemVote_params struct u_steam_iface *linux_side; uint64_t _ret; uint64_t nPublishedFileID; - bool bVoteUp; + int8_t bVoteUp; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetUserItemVote_params @@ -10665,7 +10664,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemState_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; char *pchFolder; @@ -10676,7 +10675,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; uint64_t *punBytesTotal; @@ -10685,9 +10684,9 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_DownloadItem_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; - bool bHighPriority; + int8_t bHighPriority; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUserUGCRequest_params @@ -10732,7 +10731,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SendQueryUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; w_SteamUGCDetails_t_128x *pDetails; @@ -10741,7 +10740,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; char *pchURL; @@ -10751,7 +10750,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; char *pchMetadata; @@ -10761,7 +10760,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint64_t *pvecPublishedFileID; @@ -10771,7 +10770,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatistic_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t eStatType; @@ -10789,13 +10788,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAdditionalPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t previewIndex; char *pchURLOrVideoID; uint32_t cchURLSize; - bool *pbIsImage; + int8_t *pbIsImage; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumKeyValueTags_params @@ -10809,7 +10808,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t keyValueTagIndex; @@ -10822,14 +10821,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_ReleaseQueryUGCRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -10837,7 +10836,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -10845,55 +10844,55 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnKeyValueTags; + int8_t bReturnKeyValueTags; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnLongDescription; + int8_t bReturnLongDescription; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnMetadata; + int8_t bReturnMetadata; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnChildren; + int8_t bReturnChildren; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditionalPreviews_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnAdditionalPreviews; + int8_t bReturnAdditionalPreviews; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnTotalOnly; + int8_t bReturnTotalOnly; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchLanguage; }; @@ -10901,7 +10900,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedResponse_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; }; @@ -10909,7 +10908,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilter_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; }; @@ -10917,15 +10916,15 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bMatchAnyTag; + int8_t bMatchAnyTag; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pSearchText; }; @@ -10933,7 +10932,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unDays; }; @@ -10941,7 +10940,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pKey; const char *pValue; @@ -10974,7 +10973,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchTitle; }; @@ -10982,7 +10981,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchDescription; }; @@ -10990,7 +10989,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchLanguage; }; @@ -10998,7 +10997,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchMetaData; }; @@ -11006,7 +11005,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t eVisibility; }; @@ -11014,7 +11013,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; }; @@ -11022,7 +11021,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszContentFolder; }; @@ -11030,7 +11029,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszPreviewFile; }; @@ -11038,7 +11037,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchKey; }; @@ -11046,7 +11045,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchKey; const char *pchValue; @@ -11074,7 +11073,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetUserItemVote_params struct u_steam_iface *linux_side; uint64_t _ret; uint64_t nPublishedFileID; - bool bVoteUp; + int8_t bVoteUp; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetUserItemVote_params @@ -11138,7 +11137,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemState_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; char *pchFolder; @@ -11149,7 +11148,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; uint64_t *punBytesTotal; @@ -11158,15 +11157,15 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; - bool bHighPriority; + int8_t bHighPriority; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; }; @@ -11174,7 +11173,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SuspendDownloads_params { struct u_steam_iface *linux_side; - bool bSuspend; + int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUserUGCRequest_params @@ -11219,7 +11218,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SendQueryUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; w_SteamUGCDetails_t_128x *pDetails; @@ -11228,7 +11227,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; char *pchURL; @@ -11238,7 +11237,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; char *pchMetadata; @@ -11248,7 +11247,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint64_t *pvecPublishedFileID; @@ -11258,7 +11257,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatistic_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t eStatType; @@ -11276,7 +11275,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAdditionalPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t previewIndex; @@ -11298,7 +11297,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t keyValueTagIndex; @@ -11311,14 +11310,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_ReleaseQueryUGCRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -11326,7 +11325,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -11334,55 +11333,55 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnKeyValueTags; + int8_t bReturnKeyValueTags; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnLongDescription; + int8_t bReturnLongDescription; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnMetadata; + int8_t bReturnMetadata; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnChildren; + int8_t bReturnChildren; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditionalPreviews_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnAdditionalPreviews; + int8_t bReturnAdditionalPreviews; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnTotalOnly; + int8_t bReturnTotalOnly; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchLanguage; }; @@ -11390,7 +11389,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedResponse_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; }; @@ -11398,7 +11397,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilter_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; }; @@ -11406,15 +11405,15 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bMatchAnyTag; + int8_t bMatchAnyTag; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pSearchText; }; @@ -11422,7 +11421,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unDays; }; @@ -11430,7 +11429,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pKey; const char *pValue; @@ -11463,7 +11462,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchTitle; }; @@ -11471,7 +11470,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchDescription; }; @@ -11479,7 +11478,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchLanguage; }; @@ -11487,7 +11486,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchMetaData; }; @@ -11495,7 +11494,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t eVisibility; }; @@ -11503,7 +11502,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; }; @@ -11511,7 +11510,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszContentFolder; }; @@ -11519,7 +11518,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszPreviewFile; }; @@ -11527,7 +11526,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchKey; }; @@ -11535,7 +11534,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchKey; const char *pchValue; @@ -11544,7 +11543,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszPreviewFile; uint32_t type; @@ -11553,7 +11552,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszVideoID; }; @@ -11561,7 +11560,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; const char *pszPreviewFile; @@ -11570,7 +11569,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVideo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; const char *pszVideoID; @@ -11579,7 +11578,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; }; @@ -11606,7 +11605,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetUserItemVote_params struct u_steam_iface *linux_side; uint64_t _ret; uint64_t nPublishedFileID; - bool bVoteUp; + int8_t bVoteUp; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetUserItemVote_params @@ -11670,7 +11669,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemState_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; char *pchFolder; @@ -11681,7 +11680,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; uint64_t *punBytesTotal; @@ -11690,15 +11689,15 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; - bool bHighPriority; + int8_t bHighPriority; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; }; @@ -11706,7 +11705,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SuspendDownloads_params { struct u_steam_iface *linux_side; - bool bSuspend; + int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUserUGCRequest_params @@ -11751,7 +11750,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SendQueryUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; w_SteamUGCDetails_t_128x *pDetails; @@ -11760,7 +11759,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; char *pchURL; @@ -11770,7 +11769,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; char *pchMetadata; @@ -11780,7 +11779,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint64_t *pvecPublishedFileID; @@ -11790,7 +11789,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatistic_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t eStatType; @@ -11808,7 +11807,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAdditionalPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t previewIndex; @@ -11830,7 +11829,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t keyValueTagIndex; @@ -11843,14 +11842,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_ReleaseQueryUGCRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -11858,7 +11857,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -11866,63 +11865,63 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnOnlyIDs; + int8_t bReturnOnlyIDs; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnKeyValueTags; + int8_t bReturnKeyValueTags; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnLongDescription; + int8_t bReturnLongDescription; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnMetadata; + int8_t bReturnMetadata; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnChildren; + int8_t bReturnChildren; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditionalPreviews_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnAdditionalPreviews; + int8_t bReturnAdditionalPreviews; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnTotalOnly; + int8_t bReturnTotalOnly; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchLanguage; }; @@ -11930,7 +11929,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedResponse_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; }; @@ -11938,7 +11937,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilter_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; }; @@ -11946,15 +11945,15 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bMatchAnyTag; + int8_t bMatchAnyTag; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pSearchText; }; @@ -11962,7 +11961,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unDays; }; @@ -11970,7 +11969,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pKey; const char *pValue; @@ -12003,7 +12002,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchTitle; }; @@ -12011,7 +12010,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchDescription; }; @@ -12019,7 +12018,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchLanguage; }; @@ -12027,7 +12026,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchMetaData; }; @@ -12035,7 +12034,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t eVisibility; }; @@ -12043,7 +12042,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; }; @@ -12051,7 +12050,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszContentFolder; }; @@ -12059,7 +12058,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszPreviewFile; }; @@ -12067,7 +12066,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchKey; }; @@ -12075,7 +12074,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchKey; const char *pchValue; @@ -12084,7 +12083,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszPreviewFile; uint32_t type; @@ -12093,7 +12092,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszVideoID; }; @@ -12101,7 +12100,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; const char *pszPreviewFile; @@ -12110,7 +12109,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVideo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; const char *pszVideoID; @@ -12119,7 +12118,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; }; @@ -12146,7 +12145,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetUserItemVote_params struct u_steam_iface *linux_side; uint64_t _ret; uint64_t nPublishedFileID; - bool bVoteUp; + int8_t bVoteUp; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetUserItemVote_params @@ -12210,7 +12209,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemState_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; char *pchFolder; @@ -12221,7 +12220,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; uint64_t *punBytesTotal; @@ -12230,15 +12229,15 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; - bool bHighPriority; + int8_t bHighPriority; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameServer_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; }; @@ -12246,7 +12245,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SuspendDownloads_params { struct u_steam_iface *linux_side; - bool bSuspend; + int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartPlaytimeTracking_params @@ -12313,7 +12312,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SendQueryUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; w_SteamUGCDetails_t_128x *pDetails; @@ -12322,7 +12321,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; char *pchURL; @@ -12332,7 +12331,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; char *pchMetadata; @@ -12342,7 +12341,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint64_t *pvecPublishedFileID; @@ -12352,7 +12351,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatistic_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t eStatType; @@ -12370,7 +12369,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAdditionalPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t previewIndex; @@ -12392,7 +12391,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t keyValueTagIndex; @@ -12405,14 +12404,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_ReleaseQueryUGCRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -12420,7 +12419,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -12428,63 +12427,63 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnOnlyIDs; + int8_t bReturnOnlyIDs; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnKeyValueTags; + int8_t bReturnKeyValueTags; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnLongDescription; + int8_t bReturnLongDescription; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnMetadata; + int8_t bReturnMetadata; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnChildren; + int8_t bReturnChildren; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditionalPreviews_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnAdditionalPreviews; + int8_t bReturnAdditionalPreviews; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnTotalOnly; + int8_t bReturnTotalOnly; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unDays; }; @@ -12492,7 +12491,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStats_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchLanguage; }; @@ -12500,7 +12499,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedResponse_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; }; @@ -12508,7 +12507,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilter_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; }; @@ -12516,15 +12515,15 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bMatchAnyTag; + int8_t bMatchAnyTag; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pSearchText; }; @@ -12532,7 +12531,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unDays; }; @@ -12540,7 +12539,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pKey; const char *pValue; @@ -12573,7 +12572,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchTitle; }; @@ -12581,7 +12580,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchDescription; }; @@ -12589,7 +12588,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchLanguage; }; @@ -12597,7 +12596,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchMetaData; }; @@ -12605,7 +12604,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t eVisibility; }; @@ -12613,7 +12612,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; }; @@ -12621,7 +12620,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszContentFolder; }; @@ -12629,7 +12628,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszPreviewFile; }; @@ -12637,7 +12636,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchKey; }; @@ -12645,7 +12644,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchKey; const char *pchValue; @@ -12654,7 +12653,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszPreviewFile; uint32_t type; @@ -12663,7 +12662,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszVideoID; }; @@ -12671,7 +12670,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; const char *pszPreviewFile; @@ -12680,7 +12679,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVideo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; const char *pszVideoID; @@ -12689,7 +12688,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; }; @@ -12716,7 +12715,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetUserItemVote_params struct u_steam_iface *linux_side; uint64_t _ret; uint64_t nPublishedFileID; - bool bVoteUp; + int8_t bVoteUp; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetUserItemVote_params @@ -12780,7 +12779,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemState_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; char *pchFolder; @@ -12791,7 +12790,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; uint64_t *punBytesTotal; @@ -12800,15 +12799,15 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; - bool bHighPriority; + int8_t bHighPriority; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameServer_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; }; @@ -12816,7 +12815,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SuspendDownloads_params { struct u_steam_iface *linux_side; - bool bSuspend; + int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartPlaytimeTracking_params @@ -12940,7 +12939,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SendQueryUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; w_SteamUGCDetails_t_128x *pDetails; @@ -12949,7 +12948,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; char *pchURL; @@ -12959,7 +12958,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; char *pchMetadata; @@ -12969,7 +12968,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint64_t *pvecPublishedFileID; @@ -12979,7 +12978,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatistic_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t eStatType; @@ -12997,7 +12996,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAdditionalPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t previewIndex; @@ -13019,7 +13018,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t keyValueTagIndex; @@ -13032,14 +13031,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_ReleaseQueryUGCRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -13047,7 +13046,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -13055,63 +13054,63 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnOnlyIDs; + int8_t bReturnOnlyIDs; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnKeyValueTags; + int8_t bReturnKeyValueTags; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnLongDescription; + int8_t bReturnLongDescription; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnMetadata; + int8_t bReturnMetadata; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnChildren; + int8_t bReturnChildren; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditionalPreviews_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnAdditionalPreviews; + int8_t bReturnAdditionalPreviews; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnTotalOnly; + int8_t bReturnTotalOnly; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unDays; }; @@ -13119,7 +13118,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStats_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchLanguage; }; @@ -13127,7 +13126,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedResponse_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; }; @@ -13135,7 +13134,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilter_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; }; @@ -13143,15 +13142,15 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bMatchAnyTag; + int8_t bMatchAnyTag; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pSearchText; }; @@ -13159,7 +13158,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unDays; }; @@ -13167,7 +13166,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pKey; const char *pValue; @@ -13200,7 +13199,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchTitle; }; @@ -13208,7 +13207,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchDescription; }; @@ -13216,7 +13215,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchLanguage; }; @@ -13224,7 +13223,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchMetaData; }; @@ -13232,7 +13231,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t eVisibility; }; @@ -13240,7 +13239,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; }; @@ -13248,7 +13247,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszContentFolder; }; @@ -13256,7 +13255,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszPreviewFile; }; @@ -13264,15 +13263,15 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUpload_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bAllowLegacyUpload; + int8_t bAllowLegacyUpload; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchKey; }; @@ -13280,7 +13279,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchKey; const char *pchValue; @@ -13289,7 +13288,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszPreviewFile; uint32_t type; @@ -13298,7 +13297,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszVideoID; }; @@ -13306,7 +13305,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; const char *pszPreviewFile; @@ -13315,7 +13314,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVideo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; const char *pszVideoID; @@ -13324,7 +13323,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; }; @@ -13351,7 +13350,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetUserItemVote_params struct u_steam_iface *linux_side; uint64_t _ret; uint64_t nPublishedFileID; - bool bVoteUp; + int8_t bVoteUp; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetUserItemVote_params @@ -13415,7 +13414,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemState_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; char *pchFolder; @@ -13426,7 +13425,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; uint64_t *punBytesTotal; @@ -13435,15 +13434,15 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; - bool bHighPriority; + int8_t bHighPriority; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameServer_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; }; @@ -13451,7 +13450,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SuspendDownloads_params { struct u_steam_iface *linux_side; - bool bSuspend; + int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartPlaytimeTracking_params @@ -13575,7 +13574,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SendQueryUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; w_SteamUGCDetails_t_128x *pDetails; @@ -13584,7 +13583,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; char *pchURL; @@ -13594,7 +13593,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; char *pchMetadata; @@ -13604,7 +13603,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint64_t *pvecPublishedFileID; @@ -13614,7 +13613,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatistic_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t eStatType; @@ -13632,7 +13631,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAdditionalPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t previewIndex; @@ -13654,7 +13653,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t keyValueTagIndex; @@ -13667,7 +13666,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; const char *pchKey; @@ -13678,14 +13677,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_ReleaseQueryUGCRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -13693,7 +13692,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -13701,63 +13700,63 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnOnlyIDs; + int8_t bReturnOnlyIDs; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnKeyValueTags; + int8_t bReturnKeyValueTags; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnLongDescription; + int8_t bReturnLongDescription; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnMetadata; + int8_t bReturnMetadata; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnChildren; + int8_t bReturnChildren; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditionalPreviews_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnAdditionalPreviews; + int8_t bReturnAdditionalPreviews; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnTotalOnly; + int8_t bReturnTotalOnly; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unDays; }; @@ -13765,7 +13764,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStats_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchLanguage; }; @@ -13773,7 +13772,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedResponse_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; }; @@ -13781,7 +13780,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilter_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; }; @@ -13789,15 +13788,15 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bMatchAnyTag; + int8_t bMatchAnyTag; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pSearchText; }; @@ -13805,7 +13804,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unDays; }; @@ -13813,7 +13812,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pKey; const char *pValue; @@ -13846,7 +13845,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchTitle; }; @@ -13854,7 +13853,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchDescription; }; @@ -13862,7 +13861,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchLanguage; }; @@ -13870,7 +13869,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchMetaData; }; @@ -13878,7 +13877,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t eVisibility; }; @@ -13886,7 +13885,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; }; @@ -13894,7 +13893,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszContentFolder; }; @@ -13902,7 +13901,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszPreviewFile; }; @@ -13910,22 +13909,22 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUpload_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bAllowLegacyUpload; + int8_t bAllowLegacyUpload; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAllItemKeyValueTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchKey; }; @@ -13933,7 +13932,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchKey; const char *pchValue; @@ -13942,7 +13941,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszPreviewFile; uint32_t type; @@ -13951,7 +13950,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszVideoID; }; @@ -13959,7 +13958,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; const char *pszPreviewFile; @@ -13968,7 +13967,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVideo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; const char *pszVideoID; @@ -13977,7 +13976,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; }; @@ -14004,7 +14003,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetUserItemVote_params struct u_steam_iface *linux_side; uint64_t _ret; uint64_t nPublishedFileID; - bool bVoteUp; + int8_t bVoteUp; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetUserItemVote_params @@ -14068,7 +14067,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemState_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; char *pchFolder; @@ -14079,7 +14078,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; uint64_t *punBytesTotal; @@ -14088,15 +14087,15 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; - bool bHighPriority; + int8_t bHighPriority; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameServer_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; }; @@ -14104,7 +14103,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SuspendDownloads_params { struct u_steam_iface *linux_side; - bool bSuspend; + int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartPlaytimeTracking_params @@ -14228,7 +14227,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SendQueryUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; w_SteamUGCDetails_t_128x *pDetails; @@ -14237,7 +14236,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; char *pchURL; @@ -14247,7 +14246,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; char *pchMetadata; @@ -14257,7 +14256,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint64_t *pvecPublishedFileID; @@ -14267,7 +14266,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatistic_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t eStatType; @@ -14285,7 +14284,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAdditionalPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t previewIndex; @@ -14307,7 +14306,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t keyValueTagIndex; @@ -14320,7 +14319,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; const char *pchKey; @@ -14331,14 +14330,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_ReleaseQueryUGCRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -14346,7 +14345,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const w_SteamParamStringArray_t *pTagGroups; }; @@ -14354,7 +14353,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -14362,63 +14361,63 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnOnlyIDs; + int8_t bReturnOnlyIDs; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnKeyValueTags; + int8_t bReturnKeyValueTags; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnLongDescription; + int8_t bReturnLongDescription; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnMetadata; + int8_t bReturnMetadata; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnChildren; + int8_t bReturnChildren; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditionalPreviews_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnAdditionalPreviews; + int8_t bReturnAdditionalPreviews; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnTotalOnly; + int8_t bReturnTotalOnly; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unDays; }; @@ -14426,7 +14425,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStats_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchLanguage; }; @@ -14434,7 +14433,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedResponse_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; }; @@ -14442,7 +14441,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilter_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; }; @@ -14450,15 +14449,15 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bMatchAnyTag; + int8_t bMatchAnyTag; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pSearchText; }; @@ -14466,7 +14465,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unDays; }; @@ -14474,7 +14473,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pKey; const char *pValue; @@ -14507,7 +14506,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchTitle; }; @@ -14515,7 +14514,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchDescription; }; @@ -14523,7 +14522,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchLanguage; }; @@ -14531,7 +14530,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchMetaData; }; @@ -14539,7 +14538,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t eVisibility; }; @@ -14547,7 +14546,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; }; @@ -14555,7 +14554,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszContentFolder; }; @@ -14563,7 +14562,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszPreviewFile; }; @@ -14571,22 +14570,22 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUpload_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bAllowLegacyUpload; + int8_t bAllowLegacyUpload; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAllItemKeyValueTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchKey; }; @@ -14594,7 +14593,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchKey; const char *pchValue; @@ -14603,7 +14602,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszPreviewFile; uint32_t type; @@ -14612,7 +14611,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszVideoID; }; @@ -14620,7 +14619,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; const char *pszPreviewFile; @@ -14629,7 +14628,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVideo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; const char *pszVideoID; @@ -14638,7 +14637,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; }; @@ -14665,7 +14664,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetUserItemVote_params struct u_steam_iface *linux_side; uint64_t _ret; uint64_t nPublishedFileID; - bool bVoteUp; + int8_t bVoteUp; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetUserItemVote_params @@ -14729,7 +14728,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemState_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; char *pchFolder; @@ -14740,7 +14739,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; uint64_t *punBytesTotal; @@ -14749,15 +14748,15 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; - bool bHighPriority; + int8_t bHighPriority; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameServer_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; }; @@ -14765,7 +14764,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SuspendDownloads_params { struct u_steam_iface *linux_side; - bool bSuspend; + int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartPlaytimeTracking_params @@ -14889,7 +14888,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SendQueryUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; w_SteamUGCDetails_t_128x *pDetails; @@ -14906,7 +14905,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t indexTag; @@ -14917,7 +14916,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplayName_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t indexTag; @@ -14928,7 +14927,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplayName_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; char *pchURL; @@ -14938,7 +14937,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; char *pchMetadata; @@ -14948,7 +14947,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint64_t *pvecPublishedFileID; @@ -14958,7 +14957,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatistic_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t eStatType; @@ -14976,7 +14975,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAdditionalPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t previewIndex; @@ -14998,7 +14997,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t keyValueTagIndex; @@ -15011,7 +15010,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; const char *pchKey; @@ -15022,14 +15021,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ReleaseQueryUGCRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -15037,7 +15036,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const w_SteamParamStringArray_t *pTagGroups; }; @@ -15045,7 +15044,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -15053,63 +15052,63 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnOnlyIDs; + int8_t bReturnOnlyIDs; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnKeyValueTags; + int8_t bReturnKeyValueTags; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnLongDescription; + int8_t bReturnLongDescription; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnMetadata; + int8_t bReturnMetadata; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnChildren; + int8_t bReturnChildren; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditionalPreviews_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnAdditionalPreviews; + int8_t bReturnAdditionalPreviews; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnTotalOnly; + int8_t bReturnTotalOnly; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unDays; }; @@ -15117,7 +15116,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStats_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchLanguage; }; @@ -15125,7 +15124,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedResponse_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; }; @@ -15133,7 +15132,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilter_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; }; @@ -15141,15 +15140,15 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bMatchAnyTag; + int8_t bMatchAnyTag; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pSearchText; }; @@ -15157,7 +15156,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unDays; }; @@ -15165,7 +15164,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pKey; const char *pValue; @@ -15198,7 +15197,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchTitle; }; @@ -15206,7 +15205,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchDescription; }; @@ -15214,7 +15213,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchLanguage; }; @@ -15222,7 +15221,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchMetaData; }; @@ -15230,7 +15229,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t eVisibility; }; @@ -15238,7 +15237,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; }; @@ -15246,7 +15245,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszContentFolder; }; @@ -15254,7 +15253,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszPreviewFile; }; @@ -15262,22 +15261,22 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUpload_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bAllowLegacyUpload; + int8_t bAllowLegacyUpload; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAllItemKeyValueTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchKey; }; @@ -15285,7 +15284,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchKey; const char *pchValue; @@ -15294,7 +15293,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszPreviewFile; uint32_t type; @@ -15303,7 +15302,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszVideoID; }; @@ -15311,7 +15310,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; const char *pszPreviewFile; @@ -15320,7 +15319,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVideo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; const char *pszVideoID; @@ -15329,7 +15328,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; }; @@ -15356,7 +15355,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetUserItemVote_params struct u_steam_iface *linux_side; uint64_t _ret; uint64_t nPublishedFileID; - bool bVoteUp; + int8_t bVoteUp; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetUserItemVote_params @@ -15420,7 +15419,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemState_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; char *pchFolder; @@ -15431,7 +15430,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; uint64_t *punBytesTotal; @@ -15440,15 +15439,15 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; - bool bHighPriority; + int8_t bHighPriority; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameServer_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; }; @@ -15456,7 +15455,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SuspendDownloads_params { struct u_steam_iface *linux_side; - bool bSuspend; + int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartPlaytimeTracking_params @@ -15530,7 +15529,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DeleteItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ShowWorkshopEULA_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetWorkshopEULAStatus_params @@ -15592,7 +15591,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SendQueryUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; w_SteamUGCDetails_t_128x *pDetails; @@ -15609,7 +15608,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t indexTag; @@ -15620,7 +15619,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplayName_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t indexTag; @@ -15631,7 +15630,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplayName_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; char *pchURL; @@ -15641,7 +15640,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; char *pchMetadata; @@ -15651,7 +15650,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint64_t *pvecPublishedFileID; @@ -15661,7 +15660,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t eStatType; @@ -15679,7 +15678,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t previewIndex; @@ -15701,7 +15700,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t keyValueTagIndex; @@ -15714,7 +15713,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; const char *pchKey; @@ -15725,14 +15724,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ReleaseQueryUGCRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -15740,7 +15739,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const w_SteamParamStringArray_t *pTagGroups; }; @@ -15748,7 +15747,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -15756,63 +15755,63 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnOnlyIDs; + int8_t bReturnOnlyIDs; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnKeyValueTags; + int8_t bReturnKeyValueTags; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnLongDescription; + int8_t bReturnLongDescription; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnMetadata; + int8_t bReturnMetadata; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnChildren; + int8_t bReturnChildren; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditionalPreviews_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnAdditionalPreviews; + int8_t bReturnAdditionalPreviews; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnTotalOnly; + int8_t bReturnTotalOnly; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unDays; }; @@ -15820,7 +15819,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStats_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchLanguage; }; @@ -15828,7 +15827,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedResponse_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; }; @@ -15836,7 +15835,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilter_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; }; @@ -15844,15 +15843,15 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bMatchAnyTag; + int8_t bMatchAnyTag; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pSearchText; }; @@ -15860,7 +15859,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unDays; }; @@ -15868,7 +15867,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRange_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t rtStart; uint32_t rtEnd; @@ -15877,7 +15876,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRange_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRange_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t rtStart; uint32_t rtEnd; @@ -15886,7 +15885,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRange_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pKey; const char *pValue; @@ -15919,7 +15918,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchTitle; }; @@ -15927,7 +15926,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchDescription; }; @@ -15935,7 +15934,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchLanguage; }; @@ -15943,7 +15942,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchMetaData; }; @@ -15951,7 +15950,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t eVisibility; }; @@ -15959,7 +15958,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; }; @@ -15967,7 +15966,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszContentFolder; }; @@ -15975,7 +15974,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszPreviewFile; }; @@ -15983,22 +15982,22 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUpload_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bAllowLegacyUpload; + int8_t bAllowLegacyUpload; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAllItemKeyValueTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchKey; }; @@ -16006,7 +16005,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchKey; const char *pchValue; @@ -16015,7 +16014,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszPreviewFile; uint32_t type; @@ -16024,7 +16023,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszVideoID; }; @@ -16032,7 +16031,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; const char *pszPreviewFile; @@ -16041,7 +16040,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVideo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; const char *pszVideoID; @@ -16050,7 +16049,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; }; @@ -16077,7 +16076,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetUserItemVote_params struct u_steam_iface *linux_side; uint64_t _ret; uint64_t nPublishedFileID; - bool bVoteUp; + int8_t bVoteUp; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetUserItemVote_params @@ -16141,7 +16140,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemState_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; char *pchFolder; @@ -16152,7 +16151,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; uint64_t *punBytesTotal; @@ -16161,15 +16160,15 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; - bool bHighPriority; + int8_t bHighPriority; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameServer_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; }; @@ -16177,7 +16176,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SuspendDownloads_params { struct u_steam_iface *linux_side; - bool bSuspend; + int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartPlaytimeTracking_params @@ -16251,7 +16250,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DeleteItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ShowWorkshopEULA_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetWorkshopEULAStatus_params @@ -16313,7 +16312,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SendQueryUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; w_SteamUGCDetails_t_128x *pDetails; @@ -16330,7 +16329,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t indexTag; @@ -16341,7 +16340,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplayName_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t indexTag; @@ -16352,7 +16351,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplayName_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; char *pchURL; @@ -16362,7 +16361,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; char *pchMetadata; @@ -16372,7 +16371,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint64_t *pvecPublishedFileID; @@ -16382,7 +16381,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatistic_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t eStatType; @@ -16400,7 +16399,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAdditionalPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t previewIndex; @@ -16422,7 +16421,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t keyValueTagIndex; @@ -16435,7 +16434,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; const char *pchKey; @@ -16456,14 +16455,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCContentDescriptors_par struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ReleaseQueryUGCRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -16471,7 +16470,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const w_SteamParamStringArray_t *pTagGroups; }; @@ -16479,7 +16478,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -16487,63 +16486,63 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnOnlyIDs; + int8_t bReturnOnlyIDs; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnKeyValueTags; + int8_t bReturnKeyValueTags; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnLongDescription; + int8_t bReturnLongDescription; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnMetadata; + int8_t bReturnMetadata; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnChildren; + int8_t bReturnChildren; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditionalPreviews_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnAdditionalPreviews; + int8_t bReturnAdditionalPreviews; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnTotalOnly; + int8_t bReturnTotalOnly; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unDays; }; @@ -16551,7 +16550,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStats_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchLanguage; }; @@ -16559,7 +16558,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedResponse_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; }; @@ -16567,7 +16566,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilter_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; }; @@ -16575,15 +16574,15 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bMatchAnyTag; + int8_t bMatchAnyTag; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pSearchText; }; @@ -16591,7 +16590,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unDays; }; @@ -16599,7 +16598,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRange_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t rtStart; uint32_t rtEnd; @@ -16608,7 +16607,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRange_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRange_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t rtStart; uint32_t rtEnd; @@ -16617,7 +16616,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRange_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pKey; const char *pValue; @@ -16650,7 +16649,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchTitle; }; @@ -16658,7 +16657,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchDescription; }; @@ -16666,7 +16665,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchLanguage; }; @@ -16674,7 +16673,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchMetaData; }; @@ -16682,7 +16681,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t eVisibility; }; @@ -16690,7 +16689,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; }; @@ -16698,7 +16697,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszContentFolder; }; @@ -16706,7 +16705,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszPreviewFile; }; @@ -16714,22 +16713,22 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUpload_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bAllowLegacyUpload; + int8_t bAllowLegacyUpload; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAllItemKeyValueTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchKey; }; @@ -16737,7 +16736,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchKey; const char *pchValue; @@ -16746,7 +16745,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszPreviewFile; uint32_t type; @@ -16755,7 +16754,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszVideoID; }; @@ -16763,7 +16762,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; const char *pszPreviewFile; @@ -16772,7 +16771,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVideo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; const char *pszVideoID; @@ -16781,7 +16780,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; }; @@ -16789,7 +16788,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t descid; }; @@ -16797,7 +16796,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveContentDescriptor_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t descid; }; @@ -16824,7 +16823,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetUserItemVote_params struct u_steam_iface *linux_side; uint64_t _ret; uint64_t nPublishedFileID; - bool bVoteUp; + int8_t bVoteUp; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetUserItemVote_params @@ -16888,7 +16887,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemState_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; char *pchFolder; @@ -16899,7 +16898,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; uint64_t *punBytesTotal; @@ -16908,15 +16907,15 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; - bool bHighPriority; + int8_t bHighPriority; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameServer_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; }; @@ -16924,7 +16923,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SuspendDownloads_params { struct u_steam_iface *linux_side; - bool bSuspend; + int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartPlaytimeTracking_params @@ -16998,7 +16997,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DeleteItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ShowWorkshopEULA_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetWorkshopEULAStatus_params @@ -17060,7 +17059,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SendQueryUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; w_SteamUGCDetails_t_128x *pDetails; @@ -17077,7 +17076,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t indexTag; @@ -17088,7 +17087,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplayName_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t indexTag; @@ -17099,7 +17098,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplayName_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; char *pchURL; @@ -17109,7 +17108,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; char *pchMetadata; @@ -17119,7 +17118,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint64_t *pvecPublishedFileID; @@ -17129,7 +17128,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatistic_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t eStatType; @@ -17147,7 +17146,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAdditionalPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t previewIndex; @@ -17169,7 +17168,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; uint32_t keyValueTagIndex; @@ -17182,7 +17181,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; const char *pchKey; @@ -17203,14 +17202,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCContentDescriptors_par struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ReleaseQueryUGCRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -17218,7 +17217,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const w_SteamParamStringArray_t *pTagGroups; }; @@ -17226,7 +17225,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pTagName; }; @@ -17234,63 +17233,63 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnOnlyIDs; + int8_t bReturnOnlyIDs; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnKeyValueTags; + int8_t bReturnKeyValueTags; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnLongDescription; + int8_t bReturnLongDescription; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnMetadata; + int8_t bReturnMetadata; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnChildren; + int8_t bReturnChildren; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditionalPreviews_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnAdditionalPreviews; + int8_t bReturnAdditionalPreviews; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bReturnTotalOnly; + int8_t bReturnTotalOnly; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unDays; }; @@ -17298,7 +17297,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStats_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchLanguage; }; @@ -17306,7 +17305,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedResponse_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; }; @@ -17314,7 +17313,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilter_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; }; @@ -17322,15 +17321,15 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bMatchAnyTag; + int8_t bMatchAnyTag; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pSearchText; }; @@ -17338,7 +17337,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t unDays; }; @@ -17346,7 +17345,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRange_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t rtStart; uint32_t rtEnd; @@ -17355,7 +17354,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRange_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRange_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t rtStart; uint32_t rtEnd; @@ -17364,7 +17363,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRange_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pKey; const char *pValue; @@ -17397,7 +17396,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchTitle; }; @@ -17405,7 +17404,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchDescription; }; @@ -17413,7 +17412,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchLanguage; }; @@ -17421,7 +17420,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchMetaData; }; @@ -17429,7 +17428,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t eVisibility; }; @@ -17437,16 +17436,16 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; - bool bAllowAdminTags; + int8_t bAllowAdminTags; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszContentFolder; }; @@ -17454,7 +17453,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszPreviewFile; }; @@ -17462,22 +17461,22 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUpload_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; - bool bAllowLegacyUpload; + int8_t bAllowLegacyUpload; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAllItemKeyValueTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTags_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchKey; }; @@ -17485,7 +17484,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pchKey; const char *pchValue; @@ -17494,7 +17493,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszPreviewFile; uint32_t type; @@ -17503,7 +17502,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; const char *pszVideoID; }; @@ -17511,7 +17510,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; const char *pszPreviewFile; @@ -17520,7 +17519,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVideo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; const char *pszVideoID; @@ -17529,7 +17528,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t index; }; @@ -17537,7 +17536,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t descid; }; @@ -17545,7 +17544,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveContentDescriptor_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t handle; uint32_t descid; }; @@ -17572,7 +17571,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetUserItemVote_params struct u_steam_iface *linux_side; uint64_t _ret; uint64_t nPublishedFileID; - bool bVoteUp; + int8_t bVoteUp; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserItemVote_params @@ -17636,7 +17635,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemState_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; char *pchFolder; @@ -17647,7 +17646,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; uint64_t *punBytesTotal; @@ -17656,15 +17655,15 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t nPublishedFileID; - bool bHighPriority; + int8_t bHighPriority; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameServer_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; }; @@ -17672,7 +17671,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SuspendDownloads_params { struct u_steam_iface *linux_side; - bool bSuspend; + int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartPlaytimeTracking_params @@ -17746,7 +17745,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DeleteItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ShowWorkshopEULA_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetWorkshopEULAStatus_params @@ -17776,7 +17775,7 @@ struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendMetho struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hHandle; uint32_t *punResponseSize; uint32_t *peResult; @@ -17785,24 +17784,24 @@ struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethod struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hHandle; void *pResponseBuffer; uint32_t unResponseBufferSize; - bool bAutoRelease; + int8_t bAutoRelease; }; struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_ReleaseMethod_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hHandle; }; struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotification_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchServiceNotification; const void *pNotificationBuffer; uint32_t unNotificationBufferSize; @@ -17864,14 +17863,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievementNa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_RequestCurrentStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CGameID nGameID; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CGameID nGameID; const char *pchName; int32_t *pData; @@ -17880,7 +17879,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CGameID nGameID; const char *pchName; float *pData; @@ -17889,7 +17888,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CGameID nGameID; const char *pchName; int32_t nData; @@ -17898,7 +17897,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CGameID nGameID; const char *pchName; float fData; @@ -17907,7 +17906,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvgRateStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CGameID nGameID; const char *pchName; float flCountThisSession; @@ -17917,25 +17916,25 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CGameID nGameID; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CGameID nGameID; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CGameID nGameID; const char *pchName; }; @@ -17943,7 +17942,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CGameID nGameID; const char *pchName; }; @@ -17951,14 +17950,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupAchievement_p struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_StoreStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CGameID nGameID; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CGameID nGameID; const char *pchName; }; @@ -17966,7 +17965,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchievement_para struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearGroupAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CGameID nGameID; const char *pchName; }; @@ -18029,14 +18028,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementName_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_RequestCurrentStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CGameID nGameID; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CGameID nGameID; const char *pchName; int32_t *pData; @@ -18045,7 +18044,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CGameID nGameID; const char *pchName; float *pData; @@ -18054,7 +18053,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CGameID nGameID; const char *pchName; int32_t nData; @@ -18063,7 +18062,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CGameID nGameID; const char *pchName; float fData; @@ -18072,7 +18071,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvgRateStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CGameID nGameID; const char *pchName; float flCountThisSession; @@ -18082,16 +18081,16 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CGameID nGameID; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CGameID nGameID; const char *pchName; }; @@ -18099,7 +18098,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CGameID nGameID; const char *pchName; }; @@ -18107,7 +18106,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchievement_para struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_StoreStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CGameID nGameID; }; @@ -18131,7 +18130,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateAchievementProgress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CGameID nGameID; const char *pchName; uint32_t nCurProgress; @@ -18141,13 +18140,13 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateAchievementPr struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCurrentStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; int32_t *pData; }; @@ -18155,7 +18154,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float *pData; }; @@ -18163,7 +18162,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; int32_t nData; }; @@ -18171,7 +18170,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float fData; }; @@ -18179,7 +18178,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float flCountThisSession; double dSessionLength; @@ -18188,29 +18187,29 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_ClearAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_StoreStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementIcon_params @@ -18231,7 +18230,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementProgress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; uint32_t nCurProgress; uint32_t nMaxProgress; @@ -18240,13 +18239,13 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementPr struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestCurrentStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; int32_t *pData; }; @@ -18254,7 +18253,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float *pData; }; @@ -18262,7 +18261,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; int32_t nData; }; @@ -18270,7 +18269,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float fData; }; @@ -18278,7 +18277,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvgRateStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float flCountThisSession; double dSessionLength; @@ -18287,29 +18286,29 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_ClearAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_StoreStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementIcon_params @@ -18330,7 +18329,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_IndicateAchievementProgress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; uint32_t nCurProgress; uint32_t nMaxProgress; @@ -18346,7 +18345,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestUserStats_para struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; int32_t *pData; @@ -18355,7 +18354,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; float *pData; @@ -18364,22 +18363,22 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestCurrentStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; int32_t *pData; }; @@ -18387,7 +18386,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float *pData; }; @@ -18395,7 +18394,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; int32_t nData; }; @@ -18403,7 +18402,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float fData; }; @@ -18411,7 +18410,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvgRateStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float flCountThisSession; double dSessionLength; @@ -18420,29 +18419,29 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ClearAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_StoreStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementIcon_params @@ -18463,7 +18462,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_IndicateAchievementProgress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; uint32_t nCurProgress; uint32_t nMaxProgress; @@ -18479,7 +18478,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestUserStats_para struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; int32_t *pData; @@ -18488,7 +18487,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; float *pData; @@ -18497,17 +18496,17 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ResetAllStats_params { struct u_steam_iface *linux_side; - bool _ret; - bool bAchievementsToo; + int8_t _ret; + int8_t bAchievementsToo; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindOrCreateLeaderboard_params @@ -18567,7 +18566,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeaderboardEntry_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hSteamLeaderboardEntries; int32_t index; w_LeaderboardEntry_t_104 *pLeaderboardEntry; @@ -18588,13 +18587,13 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UploadLeaderboardScor struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestCurrentStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; int32_t *pData; }; @@ -18602,7 +18601,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float *pData; }; @@ -18610,7 +18609,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; int32_t nData; }; @@ -18618,7 +18617,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float fData; }; @@ -18626,7 +18625,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvgRateStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float flCountThisSession; double dSessionLength; @@ -18635,29 +18634,29 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ClearAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_StoreStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementIcon_params @@ -18678,7 +18677,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_IndicateAchievementProgress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; uint32_t nCurProgress; uint32_t nMaxProgress; @@ -18694,7 +18693,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestUserStats_para struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; int32_t *pData; @@ -18703,7 +18702,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; float *pData; @@ -18712,17 +18711,17 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ResetAllStats_params { struct u_steam_iface *linux_side; - bool _ret; - bool bAchievementsToo; + int8_t _ret; + int8_t bAchievementsToo; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindOrCreateLeaderboard_params @@ -18782,7 +18781,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDownloadedLeaderboardEntry_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hSteamLeaderboardEntries; int32_t index; w_LeaderboardEntry_t_104 *pLeaderboardEntry; @@ -18810,13 +18809,13 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetNumberOfCurrentPla struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestCurrentStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; int32_t *pData; }; @@ -18824,7 +18823,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float *pData; }; @@ -18832,7 +18831,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; int32_t nData; }; @@ -18840,7 +18839,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float fData; }; @@ -18848,7 +18847,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvgRateStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float flCountThisSession; double dSessionLength; @@ -18857,38 +18856,38 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ClearAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementAndUnlockTime_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; uint32_t *punUnlockTime; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_StoreStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementIcon_params @@ -18909,7 +18908,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_IndicateAchievementProgress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; uint32_t nCurProgress; uint32_t nMaxProgress; @@ -18925,7 +18924,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestUserStats_para struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; int32_t *pData; @@ -18934,7 +18933,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; float *pData; @@ -18943,27 +18942,27 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievementAndUnlockTime_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; uint32_t *punUnlockTime; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ResetAllStats_params { struct u_steam_iface *linux_side; - bool _ret; - bool bAchievementsToo; + int8_t _ret; + int8_t bAchievementsToo; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindOrCreateLeaderboard_params @@ -19023,7 +19022,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDownloadedLeaderboardEntry_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hSteamLeaderboardEntries; int32_t index; w_LeaderboardEntry_t_104 *pLeaderboardEntry; @@ -19051,13 +19050,13 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetNumberOfCurrentPla struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestCurrentStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; int32_t *pData; }; @@ -19065,7 +19064,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float *pData; }; @@ -19073,7 +19072,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; int32_t nData; }; @@ -19081,7 +19080,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float fData; }; @@ -19089,7 +19088,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvgRateStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float flCountThisSession; double dSessionLength; @@ -19098,38 +19097,38 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ClearAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementAndUnlockTime_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; uint32_t *punUnlockTime; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_StoreStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementIcon_params @@ -19150,7 +19149,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_IndicateAchievementProgress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; uint32_t nCurProgress; uint32_t nMaxProgress; @@ -19166,7 +19165,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestUserStats_para struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; int32_t *pData; @@ -19175,7 +19174,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; float *pData; @@ -19184,27 +19183,27 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievementAndUnlockTime_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; uint32_t *punUnlockTime; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ResetAllStats_params { struct u_steam_iface *linux_side; - bool _ret; - bool bAchievementsToo; + int8_t _ret; + int8_t bAchievementsToo; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindOrCreateLeaderboard_params @@ -19264,7 +19263,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDownloadedLeaderboardEntry_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hSteamLeaderboardEntries; int32_t index; w_LeaderboardEntry_t_111x *pLeaderboardEntry; @@ -19300,13 +19299,13 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetNumberOfCurrentPla struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestCurrentStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; int32_t *pData; }; @@ -19314,7 +19313,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float *pData; }; @@ -19322,7 +19321,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; int32_t nData; }; @@ -19330,7 +19329,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float fData; }; @@ -19338,7 +19337,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvgRateStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float flCountThisSession; double dSessionLength; @@ -19347,38 +19346,38 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ClearAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementAndUnlockTime_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; uint32_t *punUnlockTime; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_StoreStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementIcon_params @@ -19399,7 +19398,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_IndicateAchievementProgress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; uint32_t nCurProgress; uint32_t nMaxProgress; @@ -19415,7 +19414,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestUserStats_para struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; int32_t *pData; @@ -19424,7 +19423,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; float *pData; @@ -19433,27 +19432,27 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievementAndUnlockTime_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; uint32_t *punUnlockTime; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ResetAllStats_params { struct u_steam_iface *linux_side; - bool _ret; - bool bAchievementsToo; + int8_t _ret; + int8_t bAchievementsToo; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindOrCreateLeaderboard_params @@ -19522,7 +19521,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDownloadedLeaderboardEntry_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hSteamLeaderboardEntries; int32_t index; w_LeaderboardEntry_t_111x *pLeaderboardEntry; @@ -19558,13 +19557,13 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetNumberOfCurrentPla struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; int32_t *pData; }; @@ -19572,7 +19571,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float *pData; }; @@ -19580,7 +19579,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; int32_t nData; }; @@ -19588,7 +19587,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float fData; }; @@ -19596,7 +19595,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float flCountThisSession; double dSessionLength; @@ -19605,38 +19604,38 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUnlockTime_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; uint32_t *punUnlockTime; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_StoreStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementIcon_params @@ -19657,7 +19656,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievementProgress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; uint32_t nCurProgress; uint32_t nMaxProgress; @@ -19673,7 +19672,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestUserStats_para struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; int32_t *pData; @@ -19682,7 +19681,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; float *pData; @@ -19691,27 +19690,27 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementAndUnlockTime_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; uint32_t *punUnlockTime; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ResetAllStats_params { struct u_steam_iface *linux_side; - bool _ret; - bool bAchievementsToo; + int8_t _ret; + int8_t bAchievementsToo; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindOrCreateLeaderboard_params @@ -19780,7 +19779,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeaderboardEntry_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hSteamLeaderboardEntries; int32_t index; w_LeaderboardEntry_t_111x *pLeaderboardEntry; @@ -19826,7 +19825,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMostAchievedAchiev char *pchName; uint32_t unNameBufLen; float *pflPercent; - bool *pbAchieved; + int8_t *pbAchieved; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAchievementInfo_params @@ -19837,13 +19836,13 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAc char *pchName; uint32_t unNameBufLen; float *pflPercent; - bool *pbAchieved; + int8_t *pbAchieved; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchievedPercent_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float *pflPercent; }; @@ -19858,7 +19857,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalStats_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchStatName; int64_t *pData; }; @@ -19866,7 +19865,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchStatName; double *pData; }; @@ -19892,13 +19891,13 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestCurrentStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; int32_t *pData; }; @@ -19906,7 +19905,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float *pData; }; @@ -19914,7 +19913,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; int32_t nData; }; @@ -19922,7 +19921,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float fData; }; @@ -19930,7 +19929,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvgRateStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float flCountThisSession; double dSessionLength; @@ -19939,38 +19938,38 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ClearAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAndUnlockTime_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; uint32_t *punUnlockTime; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_StoreStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementIcon_params @@ -19991,7 +19990,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_IndicateAchievementProgress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; uint32_t nCurProgress; uint32_t nMaxProgress; @@ -20020,7 +20019,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestUserStats_para struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; int32_t *pData; @@ -20029,7 +20028,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; float *pData; @@ -20038,27 +20037,27 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievementAndUnlockTime_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; uint32_t *punUnlockTime; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ResetAllStats_params { struct u_steam_iface *linux_side; - bool _ret; - bool bAchievementsToo; + int8_t _ret; + int8_t bAchievementsToo; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindOrCreateLeaderboard_params @@ -20127,7 +20126,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDownloadedLeaderboardEntry_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hSteamLeaderboardEntries; int32_t index; w_LeaderboardEntry_t_123 *pLeaderboardEntry; @@ -20173,7 +20172,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMostAchievedAchiev char *pchName; uint32_t unNameBufLen; float *pflPercent; - bool *pbAchieved; + int8_t *pbAchieved; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNextMostAchievedAchievementInfo_params @@ -20184,13 +20183,13 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNextMostAchievedAc char *pchName; uint32_t unNameBufLen; float *pflPercent; - bool *pbAchieved; + int8_t *pbAchieved; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAchievedPercent_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float *pflPercent; }; @@ -20205,7 +20204,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalStats_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchStatName; int64_t *pData; }; @@ -20213,7 +20212,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchStatName; double *pData; }; @@ -20239,13 +20238,13 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestCurrentStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; int32_t *pData; }; @@ -20253,7 +20252,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float *pData; }; @@ -20261,7 +20260,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; int32_t nData; }; @@ -20269,7 +20268,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float fData; }; @@ -20277,7 +20276,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvgRateStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float flCountThisSession; double dSessionLength; @@ -20286,38 +20285,38 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ClearAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAndUnlockTime_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; uint32_t *punUnlockTime; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_StoreStats_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementIcon_params @@ -20338,7 +20337,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_IndicateAchievementProgress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; uint32_t nCurProgress; uint32_t nMaxProgress; @@ -20367,7 +20366,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestUserStats_para struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; int32_t *pData; @@ -20376,7 +20375,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; float *pData; @@ -20385,27 +20384,27 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievementAndUnlockTime_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; uint32_t *punUnlockTime; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ResetAllStats_params { struct u_steam_iface *linux_side; - bool _ret; - bool bAchievementsToo; + int8_t _ret; + int8_t bAchievementsToo; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindOrCreateLeaderboard_params @@ -20474,7 +20473,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDownloadedLeaderboardEntry_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hSteamLeaderboardEntries; int32_t index; w_LeaderboardEntry_t_123 *pLeaderboardEntry; @@ -20520,7 +20519,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMostAchievedAchiev char *pchName; uint32_t unNameBufLen; float *pflPercent; - bool *pbAchieved; + int8_t *pbAchieved; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNextMostAchievedAchievementInfo_params @@ -20531,13 +20530,13 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNextMostAchievedAc char *pchName; uint32_t unNameBufLen; float *pflPercent; - bool *pbAchieved; + int8_t *pbAchieved; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAchievedPercent_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float *pflPercent; }; @@ -20552,7 +20551,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalStats_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchStatName; int64_t *pData; }; @@ -20560,7 +20559,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchStatName; double *pData; }; @@ -20586,7 +20585,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; int32_t *pnMinProgress; int32_t *pnMaxProgress; @@ -20595,7 +20594,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgres struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchName; float *pfMinProgress; float *pfMaxProgress; @@ -20610,7 +20609,7 @@ struct ISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL_params struct ISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pnNumViewers; }; @@ -20623,7 +20622,7 @@ struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetVideoURL_params struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pnNumViewers; }; @@ -20636,7 +20635,7 @@ struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFSettings_params struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unVideoAppID; char *pchBuffer; int32_t *pnBufferSize; @@ -20651,7 +20650,7 @@ struct ISteamClient_SteamClient006_CreateSteamPipe_params struct ISteamClient_SteamClient006_BReleaseSteamPipe_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t hSteamPipe; }; @@ -20813,7 +20812,7 @@ struct ISteamClient_SteamClient007_CreateSteamPipe_params struct ISteamClient_SteamClient007_BReleaseSteamPipe_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t hSteamPipe; }; @@ -20987,7 +20986,7 @@ struct ISteamClient_SteamClient008_CreateSteamPipe_params struct ISteamClient_SteamClient008_BReleaseSteamPipe_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t hSteamPipe; }; @@ -21153,7 +21152,7 @@ struct ISteamClient_SteamClient009_CreateSteamPipe_params struct ISteamClient_SteamClient009_BReleaseSteamPipe_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t hSteamPipe; }; @@ -21328,7 +21327,7 @@ struct ISteamClient_SteamClient010_CreateSteamPipe_params struct ISteamClient_SteamClient010_BReleaseSteamPipe_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t hSteamPipe; }; @@ -21497,7 +21496,7 @@ struct ISteamClient_SteamClient010_SetWarningMessageHook_params struct ISteamClient_SteamClient010_BShutdownIfAllPipesClosed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamClient_SteamClient010_GetISteamHTTP_params @@ -21518,7 +21517,7 @@ struct ISteamClient_SteamClient011_CreateSteamPipe_params struct ISteamClient_SteamClient011_BReleaseSteamPipe_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t hSteamPipe; }; @@ -21696,7 +21695,7 @@ struct ISteamClient_SteamClient011_SetWarningMessageHook_params struct ISteamClient_SteamClient011_BShutdownIfAllPipesClosed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamClient_SteamClient011_GetISteamHTTP_params @@ -21717,7 +21716,7 @@ struct ISteamClient_SteamClient012_CreateSteamPipe_params struct ISteamClient_SteamClient012_BReleaseSteamPipe_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t hSteamPipe; }; @@ -21886,7 +21885,7 @@ struct ISteamClient_SteamClient012_SetWarningMessageHook_params struct ISteamClient_SteamClient012_BShutdownIfAllPipesClosed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamClient_SteamClient012_GetISteamHTTP_params @@ -21934,7 +21933,7 @@ struct ISteamClient_SteamClient013_CreateSteamPipe_params struct ISteamClient_SteamClient013_BReleaseSteamPipe_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t hSteamPipe; }; @@ -22103,7 +22102,7 @@ struct ISteamClient_SteamClient013_SetWarningMessageHook_params struct ISteamClient_SteamClient013_BShutdownIfAllPipesClosed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamClient_SteamClient013_GetISteamHTTP_params @@ -22178,7 +22177,7 @@ struct ISteamClient_SteamClient014_CreateSteamPipe_params struct ISteamClient_SteamClient014_BReleaseSteamPipe_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t hSteamPipe; }; @@ -22347,7 +22346,7 @@ struct ISteamClient_SteamClient014_SetWarningMessageHook_params struct ISteamClient_SteamClient014_BShutdownIfAllPipesClosed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamClient_SteamClient014_GetISteamHTTP_params @@ -22413,7 +22412,7 @@ struct ISteamClient_SteamClient015_CreateSteamPipe_params struct ISteamClient_SteamClient015_BReleaseSteamPipe_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t hSteamPipe; }; @@ -22582,7 +22581,7 @@ struct ISteamClient_SteamClient015_SetWarningMessageHook_params struct ISteamClient_SteamClient015_BShutdownIfAllPipesClosed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamClient_SteamClient015_GetISteamHTTP_params @@ -22657,7 +22656,7 @@ struct ISteamClient_SteamClient016_CreateSteamPipe_params struct ISteamClient_SteamClient016_BReleaseSteamPipe_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t hSteamPipe; }; @@ -22826,7 +22825,7 @@ struct ISteamClient_SteamClient016_SetWarningMessageHook_params struct ISteamClient_SteamClient016_BShutdownIfAllPipesClosed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamClient_SteamClient016_GetISteamHTTP_params @@ -22928,7 +22927,7 @@ struct ISteamClient_SteamClient017_CreateSteamPipe_params struct ISteamClient_SteamClient017_BReleaseSteamPipe_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t hSteamPipe; }; @@ -23097,7 +23096,7 @@ struct ISteamClient_SteamClient017_SetWarningMessageHook_params struct ISteamClient_SteamClient017_BShutdownIfAllPipesClosed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamClient_SteamClient017_GetISteamHTTP_params @@ -23226,7 +23225,7 @@ struct ISteamClient_SteamClient018_CreateSteamPipe_params struct ISteamClient_SteamClient018_BReleaseSteamPipe_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t hSteamPipe; }; @@ -23404,7 +23403,7 @@ struct ISteamClient_SteamClient018_SetWarningMessageHook_params struct ISteamClient_SteamClient018_BShutdownIfAllPipesClosed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamClient_SteamClient018_GetISteamHTTP_params @@ -23551,7 +23550,7 @@ struct ISteamClient_SteamClient019_CreateSteamPipe_params struct ISteamClient_SteamClient019_BReleaseSteamPipe_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t hSteamPipe; }; @@ -23729,7 +23728,7 @@ struct ISteamClient_SteamClient019_SetWarningMessageHook_params struct ISteamClient_SteamClient019_BShutdownIfAllPipesClosed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamClient_SteamClient019_GetISteamHTTP_params @@ -23885,7 +23884,7 @@ struct ISteamClient_SteamClient020_CreateSteamPipe_params struct ISteamClient_SteamClient020_BReleaseSteamPipe_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t hSteamPipe; }; @@ -24063,7 +24062,7 @@ struct ISteamClient_SteamClient020_SetWarningMessageHook_params struct ISteamClient_SteamClient020_BShutdownIfAllPipesClosed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamClient_SteamClient020_GetISteamHTTP_params @@ -24218,13 +24217,13 @@ struct ISteamClient_SteamClient020_DestroyAllInterfaces_params struct ISteamController_SteamController003_Init_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamController_SteamController003_Shutdown_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamController_SteamController003_RunFrame_params @@ -24242,7 +24241,7 @@ struct ISteamController_SteamController003_GetConnectedControllers_params struct ISteamController_SteamController003_ShowBindingPanel_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t controllerHandle; }; @@ -24346,13 +24345,13 @@ struct ISteamController_SteamController003_TriggerRepeatedHapticPulse_params struct ISteamController_SteamController004_Init_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamController_SteamController004_Shutdown_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamController_SteamController004_RunFrame_params @@ -24370,7 +24369,7 @@ struct ISteamController_SteamController004_GetConnectedControllers_params struct ISteamController_SteamController004_ShowBindingPanel_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t controllerHandle; }; @@ -24495,7 +24494,7 @@ struct ISteamController_SteamController004_GetMotionData_params struct ISteamController_SteamController004_ShowDigitalActionOrigins_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t controllerHandle; uint64_t digitalActionHandle; float flScale; @@ -24506,7 +24505,7 @@ struct ISteamController_SteamController004_ShowDigitalActionOrigins_params struct ISteamController_SteamController004_ShowAnalogActionOrigins_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t controllerHandle; uint64_t analogActionHandle; float flScale; @@ -24517,13 +24516,13 @@ struct ISteamController_SteamController004_ShowAnalogActionOrigins_params struct ISteamController_SteamController005_Init_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamController_SteamController005_Shutdown_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamController_SteamController005_RunFrame_params @@ -24541,7 +24540,7 @@ struct ISteamController_SteamController005_GetConnectedControllers_params struct ISteamController_SteamController005_ShowBindingPanel_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t controllerHandle; }; @@ -24684,7 +24683,7 @@ struct ISteamController_SteamController005_GetMotionData_params struct ISteamController_SteamController005_ShowDigitalActionOrigins_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t controllerHandle; uint64_t digitalActionHandle; float flScale; @@ -24695,7 +24694,7 @@ struct ISteamController_SteamController005_ShowDigitalActionOrigins_params struct ISteamController_SteamController005_ShowAnalogActionOrigins_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t controllerHandle; uint64_t analogActionHandle; float flScale; @@ -24720,13 +24719,13 @@ struct ISteamController_SteamController005_GetGlyphForActionOrigin_params struct ISteamController_SteamController006_Init_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamController_SteamController006_Shutdown_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamController_SteamController006_RunFrame_params @@ -24744,7 +24743,7 @@ struct ISteamController_SteamController006_GetConnectedControllers_params struct ISteamController_SteamController006_ShowBindingPanel_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t controllerHandle; }; @@ -24915,7 +24914,7 @@ struct ISteamController_SteamController006_GetMotionData_params struct ISteamController_SteamController006_ShowDigitalActionOrigins_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t controllerHandle; uint64_t digitalActionHandle; float flScale; @@ -24926,7 +24925,7 @@ struct ISteamController_SteamController006_ShowDigitalActionOrigins_params struct ISteamController_SteamController006_ShowAnalogActionOrigins_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t controllerHandle; uint64_t analogActionHandle; float flScale; @@ -24958,13 +24957,13 @@ struct ISteamController_SteamController006_GetInputTypeForHandle_params struct ISteamController_SteamController007_Init_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamController_SteamController007_Shutdown_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamController_SteamController007_RunFrame_params @@ -25146,7 +25145,7 @@ struct ISteamController_SteamController007_SetLEDColor_params struct ISteamController_SteamController007_ShowBindingPanel_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t controllerHandle; }; @@ -25204,7 +25203,7 @@ struct ISteamController_SteamController007_TranslateActionOrigin_params struct ISteamController_SteamController007_GetControllerBindingRevision_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t controllerHandle; int32_t *pMajor; int32_t *pMinor; @@ -25213,13 +25212,13 @@ struct ISteamController_SteamController007_GetControllerBindingRevision_params struct ISteamController_SteamController008_Init_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamController_SteamController008_Shutdown_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamController_SteamController008_RunFrame_params @@ -25401,7 +25400,7 @@ struct ISteamController_SteamController008_SetLEDColor_params struct ISteamController_SteamController008_ShowBindingPanel_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t controllerHandle; }; @@ -25459,7 +25458,7 @@ struct ISteamController_SteamController008_TranslateActionOrigin_params struct ISteamController_SteamController008_GetControllerBindingRevision_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t controllerHandle; int32_t *pMajor; int32_t *pMinor; @@ -25492,21 +25491,21 @@ struct ISteamFriends_SteamFriends001_SetPersonaState_params struct ISteamFriends_SteamFriends001_AddFriend_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends001_RemoveFriend_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends001_HasFriend_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; }; @@ -25527,7 +25526,7 @@ struct ISteamFriends_SteamFriends001_GetFriendPersonaState_params struct ISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; int32_t *pnGameID; uint32_t *punGameIP; @@ -25607,7 +25606,7 @@ struct ISteamFriends_SteamFriends001_GetChatMessage_params struct ISteamFriends_SteamFriends001_SendMsgToFriend_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; uint32_t eChatEntryType; const void *pvMsgBody; @@ -25637,7 +25636,7 @@ struct ISteamFriends_SteamFriends001_ClearChatHistory_params struct ISteamFriends_SteamFriends001_InviteFriendByEmail_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchEmailAccount; }; @@ -25650,7 +25649,7 @@ struct ISteamFriends_SteamFriends001_GetBlockedFriendCount_params struct ISteamFriends_SteamFriends001_GetFriendGamePlayed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; uint64_t *pulGameID; uint32_t *punGameIP; @@ -25660,7 +25659,7 @@ struct ISteamFriends_SteamFriends001_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends001_GetFriendGamePlayed2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; uint64_t *pulGameID; uint32_t *punGameIP; @@ -25747,7 +25746,7 @@ struct ISteamFriends_SteamFriends002_GetFriendRegValue_params struct ISteamFriends_SteamFriends002_GetFriendGamePlayed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; uint64_t *pulGameID; uint32_t *punGameIP; @@ -25766,21 +25765,21 @@ struct ISteamFriends_SteamFriends002_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends002_AddFriend_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends002_RemoveFriend_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends002_HasFriend_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; }; @@ -25795,7 +25794,7 @@ struct ISteamFriends_SteamFriends002_AddFriendByName_params struct ISteamFriends_SteamFriends002_InviteFriendByEmail_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchEmailAccount; }; @@ -25813,7 +25812,7 @@ struct ISteamFriends_SteamFriends002_GetChatMessage_params struct ISteamFriends_SteamFriends002_SendMsgToFriend_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; uint32_t eChatEntryType; const void *pvMsgBody; @@ -25863,7 +25862,7 @@ struct ISteamFriends_SteamFriends002_GetClanName_params struct ISteamFriends_SteamFriends002_InviteFriendToClan_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; CSteamID steamIDClan; }; @@ -25871,9 +25870,9 @@ struct ISteamFriends_SteamFriends002_InviteFriendToClan_params struct ISteamFriends_SteamFriends002_AcknowledgeInviteToClan_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClan; - bool bAcceptOrDenyClanInvite; + int8_t bAcceptOrDenyClanInvite; }; struct ISteamFriends_SteamFriends002_GetFriendCountFromSource_params @@ -25955,7 +25954,7 @@ struct ISteamFriends_SteamFriends003_GetFriendAvatar_params struct ISteamFriends_SteamFriends003_GetFriendGamePlayed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; uint64_t *pulGameID; uint32_t *punGameIP; @@ -25974,7 +25973,7 @@ struct ISteamFriends_SteamFriends003_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends003_HasFriend_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; }; @@ -26017,7 +26016,7 @@ struct ISteamFriends_SteamFriends003_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends003_IsUserInSource_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; }; @@ -26026,7 +26025,7 @@ struct ISteamFriends_SteamFriends003_SetInGameVoiceSpeaking_params { struct u_steam_iface *linux_side; CSteamID steamIDUser; - bool bSpeaking; + int8_t bSpeaking; }; struct ISteamFriends_SteamFriends003_ActivateGameOverlay_params @@ -26100,7 +26099,7 @@ struct ISteamFriends_SteamFriends004_GetFriendAvatar_params struct ISteamFriends_SteamFriends004_GetFriendGamePlayed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; uint64_t *pulGameID; uint32_t *punGameIP; @@ -26119,7 +26118,7 @@ struct ISteamFriends_SteamFriends004_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends004_HasFriend_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; }; @@ -26162,7 +26161,7 @@ struct ISteamFriends_SteamFriends004_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends004_IsUserInSource_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; }; @@ -26171,7 +26170,7 @@ struct ISteamFriends_SteamFriends004_SetInGameVoiceSpeaking_params { struct u_steam_iface *linux_side; CSteamID steamIDUser; - bool bSpeaking; + int8_t bSpeaking; }; struct ISteamFriends_SteamFriends004_ActivateGameOverlay_params @@ -26245,7 +26244,7 @@ struct ISteamFriends_SteamFriends005_GetFriendAvatar_params struct ISteamFriends_SteamFriends005_GetFriendGamePlayed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; }; @@ -26261,7 +26260,7 @@ struct ISteamFriends_SteamFriends005_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends005_HasFriend_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; }; @@ -26304,7 +26303,7 @@ struct ISteamFriends_SteamFriends005_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends005_IsUserInSource_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; }; @@ -26313,7 +26312,7 @@ struct ISteamFriends_SteamFriends005_SetInGameVoiceSpeaking_params { struct u_steam_iface *linux_side; CSteamID steamIDUser; - bool bSpeaking; + int8_t bSpeaking; }; struct ISteamFriends_SteamFriends005_ActivateGameOverlay_params @@ -26412,7 +26411,7 @@ struct ISteamFriends_SteamFriends006_GetFriendAvatar_params struct ISteamFriends_SteamFriends006_GetFriendGamePlayed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; }; @@ -26428,7 +26427,7 @@ struct ISteamFriends_SteamFriends006_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends006_HasFriend_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; }; @@ -26478,7 +26477,7 @@ struct ISteamFriends_SteamFriends006_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends006_IsUserInSource_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; }; @@ -26487,7 +26486,7 @@ struct ISteamFriends_SteamFriends006_SetInGameVoiceSpeaking_params { struct u_steam_iface *linux_side; CSteamID steamIDUser; - bool bSpeaking; + int8_t bSpeaking; }; struct ISteamFriends_SteamFriends006_ActivateGameOverlay_params @@ -26584,7 +26583,7 @@ struct ISteamFriends_SteamFriends007_GetFriendPersonaName_params struct ISteamFriends_SteamFriends007_GetFriendGamePlayed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; }; @@ -26600,7 +26599,7 @@ struct ISteamFriends_SteamFriends007_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends007_HasFriend_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; }; @@ -26650,7 +26649,7 @@ struct ISteamFriends_SteamFriends007_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends007_IsUserInSource_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; }; @@ -26659,7 +26658,7 @@ struct ISteamFriends_SteamFriends007_SetInGameVoiceSpeaking_params { struct u_steam_iface *linux_side; CSteamID steamIDUser; - bool bSpeaking; + int8_t bSpeaking; }; struct ISteamFriends_SteamFriends007_ActivateGameOverlay_params @@ -26777,7 +26776,7 @@ struct ISteamFriends_SteamFriends008_GetFriendPersonaName_params struct ISteamFriends_SteamFriends008_GetFriendGamePlayed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; }; @@ -26793,7 +26792,7 @@ struct ISteamFriends_SteamFriends008_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends008_HasFriend_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; }; @@ -26843,7 +26842,7 @@ struct ISteamFriends_SteamFriends008_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends008_IsUserInSource_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; }; @@ -26852,7 +26851,7 @@ struct ISteamFriends_SteamFriends008_SetInGameVoiceSpeaking_params { struct u_steam_iface *linux_side; CSteamID steamIDUser; - bool bSpeaking; + int8_t bSpeaking; }; struct ISteamFriends_SteamFriends008_ActivateGameOverlay_params @@ -26916,9 +26915,9 @@ struct ISteamFriends_SteamFriends008_GetLargeFriendAvatar_params struct ISteamFriends_SteamFriends008_RequestUserInformation_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; - bool bRequireNameOnly; + int8_t bRequireNameOnly; }; struct ISteamFriends_SteamFriends008_RequestClanOfficerList_params @@ -27013,7 +27012,7 @@ struct ISteamFriends_SteamFriends009_GetFriendPersonaName_params struct ISteamFriends_SteamFriends009_GetFriendGamePlayed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; }; @@ -27029,7 +27028,7 @@ struct ISteamFriends_SteamFriends009_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends009_HasFriend_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; }; @@ -27079,7 +27078,7 @@ struct ISteamFriends_SteamFriends009_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends009_IsUserInSource_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; }; @@ -27088,7 +27087,7 @@ struct ISteamFriends_SteamFriends009_SetInGameVoiceSpeaking_params { struct u_steam_iface *linux_side; CSteamID steamIDUser; - bool bSpeaking; + int8_t bSpeaking; }; struct ISteamFriends_SteamFriends009_ActivateGameOverlay_params @@ -27152,9 +27151,9 @@ struct ISteamFriends_SteamFriends009_GetLargeFriendAvatar_params struct ISteamFriends_SteamFriends009_RequestUserInformation_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; - bool bRequireNameOnly; + int8_t bRequireNameOnly; }; struct ISteamFriends_SteamFriends009_RequestClanOfficerList_params @@ -27195,7 +27194,7 @@ struct ISteamFriends_SteamFriends009_GetUserRestrictions_params struct ISteamFriends_SteamFriends009_SetRichPresence_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchKey; const char *pchValue; }; @@ -27231,7 +27230,7 @@ struct ISteamFriends_SteamFriends009_GetFriendRichPresenceKeyByIndex_params struct ISteamFriends_SteamFriends009_InviteUserToGame_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; const char *pchConnectString; }; @@ -27320,7 +27319,7 @@ struct ISteamFriends_SteamFriends010_GetFriendPersonaName_params struct ISteamFriends_SteamFriends010_GetFriendGamePlayed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; }; @@ -27336,7 +27335,7 @@ struct ISteamFriends_SteamFriends010_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends010_HasFriend_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; }; @@ -27371,7 +27370,7 @@ struct ISteamFriends_SteamFriends010_GetClanTag_params struct ISteamFriends_SteamFriends010_GetClanActivityCounts_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClan; int32_t *pnOnline; int32_t *pnInGame; @@ -27404,7 +27403,7 @@ struct ISteamFriends_SteamFriends010_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends010_IsUserInSource_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; }; @@ -27413,7 +27412,7 @@ struct ISteamFriends_SteamFriends010_SetInGameVoiceSpeaking_params { struct u_steam_iface *linux_side; CSteamID steamIDUser; - bool bSpeaking; + int8_t bSpeaking; }; struct ISteamFriends_SteamFriends010_ActivateGameOverlay_params @@ -27477,9 +27476,9 @@ struct ISteamFriends_SteamFriends010_GetLargeFriendAvatar_params struct ISteamFriends_SteamFriends010_RequestUserInformation_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; - bool bRequireNameOnly; + int8_t bRequireNameOnly; }; struct ISteamFriends_SteamFriends010_RequestClanOfficerList_params @@ -27520,7 +27519,7 @@ struct ISteamFriends_SteamFriends010_GetUserRestrictions_params struct ISteamFriends_SteamFriends010_SetRichPresence_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchKey; const char *pchValue; }; @@ -27556,7 +27555,7 @@ struct ISteamFriends_SteamFriends010_GetFriendRichPresenceKeyByIndex_params struct ISteamFriends_SteamFriends010_InviteUserToGame_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; const char *pchConnectString; }; @@ -27598,7 +27597,7 @@ struct ISteamFriends_SteamFriends010_JoinClanChatRoom_params struct ISteamFriends_SteamFriends010_LeaveClanChatRoom_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClan; }; @@ -27620,7 +27619,7 @@ struct ISteamFriends_SteamFriends010_GetChatMemberByIndex_params struct ISteamFriends_SteamFriends010_SendClanChatMessage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; const char *pchText; }; @@ -27640,7 +27639,7 @@ struct ISteamFriends_SteamFriends010_GetClanChatMessage_params struct ISteamFriends_SteamFriends010_IsClanChatAdmin_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; CSteamID steamIDUser; }; @@ -27648,35 +27647,35 @@ struct ISteamFriends_SteamFriends010_IsClanChatAdmin_params struct ISteamFriends_SteamFriends010_IsClanChatWindowOpenInSteam_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends010_OpenClanChatWindowInSteam_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends010_CloseClanChatWindowInSteam_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends010_SetListenForFriendsMessages_params { struct u_steam_iface *linux_side; - bool _ret; - bool bInterceptEnabled; + int8_t _ret; + int8_t bInterceptEnabled; }; struct ISteamFriends_SteamFriends010_ReplyToFriendMessage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; const char *pchMsgToSend; }; @@ -27749,7 +27748,7 @@ struct ISteamFriends_SteamFriends011_GetFriendPersonaName_params struct ISteamFriends_SteamFriends011_GetFriendGamePlayed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; }; @@ -27765,7 +27764,7 @@ struct ISteamFriends_SteamFriends011_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends011_HasFriend_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; }; @@ -27800,7 +27799,7 @@ struct ISteamFriends_SteamFriends011_GetClanTag_params struct ISteamFriends_SteamFriends011_GetClanActivityCounts_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClan; int32_t *pnOnline; int32_t *pnInGame; @@ -27833,7 +27832,7 @@ struct ISteamFriends_SteamFriends011_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends011_IsUserInSource_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; }; @@ -27842,7 +27841,7 @@ struct ISteamFriends_SteamFriends011_SetInGameVoiceSpeaking_params { struct u_steam_iface *linux_side; CSteamID steamIDUser; - bool bSpeaking; + int8_t bSpeaking; }; struct ISteamFriends_SteamFriends011_ActivateGameOverlay_params @@ -27906,9 +27905,9 @@ struct ISteamFriends_SteamFriends011_GetLargeFriendAvatar_params struct ISteamFriends_SteamFriends011_RequestUserInformation_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; - bool bRequireNameOnly; + int8_t bRequireNameOnly; }; struct ISteamFriends_SteamFriends011_RequestClanOfficerList_params @@ -27949,7 +27948,7 @@ struct ISteamFriends_SteamFriends011_GetUserRestrictions_params struct ISteamFriends_SteamFriends011_SetRichPresence_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchKey; const char *pchValue; }; @@ -27991,7 +27990,7 @@ struct ISteamFriends_SteamFriends011_RequestFriendRichPresence_params struct ISteamFriends_SteamFriends011_InviteUserToGame_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; const char *pchConnectString; }; @@ -28033,7 +28032,7 @@ struct ISteamFriends_SteamFriends011_JoinClanChatRoom_params struct ISteamFriends_SteamFriends011_LeaveClanChatRoom_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClan; }; @@ -28055,7 +28054,7 @@ struct ISteamFriends_SteamFriends011_GetChatMemberByIndex_params struct ISteamFriends_SteamFriends011_SendClanChatMessage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; const char *pchText; }; @@ -28075,7 +28074,7 @@ struct ISteamFriends_SteamFriends011_GetClanChatMessage_params struct ISteamFriends_SteamFriends011_IsClanChatAdmin_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; CSteamID steamIDUser; }; @@ -28083,35 +28082,35 @@ struct ISteamFriends_SteamFriends011_IsClanChatAdmin_params struct ISteamFriends_SteamFriends011_IsClanChatWindowOpenInSteam_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends011_OpenClanChatWindowInSteam_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends011_CloseClanChatWindowInSteam_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends011_SetListenForFriendsMessages_params { struct u_steam_iface *linux_side; - bool _ret; - bool bInterceptEnabled; + int8_t _ret; + int8_t bInterceptEnabled; }; struct ISteamFriends_SteamFriends011_ReplyToFriendMessage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; const char *pchMsgToSend; }; @@ -28206,7 +28205,7 @@ struct ISteamFriends_SteamFriends012_GetFriendPersonaName_params struct ISteamFriends_SteamFriends012_GetFriendGamePlayed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; }; @@ -28222,7 +28221,7 @@ struct ISteamFriends_SteamFriends012_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends012_HasFriend_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; }; @@ -28257,7 +28256,7 @@ struct ISteamFriends_SteamFriends012_GetClanTag_params struct ISteamFriends_SteamFriends012_GetClanActivityCounts_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClan; int32_t *pnOnline; int32_t *pnInGame; @@ -28290,7 +28289,7 @@ struct ISteamFriends_SteamFriends012_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends012_IsUserInSource_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; }; @@ -28299,7 +28298,7 @@ struct ISteamFriends_SteamFriends012_SetInGameVoiceSpeaking_params { struct u_steam_iface *linux_side; CSteamID steamIDUser; - bool bSpeaking; + int8_t bSpeaking; }; struct ISteamFriends_SteamFriends012_ActivateGameOverlay_params @@ -28363,9 +28362,9 @@ struct ISteamFriends_SteamFriends012_GetLargeFriendAvatar_params struct ISteamFriends_SteamFriends012_RequestUserInformation_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; - bool bRequireNameOnly; + int8_t bRequireNameOnly; }; struct ISteamFriends_SteamFriends012_RequestClanOfficerList_params @@ -28406,7 +28405,7 @@ struct ISteamFriends_SteamFriends012_GetUserRestrictions_params struct ISteamFriends_SteamFriends012_SetRichPresence_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchKey; const char *pchValue; }; @@ -28448,7 +28447,7 @@ struct ISteamFriends_SteamFriends012_RequestFriendRichPresence_params struct ISteamFriends_SteamFriends012_InviteUserToGame_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; const char *pchConnectString; }; @@ -28490,7 +28489,7 @@ struct ISteamFriends_SteamFriends012_JoinClanChatRoom_params struct ISteamFriends_SteamFriends012_LeaveClanChatRoom_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClan; }; @@ -28512,7 +28511,7 @@ struct ISteamFriends_SteamFriends012_GetChatMemberByIndex_params struct ISteamFriends_SteamFriends012_SendClanChatMessage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; const char *pchText; }; @@ -28532,7 +28531,7 @@ struct ISteamFriends_SteamFriends012_GetClanChatMessage_params struct ISteamFriends_SteamFriends012_IsClanChatAdmin_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; CSteamID steamIDUser; }; @@ -28540,35 +28539,35 @@ struct ISteamFriends_SteamFriends012_IsClanChatAdmin_params struct ISteamFriends_SteamFriends012_IsClanChatWindowOpenInSteam_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends012_OpenClanChatWindowInSteam_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends012_CloseClanChatWindowInSteam_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends012_SetListenForFriendsMessages_params { struct u_steam_iface *linux_side; - bool _ret; - bool bInterceptEnabled; + int8_t _ret; + int8_t bInterceptEnabled; }; struct ISteamFriends_SteamFriends012_ReplyToFriendMessage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; const char *pchMsgToSend; }; @@ -28663,7 +28662,7 @@ struct ISteamFriends_SteamFriends013_GetFriendPersonaName_params struct ISteamFriends_SteamFriends013_GetFriendGamePlayed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; }; @@ -28679,7 +28678,7 @@ struct ISteamFriends_SteamFriends013_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends013_HasFriend_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; }; @@ -28714,7 +28713,7 @@ struct ISteamFriends_SteamFriends013_GetClanTag_params struct ISteamFriends_SteamFriends013_GetClanActivityCounts_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClan; int32_t *pnOnline; int32_t *pnInGame; @@ -28747,7 +28746,7 @@ struct ISteamFriends_SteamFriends013_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends013_IsUserInSource_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; }; @@ -28756,7 +28755,7 @@ struct ISteamFriends_SteamFriends013_SetInGameVoiceSpeaking_params { struct u_steam_iface *linux_side; CSteamID steamIDUser; - bool bSpeaking; + int8_t bSpeaking; }; struct ISteamFriends_SteamFriends013_ActivateGameOverlay_params @@ -28821,9 +28820,9 @@ struct ISteamFriends_SteamFriends013_GetLargeFriendAvatar_params struct ISteamFriends_SteamFriends013_RequestUserInformation_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; - bool bRequireNameOnly; + int8_t bRequireNameOnly; }; struct ISteamFriends_SteamFriends013_RequestClanOfficerList_params @@ -28864,7 +28863,7 @@ struct ISteamFriends_SteamFriends013_GetUserRestrictions_params struct ISteamFriends_SteamFriends013_SetRichPresence_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchKey; const char *pchValue; }; @@ -28906,7 +28905,7 @@ struct ISteamFriends_SteamFriends013_RequestFriendRichPresence_params struct ISteamFriends_SteamFriends013_InviteUserToGame_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; const char *pchConnectString; }; @@ -28948,7 +28947,7 @@ struct ISteamFriends_SteamFriends013_JoinClanChatRoom_params struct ISteamFriends_SteamFriends013_LeaveClanChatRoom_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClan; }; @@ -28970,7 +28969,7 @@ struct ISteamFriends_SteamFriends013_GetChatMemberByIndex_params struct ISteamFriends_SteamFriends013_SendClanChatMessage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; const char *pchText; }; @@ -28990,7 +28989,7 @@ struct ISteamFriends_SteamFriends013_GetClanChatMessage_params struct ISteamFriends_SteamFriends013_IsClanChatAdmin_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; CSteamID steamIDUser; }; @@ -28998,35 +28997,35 @@ struct ISteamFriends_SteamFriends013_IsClanChatAdmin_params struct ISteamFriends_SteamFriends013_IsClanChatWindowOpenInSteam_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends013_OpenClanChatWindowInSteam_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends013_CloseClanChatWindowInSteam_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends013_SetListenForFriendsMessages_params { struct u_steam_iface *linux_side; - bool _ret; - bool bInterceptEnabled; + int8_t _ret; + int8_t bInterceptEnabled; }; struct ISteamFriends_SteamFriends013_ReplyToFriendMessage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; const char *pchMsgToSend; }; @@ -29121,7 +29120,7 @@ struct ISteamFriends_SteamFriends014_GetFriendPersonaName_params struct ISteamFriends_SteamFriends014_GetFriendGamePlayed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; }; @@ -29144,7 +29143,7 @@ struct ISteamFriends_SteamFriends014_GetPlayerNickname_params struct ISteamFriends_SteamFriends014_HasFriend_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; }; @@ -29179,7 +29178,7 @@ struct ISteamFriends_SteamFriends014_GetClanTag_params struct ISteamFriends_SteamFriends014_GetClanActivityCounts_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClan; int32_t *pnOnline; int32_t *pnInGame; @@ -29212,7 +29211,7 @@ struct ISteamFriends_SteamFriends014_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends014_IsUserInSource_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; }; @@ -29221,7 +29220,7 @@ struct ISteamFriends_SteamFriends014_SetInGameVoiceSpeaking_params { struct u_steam_iface *linux_side; CSteamID steamIDUser; - bool bSpeaking; + int8_t bSpeaking; }; struct ISteamFriends_SteamFriends014_ActivateGameOverlay_params @@ -29286,9 +29285,9 @@ struct ISteamFriends_SteamFriends014_GetLargeFriendAvatar_params struct ISteamFriends_SteamFriends014_RequestUserInformation_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; - bool bRequireNameOnly; + int8_t bRequireNameOnly; }; struct ISteamFriends_SteamFriends014_RequestClanOfficerList_params @@ -29329,7 +29328,7 @@ struct ISteamFriends_SteamFriends014_GetUserRestrictions_params struct ISteamFriends_SteamFriends014_SetRichPresence_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchKey; const char *pchValue; }; @@ -29371,7 +29370,7 @@ struct ISteamFriends_SteamFriends014_RequestFriendRichPresence_params struct ISteamFriends_SteamFriends014_InviteUserToGame_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; const char *pchConnectString; }; @@ -29413,7 +29412,7 @@ struct ISteamFriends_SteamFriends014_JoinClanChatRoom_params struct ISteamFriends_SteamFriends014_LeaveClanChatRoom_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClan; }; @@ -29435,7 +29434,7 @@ struct ISteamFriends_SteamFriends014_GetChatMemberByIndex_params struct ISteamFriends_SteamFriends014_SendClanChatMessage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; const char *pchText; }; @@ -29455,7 +29454,7 @@ struct ISteamFriends_SteamFriends014_GetClanChatMessage_params struct ISteamFriends_SteamFriends014_IsClanChatAdmin_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; CSteamID steamIDUser; }; @@ -29463,35 +29462,35 @@ struct ISteamFriends_SteamFriends014_IsClanChatAdmin_params struct ISteamFriends_SteamFriends014_IsClanChatWindowOpenInSteam_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends014_OpenClanChatWindowInSteam_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends014_CloseClanChatWindowInSteam_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends014_SetListenForFriendsMessages_params { struct u_steam_iface *linux_side; - bool _ret; - bool bInterceptEnabled; + int8_t _ret; + int8_t bInterceptEnabled; }; struct ISteamFriends_SteamFriends014_ReplyToFriendMessage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; const char *pchMsgToSend; }; @@ -29586,7 +29585,7 @@ struct ISteamFriends_SteamFriends015_GetFriendPersonaName_params struct ISteamFriends_SteamFriends015_GetFriendGamePlayed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; }; @@ -29651,7 +29650,7 @@ struct ISteamFriends_SteamFriends015_GetFriendsGroupMembersList_params struct ISteamFriends_SteamFriends015_HasFriend_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; }; @@ -29686,7 +29685,7 @@ struct ISteamFriends_SteamFriends015_GetClanTag_params struct ISteamFriends_SteamFriends015_GetClanActivityCounts_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClan; int32_t *pnOnline; int32_t *pnInGame; @@ -29719,7 +29718,7 @@ struct ISteamFriends_SteamFriends015_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends015_IsUserInSource_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; }; @@ -29728,7 +29727,7 @@ struct ISteamFriends_SteamFriends015_SetInGameVoiceSpeaking_params { struct u_steam_iface *linux_side; CSteamID steamIDUser; - bool bSpeaking; + int8_t bSpeaking; }; struct ISteamFriends_SteamFriends015_ActivateGameOverlay_params @@ -29793,9 +29792,9 @@ struct ISteamFriends_SteamFriends015_GetLargeFriendAvatar_params struct ISteamFriends_SteamFriends015_RequestUserInformation_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; - bool bRequireNameOnly; + int8_t bRequireNameOnly; }; struct ISteamFriends_SteamFriends015_RequestClanOfficerList_params @@ -29836,7 +29835,7 @@ struct ISteamFriends_SteamFriends015_GetUserRestrictions_params struct ISteamFriends_SteamFriends015_SetRichPresence_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchKey; const char *pchValue; }; @@ -29878,7 +29877,7 @@ struct ISteamFriends_SteamFriends015_RequestFriendRichPresence_params struct ISteamFriends_SteamFriends015_InviteUserToGame_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; const char *pchConnectString; }; @@ -29920,7 +29919,7 @@ struct ISteamFriends_SteamFriends015_JoinClanChatRoom_params struct ISteamFriends_SteamFriends015_LeaveClanChatRoom_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClan; }; @@ -29942,7 +29941,7 @@ struct ISteamFriends_SteamFriends015_GetChatMemberByIndex_params struct ISteamFriends_SteamFriends015_SendClanChatMessage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; const char *pchText; }; @@ -29962,7 +29961,7 @@ struct ISteamFriends_SteamFriends015_GetClanChatMessage_params struct ISteamFriends_SteamFriends015_IsClanChatAdmin_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; CSteamID steamIDUser; }; @@ -29970,35 +29969,35 @@ struct ISteamFriends_SteamFriends015_IsClanChatAdmin_params struct ISteamFriends_SteamFriends015_IsClanChatWindowOpenInSteam_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends015_OpenClanChatWindowInSteam_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends015_CloseClanChatWindowInSteam_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends015_SetListenForFriendsMessages_params { struct u_steam_iface *linux_side; - bool _ret; - bool bInterceptEnabled; + int8_t _ret; + int8_t bInterceptEnabled; }; struct ISteamFriends_SteamFriends015_ReplyToFriendMessage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; const char *pchMsgToSend; }; @@ -30038,14 +30037,14 @@ struct ISteamFriends_SteamFriends015_EnumerateFollowingList_params struct ISteamFriends_SteamFriends015_IsClanPublic_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends015_IsClanOfficialGameGroup_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClan; }; @@ -30107,7 +30106,7 @@ struct ISteamFriends_SteamFriends017_GetFriendPersonaName_params struct ISteamFriends_SteamFriends017_GetFriendGamePlayed_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; }; @@ -30172,7 +30171,7 @@ struct ISteamFriends_SteamFriends017_GetFriendsGroupMembersList_params struct ISteamFriends_SteamFriends017_HasFriend_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; }; @@ -30207,7 +30206,7 @@ struct ISteamFriends_SteamFriends017_GetClanTag_params struct ISteamFriends_SteamFriends017_GetClanActivityCounts_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClan; int32_t *pnOnline; int32_t *pnInGame; @@ -30240,7 +30239,7 @@ struct ISteamFriends_SteamFriends017_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends017_IsUserInSource_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; }; @@ -30249,7 +30248,7 @@ struct ISteamFriends_SteamFriends017_SetInGameVoiceSpeaking_params { struct u_steam_iface *linux_side; CSteamID steamIDUser; - bool bSpeaking; + int8_t bSpeaking; }; struct ISteamFriends_SteamFriends017_ActivateGameOverlay_params @@ -30315,9 +30314,9 @@ struct ISteamFriends_SteamFriends017_GetLargeFriendAvatar_params struct ISteamFriends_SteamFriends017_RequestUserInformation_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; - bool bRequireNameOnly; + int8_t bRequireNameOnly; }; struct ISteamFriends_SteamFriends017_RequestClanOfficerList_params @@ -30358,7 +30357,7 @@ struct ISteamFriends_SteamFriends017_GetUserRestrictions_params struct ISteamFriends_SteamFriends017_SetRichPresence_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchKey; const char *pchValue; }; @@ -30400,7 +30399,7 @@ struct ISteamFriends_SteamFriends017_RequestFriendRichPresence_params struct ISteamFriends_SteamFriends017_InviteUserToGame_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; const char *pchConnectString; }; @@ -30442,7 +30441,7 @@ struct ISteamFriends_SteamFriends017_JoinClanChatRoom_params struct ISteamFriends_SteamFriends017_LeaveClanChatRoom_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClan; }; @@ -30464,7 +30463,7 @@ struct ISteamFriends_SteamFriends017_GetChatMemberByIndex_params struct ISteamFriends_SteamFriends017_SendClanChatMessage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; const char *pchText; }; @@ -30484,7 +30483,7 @@ struct ISteamFriends_SteamFriends017_GetClanChatMessage_params struct ISteamFriends_SteamFriends017_IsClanChatAdmin_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; CSteamID steamIDUser; }; @@ -30492,35 +30491,35 @@ struct ISteamFriends_SteamFriends017_IsClanChatAdmin_params struct ISteamFriends_SteamFriends017_IsClanChatWindowOpenInSteam_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends017_OpenClanChatWindowInSteam_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends017_CloseClanChatWindowInSteam_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends017_SetListenForFriendsMessages_params { struct u_steam_iface *linux_side; - bool _ret; - bool bInterceptEnabled; + int8_t _ret; + int8_t bInterceptEnabled; }; struct ISteamFriends_SteamFriends017_ReplyToFriendMessage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDFriend; const char *pchMsgToSend; }; @@ -30560,14 +30559,14 @@ struct ISteamFriends_SteamFriends017_EnumerateFollowingList_params struct ISteamFriends_SteamFriends017_IsClanPublic_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends017_IsClanOfficialGameGroup_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDClan; }; @@ -30586,7 +30585,7 @@ struct ISteamFriends_SteamFriends017_ActivateGameOverlayRemotePlayTogetherInvite struct ISteamFriends_SteamFriends017_RegisterProtocolInOverlayBrowser_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchProtocol; }; @@ -30606,7 +30605,7 @@ struct ISteamFriends_SteamFriends017_RequestEquippedProfileItems_params struct ISteamFriends_SteamFriends017_BHasEquippedProfileItem_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamID; uint32_t itemType; }; @@ -30641,7 +30640,7 @@ struct ISteamGameCoordinator_SteamGameCoordinator001_SendMessage_params struct ISteamGameCoordinator_SteamGameCoordinator001_IsMessageAvailable_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t *pcubMsgSize; }; @@ -30668,7 +30667,7 @@ struct ISteamGameServer_SteamGameServer002_LogOff_params struct ISteamGameServer_SteamGameServer002_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamGameServer_SteamGameServer002_GSSetSpawnCount_params @@ -30680,7 +30679,7 @@ struct ISteamGameServer_SteamGameServer002_GSSetSpawnCount_params struct ISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionKeyToSendToNewClient_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; void *pvEncryptionKey; uint32_t *pcbEncryptionKey; uint32_t cbMaxEncryptionKey; @@ -30689,7 +30688,7 @@ struct ISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionKeyToSendToNe struct ISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unUserID; const void *pvRawKey; uint32_t unKeyLen; @@ -30702,7 +30701,7 @@ struct ISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect_params struct ISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamID; uint32_t unIPPublic; const void *pvCookie; @@ -30712,14 +30711,14 @@ struct ISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect_params struct ISteamGameServer_SteamGameServer002_GSRemoveUserConnect_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unUserID; }; struct ISteamGameServer_SteamGameServer002_GSSendUserDisconnect_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamID; uint32_t unUserID; }; @@ -30727,7 +30726,7 @@ struct ISteamGameServer_SteamGameServer002_GSSendUserDisconnect_params struct ISteamGameServer_SteamGameServer002_GSSendUserStatusResponse_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamID; int32_t nSecondsConnected; int32_t nSecondsSinceLast; @@ -30736,7 +30735,7 @@ struct ISteamGameServer_SteamGameServer002_GSSendUserStatusResponse_params struct ISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t nAppIdServed; uint32_t unServerFlags; int32_t cPlayers; @@ -30752,7 +30751,7 @@ struct ISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus_params struct ISteamGameServer_SteamGameServer002_GSUpdateStatus_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t cPlayers; int32_t cPlayersMax; int32_t cBotPlayers; @@ -30763,7 +30762,7 @@ struct ISteamGameServer_SteamGameServer002_GSUpdateStatus_params struct ISteamGameServer_SteamGameServer002_BSecure_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamGameServer_SteamGameServer002_GetSteamID_params @@ -30775,7 +30774,7 @@ struct ISteamGameServer_SteamGameServer002_GetSteamID_params struct ISteamGameServer_SteamGameServer002_GSSetServerType_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t nGameAppId; uint32_t unServerFlags; uint32_t unGameIP; @@ -30787,7 +30786,7 @@ struct ISteamGameServer_SteamGameServer002_GSSetServerType_params struct ISteamGameServer_SteamGameServer002_GSSetServerType2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t nGameAppId; uint32_t unServerFlags; uint32_t unGameIP; @@ -30796,13 +30795,13 @@ struct ISteamGameServer_SteamGameServer002_GSSetServerType2_params uint16_t usQueryPort; const char *pchGameDir; const char *pchVersion; - bool bLANMode; + int8_t bLANMode; }; struct ISteamGameServer_SteamGameServer002_GSUpdateStatus2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t cPlayers; int32_t cPlayersMax; int32_t cBotPlayers; @@ -30814,14 +30813,14 @@ struct ISteamGameServer_SteamGameServer002_GSUpdateStatus2_params struct ISteamGameServer_SteamGameServer002_GSCreateUnauthenticatedUser_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID *pSteamID; }; struct ISteamGameServer_SteamGameServer002_GSSetUserData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamID; const char *pPlayerName; uint32_t nFrags; @@ -30852,13 +30851,13 @@ struct ISteamGameServer_SteamGameServer003_LogOff_params struct ISteamGameServer_SteamGameServer003_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamGameServer_SteamGameServer003_BSecure_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamGameServer_SteamGameServer003_GetSteamID_params @@ -30870,7 +30869,7 @@ struct ISteamGameServer_SteamGameServer003_GetSteamID_params struct ISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionKeyToSendToNewClient_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; void *pvEncryptionKey; uint32_t *pcbEncryptionKey; uint32_t cbMaxEncryptionKey; @@ -30879,7 +30878,7 @@ struct ISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionKeyToSendToNe struct ISteamGameServer_SteamGameServer003_GSSendUserConnect_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unUserID; uint32_t unIPPublic; uint16_t usPort; @@ -30890,14 +30889,14 @@ struct ISteamGameServer_SteamGameServer003_GSSendUserConnect_params struct ISteamGameServer_SteamGameServer003_GSRemoveUserConnect_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unUserID; }; struct ISteamGameServer_SteamGameServer003_GSSendUserDisconnect_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamID; uint32_t unUserID; }; @@ -30911,7 +30910,7 @@ struct ISteamGameServer_SteamGameServer003_GSSetSpawnCount_params struct ISteamGameServer_SteamGameServer003_GSSetServerType_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t nGameAppId; uint32_t unServerFlags; uint32_t unGameIP; @@ -30920,13 +30919,13 @@ struct ISteamGameServer_SteamGameServer003_GSSetServerType_params uint16_t usQueryPort; const char *pchGameDir; const char *pchVersion; - bool bLANMode; + int8_t bLANMode; }; struct ISteamGameServer_SteamGameServer003_GSUpdateStatus_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t cPlayers; int32_t cPlayersMax; int32_t cBotPlayers; @@ -30938,14 +30937,14 @@ struct ISteamGameServer_SteamGameServer003_GSUpdateStatus_params struct ISteamGameServer_SteamGameServer003_GSCreateUnauthenticatedUser_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID *pSteamID; }; struct ISteamGameServer_SteamGameServer003_GSSetUserData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamID; const char *pPlayerName; uint32_t nFrags; @@ -30966,7 +30965,7 @@ struct ISteamGameServer_SteamGameServer003_GSSetGameType_params struct ISteamGameServer_SteamGameServer003_GSGetUserAchievementStatus_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamID; const char *pchAchievementName; }; @@ -30984,13 +30983,13 @@ struct ISteamGameServer_SteamGameServer004_LogOff_params struct ISteamGameServer_SteamGameServer004_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamGameServer_SteamGameServer004_BSecure_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamGameServer_SteamGameServer004_GetSteamID_params @@ -31023,7 +31022,7 @@ struct ISteamGameServer_SteamGameServer004_SendUserDisconnect_params struct ISteamGameServer_SteamGameServer004_BUpdateUserData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchPlayerName; uint32_t uScore; @@ -31032,7 +31031,7 @@ struct ISteamGameServer_SteamGameServer004_BUpdateUserData_params struct ISteamGameServer_SteamGameServer004_BSetServerType_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t nGameAppId; uint32_t unServerFlags; uint32_t unGameIP; @@ -31041,7 +31040,7 @@ struct ISteamGameServer_SteamGameServer004_BSetServerType_params uint16_t usQueryPort; const char *pchGameDir; const char *pchVersion; - bool bLANMode; + int8_t bLANMode; }; struct ISteamGameServer_SteamGameServer004_UpdateServerStatus_params @@ -31070,7 +31069,7 @@ struct ISteamGameServer_SteamGameServer004_SetGameType_params struct ISteamGameServer_SteamGameServer004_BGetUserAchievementStatus_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamID; const char *pchAchievementName; }; @@ -31088,13 +31087,13 @@ struct ISteamGameServer_SteamGameServer005_LogOff_params struct ISteamGameServer_SteamGameServer005_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamGameServer_SteamGameServer005_BSecure_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamGameServer_SteamGameServer005_GetSteamID_params @@ -31106,7 +31105,7 @@ struct ISteamGameServer_SteamGameServer005_GetSteamID_params struct ISteamGameServer_SteamGameServer005_SendUserConnectAndAuthenticate_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unIPClient; const void *pvAuthBlob; uint32_t cubAuthBlobSize; @@ -31128,7 +31127,7 @@ struct ISteamGameServer_SteamGameServer005_SendUserDisconnect_params struct ISteamGameServer_SteamGameServer005_BUpdateUserData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchPlayerName; uint32_t uScore; @@ -31137,7 +31136,7 @@ struct ISteamGameServer_SteamGameServer005_BUpdateUserData_params struct ISteamGameServer_SteamGameServer005_BSetServerType_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unServerFlags; uint32_t unGameIP; uint16_t unGamePort; @@ -31145,7 +31144,7 @@ struct ISteamGameServer_SteamGameServer005_BSetServerType_params uint16_t usQueryPort; const char *pchGameDir; const char *pchVersion; - bool bLANMode; + int8_t bLANMode; }; struct ISteamGameServer_SteamGameServer005_UpdateServerStatus_params @@ -31174,7 +31173,7 @@ struct ISteamGameServer_SteamGameServer005_SetGameType_params struct ISteamGameServer_SteamGameServer005_BGetUserAchievementStatus_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamID; const char *pchAchievementName; }; @@ -31192,13 +31191,13 @@ struct ISteamGameServer_SteamGameServer008_LogOff_params struct ISteamGameServer_SteamGameServer008_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamGameServer_SteamGameServer008_BSecure_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamGameServer_SteamGameServer008_GetSteamID_params @@ -31210,7 +31209,7 @@ struct ISteamGameServer_SteamGameServer008_GetSteamID_params struct ISteamGameServer_SteamGameServer008_SendUserConnectAndAuthenticate_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unIPClient; const void *pvAuthBlob; uint32_t cubAuthBlobSize; @@ -31232,7 +31231,7 @@ struct ISteamGameServer_SteamGameServer008_SendUserDisconnect_params struct ISteamGameServer_SteamGameServer008_BUpdateUserData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchPlayerName; uint32_t uScore; @@ -31241,7 +31240,7 @@ struct ISteamGameServer_SteamGameServer008_BUpdateUserData_params struct ISteamGameServer_SteamGameServer008_BSetServerType_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unServerFlags; uint32_t unGameIP; uint16_t unGamePort; @@ -31249,7 +31248,7 @@ struct ISteamGameServer_SteamGameServer008_BSetServerType_params uint16_t usQueryPort; const char *pchGameDir; const char *pchVersion; - bool bLANMode; + int8_t bLANMode; }; struct ISteamGameServer_SteamGameServer008_UpdateServerStatus_params @@ -31278,7 +31277,7 @@ struct ISteamGameServer_SteamGameServer008_SetGameType_params struct ISteamGameServer_SteamGameServer008_BGetUserAchievementStatus_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamID; const char *pchAchievementName; }; @@ -31291,7 +31290,7 @@ struct ISteamGameServer_SteamGameServer008_GetGameplayStats_params struct ISteamGameServer_SteamGameServer008_RequestUserGroupStatus_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; CSteamID steamIDGroup; }; @@ -31315,13 +31314,13 @@ struct ISteamGameServer_SteamGameServer009_LogOff_params struct ISteamGameServer_SteamGameServer009_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamGameServer_SteamGameServer009_BSecure_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamGameServer_SteamGameServer009_GetSteamID_params @@ -31333,7 +31332,7 @@ struct ISteamGameServer_SteamGameServer009_GetSteamID_params struct ISteamGameServer_SteamGameServer009_SendUserConnectAndAuthenticate_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unIPClient; const void *pvAuthBlob; uint32_t cubAuthBlobSize; @@ -31355,7 +31354,7 @@ struct ISteamGameServer_SteamGameServer009_SendUserDisconnect_params struct ISteamGameServer_SteamGameServer009_BUpdateUserData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchPlayerName; uint32_t uScore; @@ -31364,7 +31363,7 @@ struct ISteamGameServer_SteamGameServer009_BUpdateUserData_params struct ISteamGameServer_SteamGameServer009_BSetServerType_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unServerFlags; uint32_t unGameIP; uint16_t unGamePort; @@ -31372,7 +31371,7 @@ struct ISteamGameServer_SteamGameServer009_BSetServerType_params uint16_t usQueryPort; const char *pchGameDir; const char *pchVersion; - bool bLANMode; + int8_t bLANMode; }; struct ISteamGameServer_SteamGameServer009_UpdateServerStatus_params @@ -31401,7 +31400,7 @@ struct ISteamGameServer_SteamGameServer009_SetGameType_params struct ISteamGameServer_SteamGameServer009_BGetUserAchievementStatus_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamID; const char *pchAchievementName; }; @@ -31414,7 +31413,7 @@ struct ISteamGameServer_SteamGameServer009_GetGameplayStats_params struct ISteamGameServer_SteamGameServer009_RequestUserGroupStatus_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; CSteamID steamIDGroup; }; @@ -31452,13 +31451,13 @@ struct ISteamGameServer_SteamGameServer010_LogOff_params struct ISteamGameServer_SteamGameServer010_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamGameServer_SteamGameServer010_BSecure_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamGameServer_SteamGameServer010_GetSteamID_params @@ -31470,7 +31469,7 @@ struct ISteamGameServer_SteamGameServer010_GetSteamID_params struct ISteamGameServer_SteamGameServer010_SendUserConnectAndAuthenticate_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unIPClient; const void *pvAuthBlob; uint32_t cubAuthBlobSize; @@ -31492,7 +31491,7 @@ struct ISteamGameServer_SteamGameServer010_SendUserDisconnect_params struct ISteamGameServer_SteamGameServer010_BUpdateUserData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchPlayerName; uint32_t uScore; @@ -31501,7 +31500,7 @@ struct ISteamGameServer_SteamGameServer010_BUpdateUserData_params struct ISteamGameServer_SteamGameServer010_BSetServerType_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unServerFlags; uint32_t unGameIP; uint16_t unGamePort; @@ -31509,7 +31508,7 @@ struct ISteamGameServer_SteamGameServer010_BSetServerType_params uint16_t usQueryPort; const char *pchGameDir; const char *pchVersion; - bool bLANMode; + int8_t bLANMode; }; struct ISteamGameServer_SteamGameServer010_UpdateServerStatus_params @@ -31549,7 +31548,7 @@ struct ISteamGameServer_SteamGameServer010_GetServerReputation_params struct ISteamGameServer_SteamGameServer010_RequestUserGroupStatus_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; CSteamID steamIDGroup; }; @@ -31607,7 +31606,7 @@ struct ISteamGameServer_SteamGameServer010_CancelAuthTicket_params struct ISteamGameServer_SteamGameServer011_InitGameServer_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unIP; uint16_t usGamePort; uint16_t usQueryPort; @@ -31637,7 +31636,7 @@ struct ISteamGameServer_SteamGameServer011_SetModDir_params struct ISteamGameServer_SteamGameServer011_SetDedicatedServer_params { struct u_steam_iface *linux_side; - bool bDedicated; + int8_t bDedicated; }; struct ISteamGameServer_SteamGameServer011_LogOn_params @@ -31660,13 +31659,13 @@ struct ISteamGameServer_SteamGameServer011_LogOff_params struct ISteamGameServer_SteamGameServer011_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamGameServer_SteamGameServer011_BSecure_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamGameServer_SteamGameServer011_GetSteamID_params @@ -31678,7 +31677,7 @@ struct ISteamGameServer_SteamGameServer011_GetSteamID_params struct ISteamGameServer_SteamGameServer011_WasRestartRequested_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamGameServer_SteamGameServer011_SetMaxPlayerCount_params @@ -31708,7 +31707,7 @@ struct ISteamGameServer_SteamGameServer011_SetMapName_params struct ISteamGameServer_SteamGameServer011_SetPasswordProtected_params { struct u_steam_iface *linux_side; - bool bPasswordProtected; + int8_t bPasswordProtected; }; struct ISteamGameServer_SteamGameServer011_SetSpectatorPort_params @@ -31756,7 +31755,7 @@ struct ISteamGameServer_SteamGameServer011_SetRegion_params struct ISteamGameServer_SteamGameServer011_SendUserConnectAndAuthenticate_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unIPClient; const void *pvAuthBlob; uint32_t cubAuthBlobSize; @@ -31778,7 +31777,7 @@ struct ISteamGameServer_SteamGameServer011_SendUserDisconnect_params struct ISteamGameServer_SteamGameServer011_BUpdateUserData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchPlayerName; uint32_t uScore; @@ -31825,7 +31824,7 @@ struct ISteamGameServer_SteamGameServer011_UserHasLicenseForApp_params struct ISteamGameServer_SteamGameServer011_RequestUserGroupStatus_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; CSteamID steamIDGroup; }; @@ -31850,7 +31849,7 @@ struct ISteamGameServer_SteamGameServer011_GetPublicIP_params struct ISteamGameServer_SteamGameServer011_HandleIncomingPacket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const void *pData; int32_t cbData; uint32_t srcIP; @@ -31870,7 +31869,7 @@ struct ISteamGameServer_SteamGameServer011_GetNextOutgoingPacket_params struct ISteamGameServer_SteamGameServer011_EnableHeartbeats_params { struct u_steam_iface *linux_side; - bool bActive; + int8_t bActive; }; struct ISteamGameServer_SteamGameServer011_SetHeartbeatInterval_params @@ -31901,7 +31900,7 @@ struct ISteamGameServer_SteamGameServer011_ComputeNewPlayerCompatibility_params struct ISteamGameServer_SteamGameServer012_InitGameServer_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unIP; uint16_t usGamePort; uint16_t usQueryPort; @@ -31931,7 +31930,7 @@ struct ISteamGameServer_SteamGameServer012_SetModDir_params struct ISteamGameServer_SteamGameServer012_SetDedicatedServer_params { struct u_steam_iface *linux_side; - bool bDedicated; + int8_t bDedicated; }; struct ISteamGameServer_SteamGameServer012_LogOn_params @@ -31953,13 +31952,13 @@ struct ISteamGameServer_SteamGameServer012_LogOff_params struct ISteamGameServer_SteamGameServer012_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamGameServer_SteamGameServer012_BSecure_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamGameServer_SteamGameServer012_GetSteamID_params @@ -31971,7 +31970,7 @@ struct ISteamGameServer_SteamGameServer012_GetSteamID_params struct ISteamGameServer_SteamGameServer012_WasRestartRequested_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamGameServer_SteamGameServer012_SetMaxPlayerCount_params @@ -32001,7 +32000,7 @@ struct ISteamGameServer_SteamGameServer012_SetMapName_params struct ISteamGameServer_SteamGameServer012_SetPasswordProtected_params { struct u_steam_iface *linux_side; - bool bPasswordProtected; + int8_t bPasswordProtected; }; struct ISteamGameServer_SteamGameServer012_SetSpectatorPort_params @@ -32049,7 +32048,7 @@ struct ISteamGameServer_SteamGameServer012_SetRegion_params struct ISteamGameServer_SteamGameServer012_SendUserConnectAndAuthenticate_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unIPClient; const void *pvAuthBlob; uint32_t cubAuthBlobSize; @@ -32071,7 +32070,7 @@ struct ISteamGameServer_SteamGameServer012_SendUserDisconnect_params struct ISteamGameServer_SteamGameServer012_BUpdateUserData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchPlayerName; uint32_t uScore; @@ -32118,7 +32117,7 @@ struct ISteamGameServer_SteamGameServer012_UserHasLicenseForApp_params struct ISteamGameServer_SteamGameServer012_RequestUserGroupStatus_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; CSteamID steamIDGroup; }; @@ -32143,7 +32142,7 @@ struct ISteamGameServer_SteamGameServer012_GetPublicIP_params struct ISteamGameServer_SteamGameServer012_HandleIncomingPacket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const void *pData; int32_t cbData; uint32_t srcIP; @@ -32163,7 +32162,7 @@ struct ISteamGameServer_SteamGameServer012_GetNextOutgoingPacket_params struct ISteamGameServer_SteamGameServer012_EnableHeartbeats_params { struct u_steam_iface *linux_side; - bool bActive; + int8_t bActive; }; struct ISteamGameServer_SteamGameServer012_SetHeartbeatInterval_params @@ -32194,7 +32193,7 @@ struct ISteamGameServer_SteamGameServer012_ComputeNewPlayerCompatibility_params struct ISteamGameServer_SteamGameServer013_InitGameServer_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unIP; uint16_t usGamePort; uint16_t usQueryPort; @@ -32224,7 +32223,7 @@ struct ISteamGameServer_SteamGameServer013_SetModDir_params struct ISteamGameServer_SteamGameServer013_SetDedicatedServer_params { struct u_steam_iface *linux_side; - bool bDedicated; + int8_t bDedicated; }; struct ISteamGameServer_SteamGameServer013_LogOn_params @@ -32246,13 +32245,13 @@ struct ISteamGameServer_SteamGameServer013_LogOff_params struct ISteamGameServer_SteamGameServer013_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamGameServer_SteamGameServer013_BSecure_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamGameServer_SteamGameServer013_GetSteamID_params @@ -32264,7 +32263,7 @@ struct ISteamGameServer_SteamGameServer013_GetSteamID_params struct ISteamGameServer_SteamGameServer013_WasRestartRequested_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamGameServer_SteamGameServer013_SetMaxPlayerCount_params @@ -32294,7 +32293,7 @@ struct ISteamGameServer_SteamGameServer013_SetMapName_params struct ISteamGameServer_SteamGameServer013_SetPasswordProtected_params { struct u_steam_iface *linux_side; - bool bPasswordProtected; + int8_t bPasswordProtected; }; struct ISteamGameServer_SteamGameServer013_SetSpectatorPort_params @@ -32342,7 +32341,7 @@ struct ISteamGameServer_SteamGameServer013_SetRegion_params struct ISteamGameServer_SteamGameServer013_SendUserConnectAndAuthenticate_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unIPClient; const void *pvAuthBlob; uint32_t cubAuthBlobSize; @@ -32364,7 +32363,7 @@ struct ISteamGameServer_SteamGameServer013_SendUserDisconnect_params struct ISteamGameServer_SteamGameServer013_BUpdateUserData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchPlayerName; uint32_t uScore; @@ -32411,7 +32410,7 @@ struct ISteamGameServer_SteamGameServer013_UserHasLicenseForApp_params struct ISteamGameServer_SteamGameServer013_RequestUserGroupStatus_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; CSteamID steamIDGroup; }; @@ -32436,7 +32435,7 @@ struct ISteamGameServer_SteamGameServer013_GetPublicIP_params struct ISteamGameServer_SteamGameServer013_HandleIncomingPacket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const void *pData; int32_t cbData; uint32_t srcIP; @@ -32456,7 +32455,7 @@ struct ISteamGameServer_SteamGameServer013_GetNextOutgoingPacket_params struct ISteamGameServer_SteamGameServer013_EnableHeartbeats_params { struct u_steam_iface *linux_side; - bool bActive; + int8_t bActive; }; struct ISteamGameServer_SteamGameServer013_SetHeartbeatInterval_params @@ -32487,7 +32486,7 @@ struct ISteamGameServer_SteamGameServer013_ComputeNewPlayerCompatibility_params struct ISteamGameServer_SteamGameServer014_InitGameServer_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unIP; uint16_t usGamePort; uint16_t usQueryPort; @@ -32517,7 +32516,7 @@ struct ISteamGameServer_SteamGameServer014_SetModDir_params struct ISteamGameServer_SteamGameServer014_SetDedicatedServer_params { struct u_steam_iface *linux_side; - bool bDedicated; + int8_t bDedicated; }; struct ISteamGameServer_SteamGameServer014_LogOn_params @@ -32539,13 +32538,13 @@ struct ISteamGameServer_SteamGameServer014_LogOff_params struct ISteamGameServer_SteamGameServer014_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamGameServer_SteamGameServer014_BSecure_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamGameServer_SteamGameServer014_GetSteamID_params @@ -32557,7 +32556,7 @@ struct ISteamGameServer_SteamGameServer014_GetSteamID_params struct ISteamGameServer_SteamGameServer014_WasRestartRequested_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamGameServer_SteamGameServer014_SetMaxPlayerCount_params @@ -32587,7 +32586,7 @@ struct ISteamGameServer_SteamGameServer014_SetMapName_params struct ISteamGameServer_SteamGameServer014_SetPasswordProtected_params { struct u_steam_iface *linux_side; - bool bPasswordProtected; + int8_t bPasswordProtected; }; struct ISteamGameServer_SteamGameServer014_SetSpectatorPort_params @@ -32635,7 +32634,7 @@ struct ISteamGameServer_SteamGameServer014_SetRegion_params struct ISteamGameServer_SteamGameServer014_SetAdvertiseServerActive_params { struct u_steam_iface *linux_side; - bool bActive; + int8_t bActive; }; struct ISteamGameServer_SteamGameServer014_GetAuthSessionTicket_params @@ -32679,7 +32678,7 @@ struct ISteamGameServer_SteamGameServer014_UserHasLicenseForApp_params struct ISteamGameServer_SteamGameServer014_RequestUserGroupStatus_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; CSteamID steamIDGroup; }; @@ -32704,7 +32703,7 @@ struct ISteamGameServer_SteamGameServer014_GetPublicIP_params struct ISteamGameServer_SteamGameServer014_HandleIncomingPacket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const void *pData; int32_t cbData; uint32_t srcIP; @@ -32738,7 +32737,7 @@ struct ISteamGameServer_SteamGameServer014_ComputeNewPlayerCompatibility_params struct ISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPRECATED_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unIPClient; const void *pvAuthBlob; uint32_t cubAuthBlobSize; @@ -32760,7 +32759,7 @@ struct ISteamGameServer_SteamGameServer014_SendUserDisconnect_DEPRECATED_params struct ISteamGameServer_SteamGameServer014_BUpdateUserData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchPlayerName; uint32_t uScore; @@ -32780,7 +32779,7 @@ struct ISteamGameServer_SteamGameServer014_ForceMasterServerHeartbeat_DEPRECATED struct ISteamGameServer_SteamGameServer015_InitGameServer_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unIP; uint16_t usGamePort; uint16_t usQueryPort; @@ -32810,7 +32809,7 @@ struct ISteamGameServer_SteamGameServer015_SetModDir_params struct ISteamGameServer_SteamGameServer015_SetDedicatedServer_params { struct u_steam_iface *linux_side; - bool bDedicated; + int8_t bDedicated; }; struct ISteamGameServer_SteamGameServer015_LogOn_params @@ -32832,13 +32831,13 @@ struct ISteamGameServer_SteamGameServer015_LogOff_params struct ISteamGameServer_SteamGameServer015_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamGameServer_SteamGameServer015_BSecure_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamGameServer_SteamGameServer015_GetSteamID_params @@ -32850,7 +32849,7 @@ struct ISteamGameServer_SteamGameServer015_GetSteamID_params struct ISteamGameServer_SteamGameServer015_WasRestartRequested_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamGameServer_SteamGameServer015_SetMaxPlayerCount_params @@ -32880,7 +32879,7 @@ struct ISteamGameServer_SteamGameServer015_SetMapName_params struct ISteamGameServer_SteamGameServer015_SetPasswordProtected_params { struct u_steam_iface *linux_side; - bool bPasswordProtected; + int8_t bPasswordProtected; }; struct ISteamGameServer_SteamGameServer015_SetSpectatorPort_params @@ -32928,7 +32927,7 @@ struct ISteamGameServer_SteamGameServer015_SetRegion_params struct ISteamGameServer_SteamGameServer015_SetAdvertiseServerActive_params { struct u_steam_iface *linux_side; - bool bActive; + int8_t bActive; }; struct ISteamGameServer_SteamGameServer015_GetAuthSessionTicket_params @@ -32973,7 +32972,7 @@ struct ISteamGameServer_SteamGameServer015_UserHasLicenseForApp_params struct ISteamGameServer_SteamGameServer015_RequestUserGroupStatus_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; CSteamID steamIDGroup; }; @@ -32998,7 +32997,7 @@ struct ISteamGameServer_SteamGameServer015_GetPublicIP_params struct ISteamGameServer_SteamGameServer015_HandleIncomingPacket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const void *pData; int32_t cbData; uint32_t srcIP; @@ -33032,7 +33031,7 @@ struct ISteamGameServer_SteamGameServer015_ComputeNewPlayerCompatibility_params struct ISteamGameServer_SteamGameServer015_SendUserConnectAndAuthenticate_DEPRECATED_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unIPClient; const void *pvAuthBlob; uint32_t cubAuthBlobSize; @@ -33054,7 +33053,7 @@ struct ISteamGameServer_SteamGameServer015_SendUserDisconnect_DEPRECATED_params struct ISteamGameServer_SteamGameServer015_BUpdateUserData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchPlayerName; uint32_t uScore; @@ -33081,7 +33080,7 @@ struct ISteamGameServerStats_SteamGameServerStats001_RequestUserStats_params struct ISteamGameServerStats_SteamGameServerStats001_GetUserStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; int32_t *pData; @@ -33090,7 +33089,7 @@ struct ISteamGameServerStats_SteamGameServerStats001_GetUserStat_params struct ISteamGameServerStats_SteamGameServerStats001_GetUserStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; float *pData; @@ -33099,16 +33098,16 @@ struct ISteamGameServerStats_SteamGameServerStats001_GetUserStat_2_params struct ISteamGameServerStats_SteamGameServerStats001_GetUserAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; - bool *pbAchieved; + int8_t *pbAchieved; }; struct ISteamGameServerStats_SteamGameServerStats001_SetUserStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; int32_t nData; @@ -33117,7 +33116,7 @@ struct ISteamGameServerStats_SteamGameServerStats001_SetUserStat_params struct ISteamGameServerStats_SteamGameServerStats001_SetUserStat_2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; float fData; @@ -33126,7 +33125,7 @@ struct ISteamGameServerStats_SteamGameServerStats001_SetUserStat_2_params struct ISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; float flCountThisSession; @@ -33136,7 +33135,7 @@ struct ISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat_param struct ISteamGameServerStats_SteamGameServerStats001_SetUserAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; }; @@ -33144,7 +33143,7 @@ struct ISteamGameServerStats_SteamGameServerStats001_SetUserAchievement_params struct ISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDUser; const char *pchName; }; @@ -33273,13 +33272,13 @@ struct ISteamGameStats_SteamGameStats001_AddRowAttributeInt64_params struct ISteamInput_SteamInput001_Init_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamInput_SteamInput001_Shutdown_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamInput_SteamInput001_RunFrame_params @@ -33461,7 +33460,7 @@ struct ISteamInput_SteamInput001_TriggerRepeatedHapticPulse_params struct ISteamInput_SteamInput001_ShowBindingPanel_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t inputHandle; }; @@ -33519,7 +33518,7 @@ struct ISteamInput_SteamInput001_TranslateActionOrigin_params struct ISteamInput_SteamInput001_GetDeviceBindingRevision_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t inputHandle; int32_t *pMajor; int32_t *pMinor; @@ -33535,13 +33534,13 @@ struct ISteamInput_SteamInput001_GetRemotePlaySessionID_params struct ISteamInput_SteamInput002_Init_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamInput_SteamInput002_Shutdown_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamInput_SteamInput002_RunFrame_params @@ -33723,7 +33722,7 @@ struct ISteamInput_SteamInput002_TriggerRepeatedHapticPulse_params struct ISteamInput_SteamInput002_ShowBindingPanel_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t inputHandle; }; @@ -33781,7 +33780,7 @@ struct ISteamInput_SteamInput002_TranslateActionOrigin_params struct ISteamInput_SteamInput002_GetDeviceBindingRevision_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t inputHandle; int32_t *pMajor; int32_t *pMinor; @@ -33797,41 +33796,41 @@ struct ISteamInput_SteamInput002_GetRemotePlaySessionID_params struct ISteamInput_SteamInput005_Init_params { struct u_steam_iface *linux_side; - bool _ret; - bool bExplicitlyCallRunFrame; + int8_t _ret; + int8_t bExplicitlyCallRunFrame; }; struct ISteamInput_SteamInput005_Shutdown_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamInput_SteamInput005_SetInputActionManifestFilePath_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchInputActionManifestAbsolutePath; }; struct ISteamInput_SteamInput005_RunFrame_params { struct u_steam_iface *linux_side; - bool bReservedValue; + int8_t bReservedValue; }; struct ISteamInput_SteamInput005_BWaitForData_params { struct u_steam_iface *linux_side; - bool _ret; - bool bWaitForever; + int8_t _ret; + int8_t bWaitForever; uint32_t unTimeout; }; struct ISteamInput_SteamInput005_BNewDataAvailable_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamInput_SteamInput005_GetConnectedControllers_params @@ -34071,7 +34070,7 @@ struct ISteamInput_SteamInput005_Legacy_TriggerRepeatedHapticPulse_params struct ISteamInput_SteamInput005_ShowBindingPanel_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t inputHandle; }; @@ -34129,7 +34128,7 @@ struct ISteamInput_SteamInput005_TranslateActionOrigin_params struct ISteamInput_SteamInput005_GetDeviceBindingRevision_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t inputHandle; int32_t *pMajor; int32_t *pMinor; @@ -34151,41 +34150,41 @@ struct ISteamInput_SteamInput005_GetSessionInputConfigurationSettings_params struct ISteamInput_SteamInput006_Init_params { struct u_steam_iface *linux_side; - bool _ret; - bool bExplicitlyCallRunFrame; + int8_t _ret; + int8_t bExplicitlyCallRunFrame; }; struct ISteamInput_SteamInput006_Shutdown_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamInput_SteamInput006_SetInputActionManifestFilePath_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchInputActionManifestAbsolutePath; }; struct ISteamInput_SteamInput006_RunFrame_params { struct u_steam_iface *linux_side; - bool bReservedValue; + int8_t bReservedValue; }; struct ISteamInput_SteamInput006_BWaitForData_params { struct u_steam_iface *linux_side; - bool _ret; - bool bWaitForever; + int8_t _ret; + int8_t bWaitForever; uint32_t unTimeout; }; struct ISteamInput_SteamInput006_BNewDataAvailable_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamInput_SteamInput006_GetConnectedControllers_params @@ -34425,7 +34424,7 @@ struct ISteamInput_SteamInput006_Legacy_TriggerRepeatedHapticPulse_params struct ISteamInput_SteamInput006_ShowBindingPanel_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t inputHandle; }; @@ -34483,7 +34482,7 @@ struct ISteamInput_SteamInput006_TranslateActionOrigin_params struct ISteamInput_SteamInput006_GetDeviceBindingRevision_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t inputHandle; int32_t *pMajor; int32_t *pMinor; @@ -34512,7 +34511,7 @@ struct ISteamInput_SteamInput006_SetDualSenseTriggerEffect_params struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetActive_params { struct u_steam_iface *linux_side; - bool bActive; + int8_t bActive; }; struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetHeartbeatInterval_params @@ -34524,7 +34523,7 @@ struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetHeartbeatInterva struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleIncomingPacket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const void *pData; int32_t cbData; uint32_t srcIP; @@ -34545,11 +34544,11 @@ struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasicServerData_ { struct u_steam_iface *linux_side; uint16_t nProtocolVersion; - bool bDedicatedServer; + int8_t bDedicatedServer; const char *pRegionName; const char *pProductName; uint16_t nMaxReportedClients; - bool bPasswordProtected; + int8_t bPasswordProtected; const char *pGameDescription; }; @@ -34573,7 +34572,7 @@ struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_NotifyShutdown_para struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_WasRestartRequested_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_ForceHeartbeat_params @@ -34584,14 +34583,14 @@ struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_ForceHeartbeat_para struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_AddMasterServer_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pServerAddress; }; struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_RemoveMasterServer_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pServerAddress; }; @@ -34725,7 +34724,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGameCount_params struct ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iGame; uint32_t *pnAppID; uint32_t *pnIP; @@ -34748,7 +34747,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t nAppID; uint32_t nIP; uint16_t nConnPort; @@ -34758,7 +34757,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iGame; uint32_t *pnAppID; uint32_t *pnIP; @@ -34783,7 +34782,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame2_params struct ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t nAppID; uint32_t nIP; uint16_t nConnPort; @@ -34810,7 +34809,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_CreateLobby_params { struct u_steam_iface *linux_side; uint64_t ulGameID; - bool bPrivate; + int8_t bPrivate; }; struct ISteamMatchmaking_SteamMatchMaking001_JoinLobby_params @@ -34828,7 +34827,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_LeaveLobby_params struct ISteamMatchmaking_SteamMatchMaking001_InviteUserToLobby_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDInvitee; }; @@ -34859,7 +34858,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking001_SetLobbyData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; const char *pchKey; const char *pchValue; @@ -34877,7 +34876,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; const char *pchKey; const char *pchValue; @@ -34886,7 +34885,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; const void *pvMsgBody; int32_t cubMsgBody; @@ -34907,7 +34906,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyChatEntry_params struct ISteamMatchmaking_SteamMatchMaking001_RequestLobbyData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; }; @@ -34920,7 +34919,7 @@ struct ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGameCount_params struct ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iGame; uint32_t *pnAppID; uint32_t *pnIP; @@ -34945,7 +34944,7 @@ struct ISteamMatchmaking_SteamMatchMaking002_AddFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t nAppID; uint32_t nIP; uint16_t nConnPort; @@ -34968,7 +34967,7 @@ struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyByIndex_params struct ISteamMatchmaking_SteamMatchMaking002_CreateLobby_params { struct u_steam_iface *linux_side; - bool bPrivate; + int8_t bPrivate; }; struct ISteamMatchmaking_SteamMatchMaking002_JoinLobby_params @@ -34986,7 +34985,7 @@ struct ISteamMatchmaking_SteamMatchMaking002_LeaveLobby_params struct ISteamMatchmaking_SteamMatchMaking002_InviteUserToLobby_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDInvitee; }; @@ -35017,7 +35016,7 @@ struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking002_SetLobbyData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; const char *pchKey; const char *pchValue; @@ -35043,7 +35042,7 @@ struct ISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; const void *pvMsgBody; int32_t cubMsgBody; @@ -35064,7 +35063,7 @@ struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyChatEntry_params struct ISteamMatchmaking_SteamMatchMaking002_RequestLobbyData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; }; @@ -35086,7 +35085,7 @@ struct ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGameCount_params struct ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iGame; uint32_t *pnAppID; uint32_t *pnIP; @@ -35111,7 +35110,7 @@ struct ISteamMatchmaking_SteamMatchMaking003_AddFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t nAppID; uint32_t nIP; uint16_t nConnPort; @@ -35154,7 +35153,7 @@ struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyByIndex_params struct ISteamMatchmaking_SteamMatchMaking003_CreateLobby_params { struct u_steam_iface *linux_side; - bool bPrivate; + int8_t bPrivate; }; struct ISteamMatchmaking_SteamMatchMaking003_JoinLobby_params @@ -35172,7 +35171,7 @@ struct ISteamMatchmaking_SteamMatchMaking003_LeaveLobby_params struct ISteamMatchmaking_SteamMatchMaking003_InviteUserToLobby_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDInvitee; }; @@ -35203,7 +35202,7 @@ struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; const char *pchKey; const char *pchValue; @@ -35229,7 +35228,7 @@ struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; const void *pvMsgBody; int32_t cubMsgBody; @@ -35250,7 +35249,7 @@ struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyChatEntry_params struct ISteamMatchmaking_SteamMatchMaking003_RequestLobbyData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; }; @@ -35266,7 +35265,7 @@ struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; uint32_t *punGameServerIP; uint16_t *punGameServerPort; @@ -35276,7 +35275,7 @@ struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberLimit_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; int32_t cMaxMembers; }; @@ -35292,13 +35291,13 @@ struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled_params { struct u_steam_iface *linux_side; CSteamID steamIDLobby; - bool bVoiceEnabled; + int8_t bVoiceEnabled; }; struct ISteamMatchmaking_SteamMatchMaking003_RequestFriendsLobbies_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGameCount_params @@ -35310,7 +35309,7 @@ struct ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGameCount_params struct ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iGame; uint32_t *pnAppID; uint32_t *pnIP; @@ -35335,7 +35334,7 @@ struct ISteamMatchmaking_SteamMatchMaking004_AddFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t nAppID; uint32_t nIP; uint16_t nConnPort; @@ -35378,7 +35377,7 @@ struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyByIndex_params struct ISteamMatchmaking_SteamMatchMaking004_CreateLobby_params { struct u_steam_iface *linux_side; - bool bPrivate; + int8_t bPrivate; }; struct ISteamMatchmaking_SteamMatchMaking004_JoinLobby_params @@ -35396,7 +35395,7 @@ struct ISteamMatchmaking_SteamMatchMaking004_LeaveLobby_params struct ISteamMatchmaking_SteamMatchMaking004_InviteUserToLobby_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDInvitee; }; @@ -35427,7 +35426,7 @@ struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; const char *pchKey; const char *pchValue; @@ -35453,7 +35452,7 @@ struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; const void *pvMsgBody; int32_t cubMsgBody; @@ -35474,7 +35473,7 @@ struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyChatEntry_params struct ISteamMatchmaking_SteamMatchMaking004_RequestLobbyData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; }; @@ -35490,7 +35489,7 @@ struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; uint32_t *punGameServerIP; uint16_t *punGameServerPort; @@ -35500,7 +35499,7 @@ struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberLimit_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; int32_t cMaxMembers; }; @@ -35515,7 +35514,7 @@ struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberLimit_params struct ISteamMatchmaking_SteamMatchMaking004_RequestFriendsLobbies_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGameCount_params @@ -35527,7 +35526,7 @@ struct ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGameCount_params struct ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iGame; uint32_t *pnAppID; uint32_t *pnIP; @@ -35552,7 +35551,7 @@ struct ISteamMatchmaking_SteamMatchMaking005_AddFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t nAppID; uint32_t nIP; uint16_t nConnPort; @@ -35620,7 +35619,7 @@ struct ISteamMatchmaking_SteamMatchMaking005_LeaveLobby_params struct ISteamMatchmaking_SteamMatchMaking005_InviteUserToLobby_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDInvitee; }; @@ -35651,7 +35650,7 @@ struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; const char *pchKey; const char *pchValue; @@ -35677,7 +35676,7 @@ struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; const void *pvMsgBody; int32_t cubMsgBody; @@ -35698,7 +35697,7 @@ struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyChatEntry_params struct ISteamMatchmaking_SteamMatchMaking005_RequestLobbyData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; }; @@ -35714,7 +35713,7 @@ struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; uint32_t *punGameServerIP; uint16_t *punGameServerPort; @@ -35724,7 +35723,7 @@ struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberLimit_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; int32_t cMaxMembers; }; @@ -35739,13 +35738,13 @@ struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberLimit_params struct ISteamMatchmaking_SteamMatchMaking005_RequestFriendsLobbies_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyType_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; uint32_t eLobbyType; }; @@ -35773,7 +35772,7 @@ struct ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGameCount_params struct ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iGame; uint32_t *pnAppID; uint32_t *pnIP; @@ -35798,7 +35797,7 @@ struct ISteamMatchmaking_SteamMatchMaking006_AddFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t nAppID; uint32_t nIP; uint16_t nConnPort; @@ -35864,7 +35863,7 @@ struct ISteamMatchmaking_SteamMatchMaking006_LeaveLobby_params struct ISteamMatchmaking_SteamMatchMaking006_InviteUserToLobby_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDInvitee; }; @@ -35895,7 +35894,7 @@ struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; const char *pchKey; const char *pchValue; @@ -35921,7 +35920,7 @@ struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; const void *pvMsgBody; int32_t cubMsgBody; @@ -35942,7 +35941,7 @@ struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyChatEntry_params struct ISteamMatchmaking_SteamMatchMaking006_RequestLobbyData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; }; @@ -35958,7 +35957,7 @@ struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; uint32_t *punGameServerIP; uint16_t *punGameServerPort; @@ -35968,7 +35967,7 @@ struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberLimit_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; int32_t cMaxMembers; }; @@ -35983,7 +35982,7 @@ struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberLimit_params struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyType_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; uint32_t eLobbyType; }; @@ -36004,7 +36003,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGameCount_params struct ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iGame; uint32_t *pnAppID; uint32_t *pnIP; @@ -36029,7 +36028,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_AddFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t nAppID; uint32_t nIP; uint16_t nConnPort; @@ -36103,7 +36102,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_LeaveLobby_params struct ISteamMatchmaking_SteamMatchMaking007_InviteUserToLobby_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDInvitee; }; @@ -36134,7 +36133,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; const char *pchKey; const char *pchValue; @@ -36150,7 +36149,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataCount_params struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; int32_t iLobbyData; char *pchKey; @@ -36162,7 +36161,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex_params struct ISteamMatchmaking_SteamMatchMaking007_DeleteLobbyData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; const char *pchKey; }; @@ -36187,7 +36186,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; const void *pvMsgBody; int32_t cubMsgBody; @@ -36208,7 +36207,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry_params struct ISteamMatchmaking_SteamMatchMaking007_RequestLobbyData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; }; @@ -36224,7 +36223,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; uint32_t *punGameServerIP; uint16_t *punGameServerPort; @@ -36234,7 +36233,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberLimit_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; int32_t cMaxMembers; }; @@ -36249,7 +36248,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberLimit_params struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyType_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; uint32_t eLobbyType; }; @@ -36257,9 +36256,9 @@ struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyType_params struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinable_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; - bool bLobbyJoinable; + int8_t bLobbyJoinable; }; struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyOwner_params @@ -36272,7 +36271,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyOwner_params struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyOwner_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDNewOwner; }; @@ -36286,7 +36285,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGameCount_params struct ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iGame; uint32_t *pnAppID; uint32_t *pnIP; @@ -36311,7 +36310,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_AddFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t nAppID; uint32_t nIP; uint16_t nConnPort; @@ -36397,7 +36396,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_LeaveLobby_params struct ISteamMatchmaking_SteamMatchMaking008_InviteUserToLobby_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDInvitee; }; @@ -36428,7 +36427,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; const char *pchKey; const char *pchValue; @@ -36444,7 +36443,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataCount_params struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; int32_t iLobbyData; char *pchKey; @@ -36456,7 +36455,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex_params struct ISteamMatchmaking_SteamMatchMaking008_DeleteLobbyData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; const char *pchKey; }; @@ -36481,7 +36480,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; const void *pvMsgBody; int32_t cubMsgBody; @@ -36502,7 +36501,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyChatEntry_params struct ISteamMatchmaking_SteamMatchMaking008_RequestLobbyData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; }; @@ -36518,7 +36517,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; uint32_t *punGameServerIP; uint16_t *punGameServerPort; @@ -36528,7 +36527,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberLimit_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; int32_t cMaxMembers; }; @@ -36543,7 +36542,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberLimit_params struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyType_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; uint32_t eLobbyType; }; @@ -36551,9 +36550,9 @@ struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyType_params struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinable_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; - bool bLobbyJoinable; + int8_t bLobbyJoinable; }; struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyOwner_params @@ -36566,7 +36565,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyOwner_params struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyOwner_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDNewOwner; }; @@ -36580,7 +36579,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGameCount_params struct ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iGame; uint32_t *pnAppID; uint32_t *pnIP; @@ -36605,7 +36604,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_AddFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t nAppID; uint32_t nIP; uint16_t nConnPort; @@ -36697,7 +36696,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_LeaveLobby_params struct ISteamMatchmaking_SteamMatchMaking009_InviteUserToLobby_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDInvitee; }; @@ -36728,7 +36727,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; const char *pchKey; const char *pchValue; @@ -36744,7 +36743,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataCount_params struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; int32_t iLobbyData; char *pchKey; @@ -36756,7 +36755,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex_params struct ISteamMatchmaking_SteamMatchMaking009_DeleteLobbyData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; const char *pchKey; }; @@ -36781,7 +36780,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; const void *pvMsgBody; int32_t cubMsgBody; @@ -36802,7 +36801,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyChatEntry_params struct ISteamMatchmaking_SteamMatchMaking009_RequestLobbyData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; }; @@ -36818,7 +36817,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; uint32_t *punGameServerIP; uint16_t *punGameServerPort; @@ -36828,7 +36827,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberLimit_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; int32_t cMaxMembers; }; @@ -36843,7 +36842,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberLimit_params struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyType_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; uint32_t eLobbyType; }; @@ -36851,9 +36850,9 @@ struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyType_params struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyJoinable_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; - bool bLobbyJoinable; + int8_t bLobbyJoinable; }; struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyOwner_params @@ -36866,7 +36865,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyOwner_params struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDNewOwner; }; @@ -36874,7 +36873,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner_params struct ISteamMatchmaking_SteamMatchMaking009_SetLinkedLobby_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDLobbyDependent; }; @@ -36954,7 +36953,7 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers001_RefreshQuery_params struct ISteamMatchmakingServers_SteamMatchMakingServers001_IsRefreshing_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eType; }; @@ -37092,7 +37091,7 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers002_RefreshQuery_params struct ISteamMatchmakingServers_SteamMatchMakingServers002_IsRefreshing_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; void *hRequest; }; @@ -37173,33 +37172,33 @@ struct ISteamNetworking_SteamNetworking001_CreateConnectionSocket_params struct ISteamNetworking_SteamNetworking001_DestroySocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; - bool bNotifyRemoteEnd; + int8_t bNotifyRemoteEnd; }; struct ISteamNetworking_SteamNetworking001_DestroyListenSocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; - bool bNotifyRemoteEnd; + int8_t bNotifyRemoteEnd; }; struct ISteamNetworking_SteamNetworking001_SendDataOnSocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; void *pubData; uint32_t cubData; - bool bReliable; + int8_t bReliable; }; struct ISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; uint32_t *pcubMsgSize; }; @@ -37207,7 +37206,7 @@ struct ISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket_params struct ISteamNetworking_SteamNetworking001_RetrieveDataFromSocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; void *pubDest; uint32_t cubDest; @@ -37217,7 +37216,7 @@ struct ISteamNetworking_SteamNetworking001_RetrieveDataFromSocket_params struct ISteamNetworking_SteamNetworking001_IsDataAvailable_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hListenSocket; uint32_t *pcubMsgSize; uint32_t *phSocket; @@ -37226,7 +37225,7 @@ struct ISteamNetworking_SteamNetworking001_IsDataAvailable_params struct ISteamNetworking_SteamNetworking001_RetrieveData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hListenSocket; void *pubDest; uint32_t cubDest; @@ -37237,7 +37236,7 @@ struct ISteamNetworking_SteamNetworking001_RetrieveData_params struct ISteamNetworking_SteamNetworking001_GetSocketInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; CSteamID *pSteamIDRemote; int32_t *peSocketStatus; @@ -37248,7 +37247,7 @@ struct ISteamNetworking_SteamNetworking001_GetSocketInfo_params struct ISteamNetworking_SteamNetworking001_GetListenSocketInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hListenSocket; uint32_t *pnIP; uint16_t *pnPort; @@ -37261,7 +37260,7 @@ struct ISteamNetworking_SteamNetworking002_CreateListenSocket_params int32_t nVirtualP2PPort; uint32_t nIP; uint16_t nPort; - bool bAllowUseOfPacketRelay; + int8_t bAllowUseOfPacketRelay; }; struct ISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket_params @@ -37271,7 +37270,7 @@ struct ISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket_params CSteamID steamIDTarget; int32_t nVirtualPort; int32_t nTimeoutSec; - bool bAllowUseOfPacketRelay; + int8_t bAllowUseOfPacketRelay; }; struct ISteamNetworking_SteamNetworking002_CreateConnectionSocket_params @@ -37286,33 +37285,33 @@ struct ISteamNetworking_SteamNetworking002_CreateConnectionSocket_params struct ISteamNetworking_SteamNetworking002_DestroySocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; - bool bNotifyRemoteEnd; + int8_t bNotifyRemoteEnd; }; struct ISteamNetworking_SteamNetworking002_DestroyListenSocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; - bool bNotifyRemoteEnd; + int8_t bNotifyRemoteEnd; }; struct ISteamNetworking_SteamNetworking002_SendDataOnSocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; void *pubData; uint32_t cubData; - bool bReliable; + int8_t bReliable; }; struct ISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; uint32_t *pcubMsgSize; }; @@ -37320,7 +37319,7 @@ struct ISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket_params struct ISteamNetworking_SteamNetworking002_RetrieveDataFromSocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; void *pubDest; uint32_t cubDest; @@ -37330,7 +37329,7 @@ struct ISteamNetworking_SteamNetworking002_RetrieveDataFromSocket_params struct ISteamNetworking_SteamNetworking002_IsDataAvailable_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hListenSocket; uint32_t *pcubMsgSize; uint32_t *phSocket; @@ -37339,7 +37338,7 @@ struct ISteamNetworking_SteamNetworking002_IsDataAvailable_params struct ISteamNetworking_SteamNetworking002_RetrieveData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hListenSocket; void *pubDest; uint32_t cubDest; @@ -37350,7 +37349,7 @@ struct ISteamNetworking_SteamNetworking002_RetrieveData_params struct ISteamNetworking_SteamNetworking002_GetSocketInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; CSteamID *pSteamIDRemote; int32_t *peSocketStatus; @@ -37361,7 +37360,7 @@ struct ISteamNetworking_SteamNetworking002_GetSocketInfo_params struct ISteamNetworking_SteamNetworking002_GetListenSocketInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hListenSocket; uint32_t *pnIP; uint16_t *pnPort; @@ -37384,7 +37383,7 @@ struct ISteamNetworking_SteamNetworking002_GetMaxPacketSize_params struct ISteamNetworking_SteamNetworking003_SendP2PPacket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDRemote; const void *pubData; uint32_t cubData; @@ -37394,14 +37393,14 @@ struct ISteamNetworking_SteamNetworking003_SendP2PPacket_params struct ISteamNetworking_SteamNetworking003_IsP2PPacketAvailable_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t *pcubMsgSize; }; struct ISteamNetworking_SteamNetworking003_ReadP2PPacket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; void *pubDest; uint32_t cubDest; uint32_t *pcubMsgSize; @@ -37411,21 +37410,21 @@ struct ISteamNetworking_SteamNetworking003_ReadP2PPacket_params struct ISteamNetworking_SteamNetworking003_AcceptP2PSessionWithUser_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDRemote; }; struct ISteamNetworking_SteamNetworking003_CloseP2PSessionWithUser_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDRemote; }; struct ISteamNetworking_SteamNetworking003_GetP2PSessionState_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDRemote; P2PSessionState_t *pConnectionState; }; @@ -37437,7 +37436,7 @@ struct ISteamNetworking_SteamNetworking003_CreateListenSocket_params int32_t nVirtualP2PPort; uint32_t nIP; uint16_t nPort; - bool bAllowUseOfPacketRelay; + int8_t bAllowUseOfPacketRelay; }; struct ISteamNetworking_SteamNetworking003_CreateP2PConnectionSocket_params @@ -37447,7 +37446,7 @@ struct ISteamNetworking_SteamNetworking003_CreateP2PConnectionSocket_params CSteamID steamIDTarget; int32_t nVirtualPort; int32_t nTimeoutSec; - bool bAllowUseOfPacketRelay; + int8_t bAllowUseOfPacketRelay; }; struct ISteamNetworking_SteamNetworking003_CreateConnectionSocket_params @@ -37462,33 +37461,33 @@ struct ISteamNetworking_SteamNetworking003_CreateConnectionSocket_params struct ISteamNetworking_SteamNetworking003_DestroySocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; - bool bNotifyRemoteEnd; + int8_t bNotifyRemoteEnd; }; struct ISteamNetworking_SteamNetworking003_DestroyListenSocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; - bool bNotifyRemoteEnd; + int8_t bNotifyRemoteEnd; }; struct ISteamNetworking_SteamNetworking003_SendDataOnSocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; void *pubData; uint32_t cubData; - bool bReliable; + int8_t bReliable; }; struct ISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; uint32_t *pcubMsgSize; }; @@ -37496,7 +37495,7 @@ struct ISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket_params struct ISteamNetworking_SteamNetworking003_RetrieveDataFromSocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; void *pubDest; uint32_t cubDest; @@ -37506,7 +37505,7 @@ struct ISteamNetworking_SteamNetworking003_RetrieveDataFromSocket_params struct ISteamNetworking_SteamNetworking003_IsDataAvailable_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hListenSocket; uint32_t *pcubMsgSize; uint32_t *phSocket; @@ -37515,7 +37514,7 @@ struct ISteamNetworking_SteamNetworking003_IsDataAvailable_params struct ISteamNetworking_SteamNetworking003_RetrieveData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hListenSocket; void *pubDest; uint32_t cubDest; @@ -37526,7 +37525,7 @@ struct ISteamNetworking_SteamNetworking003_RetrieveData_params struct ISteamNetworking_SteamNetworking003_GetSocketInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; CSteamID *pSteamIDRemote; int32_t *peSocketStatus; @@ -37537,7 +37536,7 @@ struct ISteamNetworking_SteamNetworking003_GetSocketInfo_params struct ISteamNetworking_SteamNetworking003_GetListenSocketInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hListenSocket; uint32_t *pnIP; uint16_t *pnPort; @@ -37560,7 +37559,7 @@ struct ISteamNetworking_SteamNetworking003_GetMaxPacketSize_params struct ISteamNetworking_SteamNetworking004_SendP2PPacket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDRemote; const void *pubData; uint32_t cubData; @@ -37571,7 +37570,7 @@ struct ISteamNetworking_SteamNetworking004_SendP2PPacket_params struct ISteamNetworking_SteamNetworking004_IsP2PPacketAvailable_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t *pcubMsgSize; int32_t nVirtualPort; }; @@ -37579,7 +37578,7 @@ struct ISteamNetworking_SteamNetworking004_IsP2PPacketAvailable_params struct ISteamNetworking_SteamNetworking004_ReadP2PPacket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; void *pubDest; uint32_t cubDest; uint32_t *pcubMsgSize; @@ -37590,21 +37589,21 @@ struct ISteamNetworking_SteamNetworking004_ReadP2PPacket_params struct ISteamNetworking_SteamNetworking004_AcceptP2PSessionWithUser_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDRemote; }; struct ISteamNetworking_SteamNetworking004_CloseP2PSessionWithUser_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDRemote; }; struct ISteamNetworking_SteamNetworking004_GetP2PSessionState_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDRemote; P2PSessionState_t *pConnectionState; }; @@ -37616,7 +37615,7 @@ struct ISteamNetworking_SteamNetworking004_CreateListenSocket_params int32_t nVirtualP2PPort; uint32_t nIP; uint16_t nPort; - bool bAllowUseOfPacketRelay; + int8_t bAllowUseOfPacketRelay; }; struct ISteamNetworking_SteamNetworking004_CreateP2PConnectionSocket_params @@ -37626,7 +37625,7 @@ struct ISteamNetworking_SteamNetworking004_CreateP2PConnectionSocket_params CSteamID steamIDTarget; int32_t nVirtualPort; int32_t nTimeoutSec; - bool bAllowUseOfPacketRelay; + int8_t bAllowUseOfPacketRelay; }; struct ISteamNetworking_SteamNetworking004_CreateConnectionSocket_params @@ -37641,33 +37640,33 @@ struct ISteamNetworking_SteamNetworking004_CreateConnectionSocket_params struct ISteamNetworking_SteamNetworking004_DestroySocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; - bool bNotifyRemoteEnd; + int8_t bNotifyRemoteEnd; }; struct ISteamNetworking_SteamNetworking004_DestroyListenSocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; - bool bNotifyRemoteEnd; + int8_t bNotifyRemoteEnd; }; struct ISteamNetworking_SteamNetworking004_SendDataOnSocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; void *pubData; uint32_t cubData; - bool bReliable; + int8_t bReliable; }; struct ISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; uint32_t *pcubMsgSize; }; @@ -37675,7 +37674,7 @@ struct ISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket_params struct ISteamNetworking_SteamNetworking004_RetrieveDataFromSocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; void *pubDest; uint32_t cubDest; @@ -37685,7 +37684,7 @@ struct ISteamNetworking_SteamNetworking004_RetrieveDataFromSocket_params struct ISteamNetworking_SteamNetworking004_IsDataAvailable_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hListenSocket; uint32_t *pcubMsgSize; uint32_t *phSocket; @@ -37694,7 +37693,7 @@ struct ISteamNetworking_SteamNetworking004_IsDataAvailable_params struct ISteamNetworking_SteamNetworking004_RetrieveData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hListenSocket; void *pubDest; uint32_t cubDest; @@ -37705,7 +37704,7 @@ struct ISteamNetworking_SteamNetworking004_RetrieveData_params struct ISteamNetworking_SteamNetworking004_GetSocketInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; CSteamID *pSteamIDRemote; int32_t *peSocketStatus; @@ -37716,7 +37715,7 @@ struct ISteamNetworking_SteamNetworking004_GetSocketInfo_params struct ISteamNetworking_SteamNetworking004_GetListenSocketInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hListenSocket; uint32_t *pnIP; uint16_t *pnPort; @@ -37739,7 +37738,7 @@ struct ISteamNetworking_SteamNetworking004_GetMaxPacketSize_params struct ISteamNetworking_SteamNetworking005_SendP2PPacket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDRemote; const void *pubData; uint32_t cubData; @@ -37750,7 +37749,7 @@ struct ISteamNetworking_SteamNetworking005_SendP2PPacket_params struct ISteamNetworking_SteamNetworking005_IsP2PPacketAvailable_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t *pcubMsgSize; int32_t nChannel; }; @@ -37758,7 +37757,7 @@ struct ISteamNetworking_SteamNetworking005_IsP2PPacketAvailable_params struct ISteamNetworking_SteamNetworking005_ReadP2PPacket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; void *pubDest; uint32_t cubDest; uint32_t *pcubMsgSize; @@ -37769,21 +37768,21 @@ struct ISteamNetworking_SteamNetworking005_ReadP2PPacket_params struct ISteamNetworking_SteamNetworking005_AcceptP2PSessionWithUser_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDRemote; }; struct ISteamNetworking_SteamNetworking005_CloseP2PSessionWithUser_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDRemote; }; struct ISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDRemote; int32_t nChannel; }; @@ -37791,7 +37790,7 @@ struct ISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser_params struct ISteamNetworking_SteamNetworking005_GetP2PSessionState_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDRemote; P2PSessionState_t *pConnectionState; }; @@ -37799,8 +37798,8 @@ struct ISteamNetworking_SteamNetworking005_GetP2PSessionState_params struct ISteamNetworking_SteamNetworking005_AllowP2PPacketRelay_params { struct u_steam_iface *linux_side; - bool _ret; - bool bAllow; + int8_t _ret; + int8_t bAllow; }; struct ISteamNetworking_SteamNetworking005_CreateListenSocket_params @@ -37810,7 +37809,7 @@ struct ISteamNetworking_SteamNetworking005_CreateListenSocket_params int32_t nVirtualP2PPort; uint32_t nIP; uint16_t nPort; - bool bAllowUseOfPacketRelay; + int8_t bAllowUseOfPacketRelay; }; struct ISteamNetworking_SteamNetworking005_CreateP2PConnectionSocket_params @@ -37820,7 +37819,7 @@ struct ISteamNetworking_SteamNetworking005_CreateP2PConnectionSocket_params CSteamID steamIDTarget; int32_t nVirtualPort; int32_t nTimeoutSec; - bool bAllowUseOfPacketRelay; + int8_t bAllowUseOfPacketRelay; }; struct ISteamNetworking_SteamNetworking005_CreateConnectionSocket_params @@ -37835,33 +37834,33 @@ struct ISteamNetworking_SteamNetworking005_CreateConnectionSocket_params struct ISteamNetworking_SteamNetworking005_DestroySocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; - bool bNotifyRemoteEnd; + int8_t bNotifyRemoteEnd; }; struct ISteamNetworking_SteamNetworking005_DestroyListenSocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; - bool bNotifyRemoteEnd; + int8_t bNotifyRemoteEnd; }; struct ISteamNetworking_SteamNetworking005_SendDataOnSocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; void *pubData; uint32_t cubData; - bool bReliable; + int8_t bReliable; }; struct ISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; uint32_t *pcubMsgSize; }; @@ -37869,7 +37868,7 @@ struct ISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket_params struct ISteamNetworking_SteamNetworking005_RetrieveDataFromSocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; void *pubDest; uint32_t cubDest; @@ -37879,7 +37878,7 @@ struct ISteamNetworking_SteamNetworking005_RetrieveDataFromSocket_params struct ISteamNetworking_SteamNetworking005_IsDataAvailable_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hListenSocket; uint32_t *pcubMsgSize; uint32_t *phSocket; @@ -37888,7 +37887,7 @@ struct ISteamNetworking_SteamNetworking005_IsDataAvailable_params struct ISteamNetworking_SteamNetworking005_RetrieveData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hListenSocket; void *pubDest; uint32_t cubDest; @@ -37899,7 +37898,7 @@ struct ISteamNetworking_SteamNetworking005_RetrieveData_params struct ISteamNetworking_SteamNetworking005_GetSocketInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; CSteamID *pSteamIDRemote; int32_t *peSocketStatus; @@ -37910,7 +37909,7 @@ struct ISteamNetworking_SteamNetworking005_GetSocketInfo_params struct ISteamNetworking_SteamNetworking005_GetListenSocketInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hListenSocket; uint32_t *pnIP; uint16_t *pnPort; @@ -37933,7 +37932,7 @@ struct ISteamNetworking_SteamNetworking005_GetMaxPacketSize_params struct ISteamNetworking_SteamNetworking006_SendP2PPacket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDRemote; const void *pubData; uint32_t cubData; @@ -37944,7 +37943,7 @@ struct ISteamNetworking_SteamNetworking006_SendP2PPacket_params struct ISteamNetworking_SteamNetworking006_IsP2PPacketAvailable_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t *pcubMsgSize; int32_t nChannel; }; @@ -37952,7 +37951,7 @@ struct ISteamNetworking_SteamNetworking006_IsP2PPacketAvailable_params struct ISteamNetworking_SteamNetworking006_ReadP2PPacket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; void *pubDest; uint32_t cubDest; uint32_t *pcubMsgSize; @@ -37963,21 +37962,21 @@ struct ISteamNetworking_SteamNetworking006_ReadP2PPacket_params struct ISteamNetworking_SteamNetworking006_AcceptP2PSessionWithUser_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDRemote; }; struct ISteamNetworking_SteamNetworking006_CloseP2PSessionWithUser_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDRemote; }; struct ISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDRemote; int32_t nChannel; }; @@ -37985,7 +37984,7 @@ struct ISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser_params struct ISteamNetworking_SteamNetworking006_GetP2PSessionState_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; CSteamID steamIDRemote; P2PSessionState_t *pConnectionState; }; @@ -37993,8 +37992,8 @@ struct ISteamNetworking_SteamNetworking006_GetP2PSessionState_params struct ISteamNetworking_SteamNetworking006_AllowP2PPacketRelay_params { struct u_steam_iface *linux_side; - bool _ret; - bool bAllow; + int8_t _ret; + int8_t bAllow; }; struct ISteamNetworking_SteamNetworking006_CreateListenSocket_params @@ -38004,7 +38003,7 @@ struct ISteamNetworking_SteamNetworking006_CreateListenSocket_params int32_t nVirtualP2PPort; SteamIPAddress_t nIP; uint16_t nPort; - bool bAllowUseOfPacketRelay; + int8_t bAllowUseOfPacketRelay; }; struct ISteamNetworking_SteamNetworking006_CreateP2PConnectionSocket_params @@ -38014,7 +38013,7 @@ struct ISteamNetworking_SteamNetworking006_CreateP2PConnectionSocket_params CSteamID steamIDTarget; int32_t nVirtualPort; int32_t nTimeoutSec; - bool bAllowUseOfPacketRelay; + int8_t bAllowUseOfPacketRelay; }; struct ISteamNetworking_SteamNetworking006_CreateConnectionSocket_params @@ -38029,33 +38028,33 @@ struct ISteamNetworking_SteamNetworking006_CreateConnectionSocket_params struct ISteamNetworking_SteamNetworking006_DestroySocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; - bool bNotifyRemoteEnd; + int8_t bNotifyRemoteEnd; }; struct ISteamNetworking_SteamNetworking006_DestroyListenSocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; - bool bNotifyRemoteEnd; + int8_t bNotifyRemoteEnd; }; struct ISteamNetworking_SteamNetworking006_SendDataOnSocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; void *pubData; uint32_t cubData; - bool bReliable; + int8_t bReliable; }; struct ISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; uint32_t *pcubMsgSize; }; @@ -38063,7 +38062,7 @@ struct ISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket_params struct ISteamNetworking_SteamNetworking006_RetrieveDataFromSocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; void *pubDest; uint32_t cubDest; @@ -38073,7 +38072,7 @@ struct ISteamNetworking_SteamNetworking006_RetrieveDataFromSocket_params struct ISteamNetworking_SteamNetworking006_IsDataAvailable_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hListenSocket; uint32_t *pcubMsgSize; uint32_t *phSocket; @@ -38082,7 +38081,7 @@ struct ISteamNetworking_SteamNetworking006_IsDataAvailable_params struct ISteamNetworking_SteamNetworking006_RetrieveData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hListenSocket; void *pubDest; uint32_t cubDest; @@ -38093,7 +38092,7 @@ struct ISteamNetworking_SteamNetworking006_RetrieveData_params struct ISteamNetworking_SteamNetworking006_GetSocketInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; CSteamID *pSteamIDRemote; int32_t *peSocketStatus; @@ -38104,7 +38103,7 @@ struct ISteamNetworking_SteamNetworking006_GetSocketInfo_params struct ISteamNetworking_SteamNetworking006_GetListenSocketInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hListenSocket; SteamIPAddress_t *pnIP; uint16_t *pnPort; @@ -38176,21 +38175,21 @@ struct ISteamNetworkingMessages_SteamNetworkingMessages002_ReceiveMessagesOnChan struct ISteamNetworkingMessages_SteamNetworkingMessages002_AcceptSessionWithUser_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const SteamNetworkingIdentity_144 *identityRemote; }; struct ISteamNetworkingMessages_SteamNetworkingMessages002_CloseSessionWithUser_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const SteamNetworkingIdentity_144 *identityRemote; }; struct ISteamNetworkingMessages_SteamNetworkingMessages002_CloseChannelWithUser_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const SteamNetworkingIdentity_144 *identityRemote; int32_t nLocalChannel; }; @@ -38243,24 +38242,24 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_AcceptConnection_params struct ISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnection_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hPeer; int32_t nReason; const char *pszDebug; - bool bEnableLinger; + int8_t bEnableLinger; }; struct ISteamNetworkingSockets_SteamNetworkingSockets002_CloseListenSocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; }; struct ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionUserData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hPeer; int64_t nUserData; }; @@ -38282,7 +38281,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionName_param struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionName_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hPeer; char *pszName; int32_t nMaxLen; @@ -38326,7 +38325,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnListen struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hConn; SteamNetConnectionInfo_t_144 *pInfo; }; @@ -38334,7 +38333,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionInfo_param struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetQuickConnectionStatus_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hConn; SteamNetworkingQuickConnectionStatus *pStats; }; @@ -38351,7 +38350,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetDetailedConnectionSt struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSocketAddress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; SteamNetworkingIPAddr *address; }; @@ -38359,10 +38358,10 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSocketAddress_ struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocketPair_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t *pOutConnection1; uint32_t *pOutConnection2; - bool bUseNetworkLoopback; + int8_t bUseNetworkLoopback; const SteamNetworkingIdentity_144 *pIdentity1; const SteamNetworkingIdentity_144 *pIdentity2; }; @@ -38370,14 +38369,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocketPair_params struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetIdentity_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; SteamNetworkingIdentity_144 *pIdentity; }; struct ISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedRelayAuthTicket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const void *pvTicket; int32_t cbTicket; SteamDatagramRelayAuthTicket *pOutParsedTicket; @@ -38415,7 +38414,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServe struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerAddress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; SteamDatagramHostedAddress *pRouting; }; @@ -38465,24 +38464,24 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_AcceptConnection_params struct ISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnection_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hPeer; int32_t nReason; const char *pszDebug; - bool bEnableLinger; + int8_t bEnableLinger; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_CloseListenSocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionUserData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hPeer; int64_t nUserData; }; @@ -38504,7 +38503,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionName_param struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionName_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hPeer; char *pszName; int32_t nMaxLen; @@ -38548,7 +38547,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnListen struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hConn; SteamNetConnectionInfo_t_144 *pInfo; }; @@ -38556,7 +38555,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionInfo_param struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetQuickConnectionStatus_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hConn; SteamNetworkingQuickConnectionStatus *pStats; }; @@ -38573,7 +38572,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetDetailedConnectionSt struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSocketAddress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; SteamNetworkingIPAddr *address; }; @@ -38581,10 +38580,10 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSocketAddress_ struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocketPair_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t *pOutConnection1; uint32_t *pOutConnection2; - bool bUseNetworkLoopback; + int8_t bUseNetworkLoopback; const SteamNetworkingIdentity_144 *pIdentity1; const SteamNetworkingIdentity_144 *pIdentity2; }; @@ -38592,7 +38591,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocketPair_params struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetIdentity_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; SteamNetworkingIdentity_144 *pIdentity; }; @@ -38612,7 +38611,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetAuthenticationStatus struct ISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedRelayAuthTicket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const void *pvTicket; int32_t cbTicket; SteamDatagramRelayAuthTicket *pOutParsedTicket; @@ -38717,24 +38716,24 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_AcceptConnection_params struct ISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnection_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hPeer; int32_t nReason; const char *pszDebug; - bool bEnableLinger; + int8_t bEnableLinger; }; struct ISteamNetworkingSockets_SteamNetworkingSockets006_CloseListenSocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; }; struct ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionUserData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hPeer; int64_t nUserData; }; @@ -38756,7 +38755,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionName_param struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionName_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hPeer; char *pszName; int32_t nMaxLen; @@ -38809,7 +38808,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnListen struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hConn; SteamNetConnectionInfo_t_144 *pInfo; }; @@ -38817,7 +38816,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionInfo_param struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetQuickConnectionStatus_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hConn; SteamNetworkingQuickConnectionStatus *pStats; }; @@ -38834,7 +38833,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetDetailedConnectionSt struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSocketAddress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; SteamNetworkingIPAddr *address; }; @@ -38842,10 +38841,10 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSocketAddress_ struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocketPair_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t *pOutConnection1; uint32_t *pOutConnection2; - bool bUseNetworkLoopback; + int8_t bUseNetworkLoopback; const SteamNetworkingIdentity_144 *pIdentity1; const SteamNetworkingIdentity_144 *pIdentity2; }; @@ -38853,7 +38852,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocketPair_params struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetIdentity_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; SteamNetworkingIdentity_144 *pIdentity; }; @@ -38873,7 +38872,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetAuthenticationStatus struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedRelayAuthTicket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const void *pvTicket; int32_t cbTicket; SteamDatagramRelayAuthTicket *pOutParsedTicket; @@ -38948,7 +38947,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2PCustomSignali struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2PCustomSignal_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const void *pMsg; int32_t cbMsg; w_ISteamNetworkingCustomSignalingRecvContext *pContext; @@ -39001,24 +39000,24 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_AcceptConnection_params struct ISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnection_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hPeer; int32_t nReason; const char *pszDebug; - bool bEnableLinger; + int8_t bEnableLinger; }; struct ISteamNetworkingSockets_SteamNetworkingSockets008_CloseListenSocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; }; struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionUserData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hPeer; int64_t nUserData; }; @@ -39040,7 +39039,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionName_param struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionName_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hPeer; char *pszName; int32_t nMaxLen; @@ -39084,7 +39083,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnConnec struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hConn; SteamNetConnectionInfo_t_144 *pInfo; }; @@ -39092,7 +39091,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionInfo_param struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetQuickConnectionStatus_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hConn; SteamNetworkingQuickConnectionStatus *pStats; }; @@ -39109,7 +39108,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetDetailedConnectionSt struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSocketAddress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; SteamNetworkingIPAddr *address; }; @@ -39117,10 +39116,10 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSocketAddress_ struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocketPair_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t *pOutConnection1; uint32_t *pOutConnection2; - bool bUseNetworkLoopback; + int8_t bUseNetworkLoopback; const SteamNetworkingIdentity_144 *pIdentity1; const SteamNetworkingIdentity_144 *pIdentity2; }; @@ -39128,7 +39127,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocketPair_params struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetIdentity_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; SteamNetworkingIdentity_144 *pIdentity; }; @@ -39154,14 +39153,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreatePollGroup_params struct ISteamNetworkingSockets_SteamNetworkingSockets008_DestroyPollGroup_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hPollGroup; }; struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionPollGroup_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hConn; uint32_t hPollGroup; }; @@ -39178,7 +39177,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnPollGr struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedRelayAuthTicket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const void *pvTicket; int32_t cbTicket; SteamDatagramRelayAuthTicket *pOutParsedTicket; @@ -39253,7 +39252,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2PCustomSignali struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2PCustomSignal_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const void *pMsg; int32_t cbMsg; w_ISteamNetworkingCustomSignalingRecvContext *pContext; @@ -39262,7 +39261,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2PCustomSignal struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetCertificateRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pcbBlob; void *pBlob; char (*errMsg)[1024]; @@ -39271,7 +39270,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetCertificateRequest_p struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetCertificate_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const void *pCertificate; int32_t cbCertificate; char (*errMsg)[1024]; @@ -39324,24 +39323,24 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_AcceptConnection_params struct ISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnection_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hPeer; int32_t nReason; const char *pszDebug; - bool bEnableLinger; + int8_t bEnableLinger; }; struct ISteamNetworkingSockets_SteamNetworkingSockets009_CloseListenSocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; }; struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionUserData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hPeer; int64_t nUserData; }; @@ -39363,7 +39362,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionName_param struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionName_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hPeer; char *pszName; int32_t nMaxLen; @@ -39407,7 +39406,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnConnec struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hConn; SteamNetConnectionInfo_t_144 *pInfo; }; @@ -39415,7 +39414,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionInfo_param struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetQuickConnectionStatus_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hConn; SteamNetworkingQuickConnectionStatus *pStats; }; @@ -39432,7 +39431,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetDetailedConnectionSt struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSocketAddress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; SteamNetworkingIPAddr *address; }; @@ -39440,10 +39439,10 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSocketAddress_ struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocketPair_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t *pOutConnection1; uint32_t *pOutConnection2; - bool bUseNetworkLoopback; + int8_t bUseNetworkLoopback; const SteamNetworkingIdentity_144 *pIdentity1; const SteamNetworkingIdentity_144 *pIdentity2; }; @@ -39451,7 +39450,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocketPair_params struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetIdentity_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; SteamNetworkingIdentity_144 *pIdentity; }; @@ -39477,14 +39476,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreatePollGroup_params struct ISteamNetworkingSockets_SteamNetworkingSockets009_DestroyPollGroup_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hPollGroup; }; struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionPollGroup_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hConn; uint32_t hPollGroup; }; @@ -39501,7 +39500,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnPollGr struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedRelayAuthTicket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const void *pvTicket; int32_t cbTicket; SteamDatagramRelayAuthTicket *pOutParsedTicket; @@ -39577,7 +39576,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2PCustomSignali struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2PCustomSignal_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const void *pMsg; int32_t cbMsg; void /*ISteamNetworkingSignalingRecvContext*/ *pContext; @@ -39586,7 +39585,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2PCustomSignal struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetCertificateRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pcbBlob; void *pBlob; char (*errMsg)[1024]; @@ -39595,7 +39594,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetCertificateRequest_p struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetCertificate_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const void *pCertificate; int32_t cbCertificate; char (*errMsg)[1024]; @@ -39653,24 +39652,24 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_AcceptConnection_params struct ISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnection_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hPeer; int32_t nReason; const char *pszDebug; - bool bEnableLinger; + int8_t bEnableLinger; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_CloseListenSocket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionUserData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hPeer; int64_t nUserData; }; @@ -39692,7 +39691,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionName_param struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionName_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hPeer; char *pszName; int32_t nMaxLen; @@ -39736,7 +39735,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnConnec struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hConn; SteamNetConnectionInfo_t_153a *pInfo; }; @@ -39763,7 +39762,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetDetailedConnectionSt struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSocketAddress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hSocket; SteamNetworkingIPAddr *address; }; @@ -39771,10 +39770,10 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSocketAddress_ struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateSocketPair_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t *pOutConnection1; uint32_t *pOutConnection2; - bool bUseNetworkLoopback; + int8_t bUseNetworkLoopback; const SteamNetworkingIdentity_144 *pIdentity1; const SteamNetworkingIdentity_144 *pIdentity2; }; @@ -39792,7 +39791,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConfigureConnectionLane struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetIdentity_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; SteamNetworkingIdentity_144 *pIdentity; }; @@ -39818,14 +39817,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreatePollGroup_params struct ISteamNetworkingSockets_SteamNetworkingSockets012_DestroyPollGroup_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hPollGroup; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionPollGroup_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t hConn; uint32_t hPollGroup; }; @@ -39842,7 +39841,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnPollGr struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedRelayAuthTicket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const void *pvTicket; int32_t cbTicket; SteamDatagramRelayAuthTicket *pOutParsedTicket; @@ -39918,7 +39917,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2PCustomSignali struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2PCustomSignal_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const void *pMsg; int32_t cbMsg; void /*ISteamNetworkingSignalingRecvContext*/ *pContext; @@ -39927,7 +39926,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2PCustomSignal struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetCertificateRequest_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t *pcbBlob; void *pBlob; char (*errMsg)[1024]; @@ -39936,7 +39935,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetCertificateRequest_p struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetCertificate_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const void *pCertificate; int32_t cbCertificate; char (*errMsg)[1024]; @@ -39956,7 +39955,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_RunCallbacks_params struct ISteamNetworkingSockets_SteamNetworkingSockets012_BeginAsyncRequestFakeIP_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t nNumPorts; }; @@ -40147,7 +40146,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLocationToString struct ISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocationString_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pszString; SteamNetworkPingLocation_t *result; }; @@ -40155,14 +40154,14 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocationString_par struct ISteamNetworkingUtils_SteamNetworkingUtils001_CheckPingDataUpToDate_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; float flMaxAgeSeconds; }; struct ISteamNetworkingUtils_SteamNetworkingUtils001_IsPingMeasurementInProgress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetPingToDataCenter_params @@ -40210,7 +40209,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputFunction_para struct ISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eValue; uint32_t eScopeType; int32_t scopeObj; @@ -40233,7 +40232,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValue_params struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eValue; const char **pOutName; uint32_t *pOutDataType; @@ -40253,13 +40252,13 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ToStr const SteamNetworkingIPAddr *addr; char *buf; uint32_t cbBuf; - bool bWithPort; + int8_t bWithPort; }; struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ParseString_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; SteamNetworkingIPAddr *pAddr; const char *pszStr; }; @@ -40275,7 +40274,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ToS struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ParseString_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; SteamNetworkingIdentity_144 *pIdentity; const char *pszStr; }; @@ -40320,7 +40319,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLocationToString struct ISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocationString_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pszString; SteamNetworkPingLocation_t *result; }; @@ -40328,7 +40327,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocationString_par struct ISteamNetworkingUtils_SteamNetworkingUtils002_CheckPingDataUpToDate_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; float flMaxAgeSeconds; }; @@ -40377,7 +40376,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils002_SetDebugOutputFunction_para struct ISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValue_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eValue; uint32_t eScopeType; int32_t scopeObj; @@ -40400,7 +40399,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValue_params struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValueInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eValue; const char **pOutName; uint32_t *pOutDataType; @@ -40420,13 +40419,13 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ToStr const SteamNetworkingIPAddr *addr; char *buf; uint32_t cbBuf; - bool bWithPort; + int8_t bWithPort; }; struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ParseString_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; SteamNetworkingIPAddr *pAddr; const char *pszStr; }; @@ -40442,7 +40441,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ToS struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ParseString_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; SteamNetworkingIdentity_144 *pIdentity; const char *pszStr; }; @@ -40494,7 +40493,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLocationToString struct ISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocationString_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pszString; SteamNetworkPingLocation_t *result; }; @@ -40502,7 +40501,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocationString_par struct ISteamNetworkingUtils_SteamNetworkingUtils003_CheckPingDataUpToDate_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; float flMaxAgeSeconds; }; @@ -40551,7 +40550,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputFunction_para struct ISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eValue; uint32_t eScopeType; int32_t scopeObj; @@ -40574,7 +40573,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValue_params struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eValue; const char **pOutName; uint32_t *pOutDataType; @@ -40594,13 +40593,13 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ToStr const SteamNetworkingIPAddr *addr; char *buf; uint32_t cbBuf; - bool bWithPort; + int8_t bWithPort; }; struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ParseString_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; SteamNetworkingIPAddr *pAddr; const char *pszStr; }; @@ -40616,7 +40615,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ToS struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ParseString_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; SteamNetworkingIdentity_144 *pIdentity; const char *pszStr; }; @@ -40668,7 +40667,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLocationToString struct ISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocationString_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pszString; SteamNetworkPingLocation_t *result; }; @@ -40676,7 +40675,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocationString_par struct ISteamNetworkingUtils_SteamNetworkingUtils004_CheckPingDataUpToDate_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; float flMaxAgeSeconds; }; @@ -40740,7 +40739,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetRealIdentityForFakeIP_pa struct ISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eValue; uint32_t eScopeType; int32_t scopeObj; @@ -40774,7 +40773,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_IterateGenericEditableConfi struct u_steam_iface *linux_side; uint32_t _ret; uint32_t eCurrent; - bool bEnumerateDevVars; + int8_t bEnumerateDevVars; }; struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToString_params @@ -40783,13 +40782,13 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToStr const SteamNetworkingIPAddr *addr; char *buf; uint32_t cbBuf; - bool bWithPort; + int8_t bWithPort; }; struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ParseString_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; SteamNetworkingIPAddr *pAddr; const char *pszStr; }; @@ -40812,7 +40811,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ToS struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ParseString_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; SteamNetworkingIdentity_144 *pIdentity; const char *pszStr; }; @@ -40833,7 +40832,7 @@ struct ISteamParties_SteamParties002_GetBeaconByIndex_params struct ISteamParties_SteamParties002_GetBeaconDetails_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t ulBeaconID; CSteamID *pSteamIDBeaconOwner; w_SteamPartyBeaconLocation_t *pLocation; @@ -40851,14 +40850,14 @@ struct ISteamParties_SteamParties002_JoinParty_params struct ISteamParties_SteamParties002_GetNumAvailableBeaconLocations_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t *puNumLocations; }; struct ISteamParties_SteamParties002_GetAvailableBeaconLocations_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; w_SteamPartyBeaconLocation_t *pLocationList; uint32_t uMaxNumLocations; }; @@ -40898,14 +40897,14 @@ struct ISteamParties_SteamParties002_ChangeNumOpenSlots_params struct ISteamParties_SteamParties002_DestroyBeacon_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t ulBeacon; }; struct ISteamParties_SteamParties002_GetBeaconLocationData_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; w_SteamPartyBeaconLocation_t BeaconLocation; uint32_t eData; char *pchDataStringOut; @@ -40932,7 +40931,7 @@ struct ISteamUser_SteamUser004_LogOff_params struct ISteamUser_SteamUser004_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser004_GetLogonState_params @@ -40944,7 +40943,7 @@ struct ISteamUser_SteamUser004_GetLogonState_params struct ISteamUser_SteamUser004_BConnected_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser004_GetSteamID_params @@ -40956,14 +40955,14 @@ struct ISteamUser_SteamUser004_GetSteamID_params struct ISteamUser_SteamUser004_IsVACBanned_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t nGameID; }; struct ISteamUser_SteamUser004_RequireShowVACBannedMessage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t nGameID; }; @@ -41011,7 +41010,7 @@ struct ISteamUser_SteamUser004_AddServerNetAddress_params struct ISteamUser_SteamUser004_SetEmail_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchEmail; }; @@ -41026,7 +41025,7 @@ struct ISteamUser_SteamUser004_GetSteamGameConnectToken_params struct ISteamUser_SteamUser004_SetRegistryString_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; const char *pchValue; @@ -41035,7 +41034,7 @@ struct ISteamUser_SteamUser004_SetRegistryString_params struct ISteamUser_SteamUser004_GetRegistryString_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; char *pchValue; @@ -41045,7 +41044,7 @@ struct ISteamUser_SteamUser004_GetRegistryString_params struct ISteamUser_SteamUser004_SetRegistryInt_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; int32_t iValue; @@ -41054,7 +41053,7 @@ struct ISteamUser_SteamUser004_SetRegistryInt_params struct ISteamUser_SteamUser004_GetRegistryInt_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; int32_t *piValue; @@ -41070,7 +41069,7 @@ struct ISteamUser_SteamUser004_InitiateGameConnection_params int32_t nGameAppID; uint32_t unIPServer; uint16_t usPortServer; - bool bSecure; + int8_t bSecure; }; struct ISteamUser_SteamUser004_TerminateGameConnection_params @@ -41088,7 +41087,7 @@ struct ISteamUser_SteamUser004_SetSelfAsPrimaryChatDestination_params struct ISteamUser_SteamUser004_IsPrimaryChatDestination_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser004_RequestLegacyCDKey_params @@ -41117,7 +41116,7 @@ struct ISteamUser_SteamUser005_LogOff_params struct ISteamUser_SteamUser005_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser005_GetLogonState_params @@ -41129,7 +41128,7 @@ struct ISteamUser_SteamUser005_GetLogonState_params struct ISteamUser_SteamUser005_BConnected_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser005_GetSteamID_params @@ -41141,14 +41140,14 @@ struct ISteamUser_SteamUser005_GetSteamID_params struct ISteamUser_SteamUser005_IsVACBanned_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t nGameID; }; struct ISteamUser_SteamUser005_RequireShowVACBannedMessage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t nAppID; }; @@ -41175,14 +41174,14 @@ struct ISteamUser_SteamUser005_AddServerNetAddress_params struct ISteamUser_SteamUser005_SetEmail_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchEmail; }; struct ISteamUser_SteamUser005_SetRegistryString_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; const char *pchValue; @@ -41191,7 +41190,7 @@ struct ISteamUser_SteamUser005_SetRegistryString_params struct ISteamUser_SteamUser005_GetRegistryString_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; char *pchValue; @@ -41201,7 +41200,7 @@ struct ISteamUser_SteamUser005_GetRegistryString_params struct ISteamUser_SteamUser005_SetRegistryInt_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; int32_t iValue; @@ -41210,7 +41209,7 @@ struct ISteamUser_SteamUser005_SetRegistryInt_params struct ISteamUser_SteamUser005_GetRegistryInt_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; int32_t *piValue; @@ -41226,7 +41225,7 @@ struct ISteamUser_SteamUser005_InitiateGameConnection_params CGameID gameID; uint32_t unIPServer; uint16_t usPortServer; - bool bSecure; + int8_t bSecure; }; struct ISteamUser_SteamUser005_TerminateGameConnection_params @@ -41244,7 +41243,7 @@ struct ISteamUser_SteamUser005_SetSelfAsPrimaryChatDestination_params struct ISteamUser_SteamUser005_IsPrimaryChatDestination_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser005_RequestLegacyCDKey_params @@ -41256,32 +41255,32 @@ struct ISteamUser_SteamUser005_RequestLegacyCDKey_params struct ISteamUser_SteamUser005_SendGuestPassByEmail_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchEmailAccount; uint64_t gidGuestPassID; - bool bResending; + int8_t bResending; }; struct ISteamUser_SteamUser005_SendGuestPassByAccountID_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t uAccountID; uint64_t gidGuestPassID; - bool bResending; + int8_t bResending; }; struct ISteamUser_SteamUser005_AckGuestPass_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchGuestPassCode; }; struct ISteamUser_SteamUser005_RedeemGuestPass_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchGuestPassCode; }; @@ -41306,7 +41305,7 @@ struct ISteamUser_SteamUser005_GetGuestPassLastUpdateTime_params struct ISteamUser_SteamUser005_GetGuestPassToGiveInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t nPassIndex; uint64_t *pgidGuestPassID; uint32_t *pnPackageID; @@ -41321,7 +41320,7 @@ struct ISteamUser_SteamUser005_GetGuestPassToGiveInfo_params struct ISteamUser_SteamUser005_GetGuestPassToRedeemInfo_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t nPassIndex; uint64_t *pgidGuestPassID; uint32_t *pnPackageID; @@ -41334,7 +41333,7 @@ struct ISteamUser_SteamUser005_GetGuestPassToRedeemInfo_params struct ISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t nPassIndex; char *pchSenderAddress; int32_t cSenderAddressSize; @@ -41343,7 +41342,7 @@ struct ISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress_params struct ISteamUser_SteamUser005_GetGuestPassToRedeemSenderName_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t nPassIndex; char *pchSenderName; int32_t cSenderNameSize; @@ -41358,7 +41357,7 @@ struct ISteamUser_SteamUser005_AcknowledgeMessageByGID_params struct ISteamUser_SteamUser005_SetLanguage_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; const char *pchLanguage; }; @@ -41408,7 +41407,7 @@ struct ISteamUser_SteamUser006_LogOff_params struct ISteamUser_SteamUser006_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser006_GetSteamID_params @@ -41420,7 +41419,7 @@ struct ISteamUser_SteamUser006_GetSteamID_params struct ISteamUser_SteamUser006_SetRegistryString_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; const char *pchValue; @@ -41429,7 +41428,7 @@ struct ISteamUser_SteamUser006_SetRegistryString_params struct ISteamUser_SteamUser006_GetRegistryString_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; char *pchValue; @@ -41439,7 +41438,7 @@ struct ISteamUser_SteamUser006_GetRegistryString_params struct ISteamUser_SteamUser006_SetRegistryInt_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; int32_t iValue; @@ -41448,7 +41447,7 @@ struct ISteamUser_SteamUser006_SetRegistryInt_params struct ISteamUser_SteamUser006_GetRegistryInt_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; int32_t *piValue; @@ -41464,7 +41463,7 @@ struct ISteamUser_SteamUser006_InitiateGameConnection_params CGameID gameID; uint32_t unIPServer; uint16_t usPortServer; - bool bSecure; + int8_t bSecure; }; struct ISteamUser_SteamUser006_TerminateGameConnection_params @@ -41502,7 +41501,7 @@ struct ISteamUser_SteamUser007_LogOff_params struct ISteamUser_SteamUser007_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser007_GetSteamID_params @@ -41514,7 +41513,7 @@ struct ISteamUser_SteamUser007_GetSteamID_params struct ISteamUser_SteamUser007_SetRegistryString_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; const char *pchValue; @@ -41523,7 +41522,7 @@ struct ISteamUser_SteamUser007_SetRegistryString_params struct ISteamUser_SteamUser007_GetRegistryString_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; char *pchValue; @@ -41533,7 +41532,7 @@ struct ISteamUser_SteamUser007_GetRegistryString_params struct ISteamUser_SteamUser007_SetRegistryInt_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; int32_t iValue; @@ -41542,7 +41541,7 @@ struct ISteamUser_SteamUser007_SetRegistryInt_params struct ISteamUser_SteamUser007_GetRegistryInt_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; int32_t *piValue; @@ -41558,7 +41557,7 @@ struct ISteamUser_SteamUser007_InitiateGameConnection_params CGameID gameID; uint32_t unIPServer; uint16_t usPortServer; - bool bSecure; + int8_t bSecure; void *pvSteam2GetEncryptionKey; int32_t cbSteam2GetEncryptionKey; }; @@ -41592,7 +41591,7 @@ struct ISteamUser_SteamUser008_GetHSteamUser_params struct ISteamUser_SteamUser008_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser008_GetSteamID_params @@ -41611,7 +41610,7 @@ struct ISteamUser_SteamUser008_InitiateGameConnection_params CGameID gameID; uint32_t unIPServer; uint16_t usPortServer; - bool bSecure; + int8_t bSecure; void *pvSteam2GetEncryptionKey; int32_t cbSteam2GetEncryptionKey; }; @@ -41645,7 +41644,7 @@ struct ISteamUser_SteamUser009_GetHSteamUser_params struct ISteamUser_SteamUser009_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser009_GetSteamID_params @@ -41664,7 +41663,7 @@ struct ISteamUser_SteamUser009_InitiateGameConnection_params CGameID gameID; uint32_t unIPServer; uint16_t usPortServer; - bool bSecure; + int8_t bSecure; }; struct ISteamUser_SteamUser009_TerminateGameConnection_params @@ -41696,7 +41695,7 @@ struct ISteamUser_SteamUser010_GetHSteamUser_params struct ISteamUser_SteamUser010_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser010_GetSteamID_params @@ -41714,7 +41713,7 @@ struct ISteamUser_SteamUser010_InitiateGameConnection_params CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; - bool bSecure; + int8_t bSecure; }; struct ISteamUser_SteamUser010_TerminateGameConnection_params @@ -41741,7 +41740,7 @@ struct ISteamUser_SteamUser011_GetHSteamUser_params struct ISteamUser_SteamUser011_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser011_GetSteamID_params @@ -41759,7 +41758,7 @@ struct ISteamUser_SteamUser011_InitiateGameConnection_params CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; - bool bSecure; + int8_t bSecure; }; struct ISteamUser_SteamUser011_TerminateGameConnection_params @@ -41780,7 +41779,7 @@ struct ISteamUser_SteamUser011_TrackAppUsageEvent_params struct ISteamUser_SteamUser011_GetUserDataFolder_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; char *pchBuffer; int32_t cubBuffer; }; @@ -41824,7 +41823,7 @@ struct ISteamUser_SteamUser012_GetHSteamUser_params struct ISteamUser_SteamUser012_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser012_GetSteamID_params @@ -41842,7 +41841,7 @@ struct ISteamUser_SteamUser012_InitiateGameConnection_params CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; - bool bSecure; + int8_t bSecure; }; struct ISteamUser_SteamUser012_TerminateGameConnection_params @@ -41863,7 +41862,7 @@ struct ISteamUser_SteamUser012_TrackAppUsageEvent_params struct ISteamUser_SteamUser012_GetUserDataFolder_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; char *pchBuffer; int32_t cubBuffer; }; @@ -41945,7 +41944,7 @@ struct ISteamUser_SteamUser013_GetHSteamUser_params struct ISteamUser_SteamUser013_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser013_GetSteamID_params @@ -41963,7 +41962,7 @@ struct ISteamUser_SteamUser013_InitiateGameConnection_params CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; - bool bSecure; + int8_t bSecure; }; struct ISteamUser_SteamUser013_TerminateGameConnection_params @@ -41984,7 +41983,7 @@ struct ISteamUser_SteamUser013_TrackAppUsageEvent_params struct ISteamUser_SteamUser013_GetUserDataFolder_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; char *pchBuffer; int32_t cubBuffer; }; @@ -42011,11 +42010,11 @@ struct ISteamUser_SteamUser013_GetVoice_params { struct u_steam_iface *linux_side; uint32_t _ret; - bool bWantCompressed; + int8_t bWantCompressed; void *pDestBuffer; uint32_t cbDestBufferSize; uint32_t *nBytesWritten; - bool bWantUncompressed; + int8_t bWantUncompressed; void *pUncompressedDestBuffer; uint32_t cbUncompressedDestBufferSize; uint32_t *nUncompressBytesWritten; @@ -42079,7 +42078,7 @@ struct ISteamUser_SteamUser014_GetHSteamUser_params struct ISteamUser_SteamUser014_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser014_GetSteamID_params @@ -42097,7 +42096,7 @@ struct ISteamUser_SteamUser014_InitiateGameConnection_params CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; - bool bSecure; + int8_t bSecure; }; struct ISteamUser_SteamUser014_TerminateGameConnection_params @@ -42118,7 +42117,7 @@ struct ISteamUser_SteamUser014_TrackAppUsageEvent_params struct ISteamUser_SteamUser014_GetUserDataFolder_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; char *pchBuffer; int32_t cubBuffer; }; @@ -42145,11 +42144,11 @@ struct ISteamUser_SteamUser014_GetVoice_params { struct u_steam_iface *linux_side; uint32_t _ret; - bool bWantCompressed; + int8_t bWantCompressed; void *pDestBuffer; uint32_t cbDestBufferSize; uint32_t *nBytesWritten; - bool bWantUncompressed; + int8_t bWantUncompressed; void *pUncompressedDestBuffer; uint32_t cbUncompressedDestBufferSize; uint32_t *nUncompressBytesWritten; @@ -42207,7 +42206,7 @@ struct ISteamUser_SteamUser014_UserHasLicenseForApp_params struct ISteamUser_SteamUser014_BIsBehindNAT_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser014_AdvertiseGame_params @@ -42229,7 +42228,7 @@ struct ISteamUser_SteamUser014_RequestEncryptedAppTicket_params struct ISteamUser_SteamUser014_GetEncryptedAppTicket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; void *pTicket; int32_t cbMaxTicket; uint32_t *pcbTicket; @@ -42244,7 +42243,7 @@ struct ISteamUser_SteamUser015_GetHSteamUser_params struct ISteamUser_SteamUser015_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser015_GetSteamID_params @@ -42262,7 +42261,7 @@ struct ISteamUser_SteamUser015_InitiateGameConnection_params CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; - bool bSecure; + int8_t bSecure; }; struct ISteamUser_SteamUser015_TerminateGameConnection_params @@ -42283,7 +42282,7 @@ struct ISteamUser_SteamUser015_TrackAppUsageEvent_params struct ISteamUser_SteamUser015_GetUserDataFolder_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; char *pchBuffer; int32_t cubBuffer; }; @@ -42310,11 +42309,11 @@ struct ISteamUser_SteamUser015_GetVoice_params { struct u_steam_iface *linux_side; uint32_t _ret; - bool bWantCompressed; + int8_t bWantCompressed; void *pDestBuffer; uint32_t cbDestBufferSize; uint32_t *nBytesWritten; - bool bWantUncompressed; + int8_t bWantUncompressed; void *pUncompressedDestBuffer; uint32_t cbUncompressedDestBufferSize; uint32_t *nUncompressBytesWritten; @@ -42379,7 +42378,7 @@ struct ISteamUser_SteamUser015_UserHasLicenseForApp_params struct ISteamUser_SteamUser015_BIsBehindNAT_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser015_AdvertiseGame_params @@ -42401,7 +42400,7 @@ struct ISteamUser_SteamUser015_RequestEncryptedAppTicket_params struct ISteamUser_SteamUser015_GetEncryptedAppTicket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; void *pTicket; int32_t cbMaxTicket; uint32_t *pcbTicket; @@ -42416,7 +42415,7 @@ struct ISteamUser_SteamUser016_GetHSteamUser_params struct ISteamUser_SteamUser016_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser016_GetSteamID_params @@ -42434,7 +42433,7 @@ struct ISteamUser_SteamUser016_InitiateGameConnection_params CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; - bool bSecure; + int8_t bSecure; }; struct ISteamUser_SteamUser016_TerminateGameConnection_params @@ -42455,7 +42454,7 @@ struct ISteamUser_SteamUser016_TrackAppUsageEvent_params struct ISteamUser_SteamUser016_GetUserDataFolder_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; char *pchBuffer; int32_t cubBuffer; }; @@ -42483,11 +42482,11 @@ struct ISteamUser_SteamUser016_GetVoice_params { struct u_steam_iface *linux_side; uint32_t _ret; - bool bWantCompressed; + int8_t bWantCompressed; void *pDestBuffer; uint32_t cbDestBufferSize; uint32_t *nBytesWritten; - bool bWantUncompressed; + int8_t bWantUncompressed; void *pUncompressedDestBuffer; uint32_t cbUncompressedDestBufferSize; uint32_t *nUncompressBytesWritten; @@ -42553,7 +42552,7 @@ struct ISteamUser_SteamUser016_UserHasLicenseForApp_params struct ISteamUser_SteamUser016_BIsBehindNAT_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser016_AdvertiseGame_params @@ -42575,7 +42574,7 @@ struct ISteamUser_SteamUser016_RequestEncryptedAppTicket_params struct ISteamUser_SteamUser016_GetEncryptedAppTicket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; void *pTicket; int32_t cbMaxTicket; uint32_t *pcbTicket; @@ -42590,7 +42589,7 @@ struct ISteamUser_SteamUser017_GetHSteamUser_params struct ISteamUser_SteamUser017_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser017_GetSteamID_params @@ -42608,7 +42607,7 @@ struct ISteamUser_SteamUser017_InitiateGameConnection_params CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; - bool bSecure; + int8_t bSecure; }; struct ISteamUser_SteamUser017_TerminateGameConnection_params @@ -42629,7 +42628,7 @@ struct ISteamUser_SteamUser017_TrackAppUsageEvent_params struct ISteamUser_SteamUser017_GetUserDataFolder_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; char *pchBuffer; int32_t cubBuffer; }; @@ -42657,11 +42656,11 @@ struct ISteamUser_SteamUser017_GetVoice_params { struct u_steam_iface *linux_side; uint32_t _ret; - bool bWantCompressed; + int8_t bWantCompressed; void *pDestBuffer; uint32_t cbDestBufferSize; uint32_t *nBytesWritten; - bool bWantUncompressed; + int8_t bWantUncompressed; void *pUncompressedDestBuffer; uint32_t cbUncompressedDestBufferSize; uint32_t *nUncompressBytesWritten; @@ -42727,7 +42726,7 @@ struct ISteamUser_SteamUser017_UserHasLicenseForApp_params struct ISteamUser_SteamUser017_BIsBehindNAT_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser017_AdvertiseGame_params @@ -42749,7 +42748,7 @@ struct ISteamUser_SteamUser017_RequestEncryptedAppTicket_params struct ISteamUser_SteamUser017_GetEncryptedAppTicket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; void *pTicket; int32_t cbMaxTicket; uint32_t *pcbTicket; @@ -42760,7 +42759,7 @@ struct ISteamUser_SteamUser017_GetGameBadgeLevel_params struct u_steam_iface *linux_side; int32_t _ret; int32_t nSeries; - bool bFoil; + int8_t bFoil; }; struct ISteamUser_SteamUser017_GetPlayerSteamLevel_params @@ -42778,7 +42777,7 @@ struct ISteamUser_SteamUser018_GetHSteamUser_params struct ISteamUser_SteamUser018_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser018_GetSteamID_params @@ -42796,7 +42795,7 @@ struct ISteamUser_SteamUser018_InitiateGameConnection_params CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; - bool bSecure; + int8_t bSecure; }; struct ISteamUser_SteamUser018_TerminateGameConnection_params @@ -42817,7 +42816,7 @@ struct ISteamUser_SteamUser018_TrackAppUsageEvent_params struct ISteamUser_SteamUser018_GetUserDataFolder_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; char *pchBuffer; int32_t cubBuffer; }; @@ -42845,11 +42844,11 @@ struct ISteamUser_SteamUser018_GetVoice_params { struct u_steam_iface *linux_side; uint32_t _ret; - bool bWantCompressed; + int8_t bWantCompressed; void *pDestBuffer; uint32_t cbDestBufferSize; uint32_t *nBytesWritten; - bool bWantUncompressed; + int8_t bWantUncompressed; void *pUncompressedDestBuffer; uint32_t cbUncompressedDestBufferSize; uint32_t *nUncompressBytesWritten; @@ -42915,7 +42914,7 @@ struct ISteamUser_SteamUser018_UserHasLicenseForApp_params struct ISteamUser_SteamUser018_BIsBehindNAT_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser018_AdvertiseGame_params @@ -42937,7 +42936,7 @@ struct ISteamUser_SteamUser018_RequestEncryptedAppTicket_params struct ISteamUser_SteamUser018_GetEncryptedAppTicket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; void *pTicket; int32_t cbMaxTicket; uint32_t *pcbTicket; @@ -42948,7 +42947,7 @@ struct ISteamUser_SteamUser018_GetGameBadgeLevel_params struct u_steam_iface *linux_side; int32_t _ret; int32_t nSeries; - bool bFoil; + int8_t bFoil; }; struct ISteamUser_SteamUser018_GetPlayerSteamLevel_params @@ -42973,7 +42972,7 @@ struct ISteamUser_SteamUser019_GetHSteamUser_params struct ISteamUser_SteamUser019_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser019_GetSteamID_params @@ -42991,7 +42990,7 @@ struct ISteamUser_SteamUser019_InitiateGameConnection_params CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; - bool bSecure; + int8_t bSecure; }; struct ISteamUser_SteamUser019_TerminateGameConnection_params @@ -43012,7 +43011,7 @@ struct ISteamUser_SteamUser019_TrackAppUsageEvent_params struct ISteamUser_SteamUser019_GetUserDataFolder_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; char *pchBuffer; int32_t cubBuffer; }; @@ -43040,11 +43039,11 @@ struct ISteamUser_SteamUser019_GetVoice_params { struct u_steam_iface *linux_side; uint32_t _ret; - bool bWantCompressed; + int8_t bWantCompressed; void *pDestBuffer; uint32_t cbDestBufferSize; uint32_t *nBytesWritten; - bool bWantUncompressed_Deprecated; + int8_t bWantUncompressed_Deprecated; void *pUncompressedDestBuffer_Deprecated; uint32_t cbUncompressedDestBufferSize_Deprecated; uint32_t *nUncompressBytesWritten_Deprecated; @@ -43110,7 +43109,7 @@ struct ISteamUser_SteamUser019_UserHasLicenseForApp_params struct ISteamUser_SteamUser019_BIsBehindNAT_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser019_AdvertiseGame_params @@ -43132,7 +43131,7 @@ struct ISteamUser_SteamUser019_RequestEncryptedAppTicket_params struct ISteamUser_SteamUser019_GetEncryptedAppTicket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; void *pTicket; int32_t cbMaxTicket; uint32_t *pcbTicket; @@ -43143,7 +43142,7 @@ struct ISteamUser_SteamUser019_GetGameBadgeLevel_params struct u_steam_iface *linux_side; int32_t _ret; int32_t nSeries; - bool bFoil; + int8_t bFoil; }; struct ISteamUser_SteamUser019_GetPlayerSteamLevel_params @@ -43162,25 +43161,25 @@ struct ISteamUser_SteamUser019_RequestStoreAuthURL_params struct ISteamUser_SteamUser019_BIsPhoneVerified_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser019_BIsTwoFactorEnabled_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser019_BIsPhoneIdentifying_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser019_BIsPhoneRequiringVerification_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser020_GetHSteamUser_params @@ -43192,7 +43191,7 @@ struct ISteamUser_SteamUser020_GetHSteamUser_params struct ISteamUser_SteamUser020_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser020_GetSteamID_params @@ -43210,7 +43209,7 @@ struct ISteamUser_SteamUser020_InitiateGameConnection_params CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; - bool bSecure; + int8_t bSecure; }; struct ISteamUser_SteamUser020_TerminateGameConnection_params @@ -43231,7 +43230,7 @@ struct ISteamUser_SteamUser020_TrackAppUsageEvent_params struct ISteamUser_SteamUser020_GetUserDataFolder_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; char *pchBuffer; int32_t cubBuffer; }; @@ -43259,11 +43258,11 @@ struct ISteamUser_SteamUser020_GetVoice_params { struct u_steam_iface *linux_side; uint32_t _ret; - bool bWantCompressed; + int8_t bWantCompressed; void *pDestBuffer; uint32_t cbDestBufferSize; uint32_t *nBytesWritten; - bool bWantUncompressed_Deprecated; + int8_t bWantUncompressed_Deprecated; void *pUncompressedDestBuffer_Deprecated; uint32_t cbUncompressedDestBufferSize_Deprecated; uint32_t *nUncompressBytesWritten_Deprecated; @@ -43329,7 +43328,7 @@ struct ISteamUser_SteamUser020_UserHasLicenseForApp_params struct ISteamUser_SteamUser020_BIsBehindNAT_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser020_AdvertiseGame_params @@ -43351,7 +43350,7 @@ struct ISteamUser_SteamUser020_RequestEncryptedAppTicket_params struct ISteamUser_SteamUser020_GetEncryptedAppTicket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; void *pTicket; int32_t cbMaxTicket; uint32_t *pcbTicket; @@ -43362,7 +43361,7 @@ struct ISteamUser_SteamUser020_GetGameBadgeLevel_params struct u_steam_iface *linux_side; int32_t _ret; int32_t nSeries; - bool bFoil; + int8_t bFoil; }; struct ISteamUser_SteamUser020_GetPlayerSteamLevel_params @@ -43381,25 +43380,25 @@ struct ISteamUser_SteamUser020_RequestStoreAuthURL_params struct ISteamUser_SteamUser020_BIsPhoneVerified_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser020_BIsTwoFactorEnabled_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser020_BIsPhoneIdentifying_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser020_BIsPhoneRequiringVerification_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser020_GetMarketEligibility_params @@ -43423,7 +43422,7 @@ struct ISteamUser_SteamUser021_GetHSteamUser_params struct ISteamUser_SteamUser021_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser021_GetSteamID_params @@ -43441,7 +43440,7 @@ struct ISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED_params CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; - bool bSecure; + int8_t bSecure; }; struct ISteamUser_SteamUser021_TerminateGameConnection_DEPRECATED_params @@ -43462,7 +43461,7 @@ struct ISteamUser_SteamUser021_TrackAppUsageEvent_params struct ISteamUser_SteamUser021_GetUserDataFolder_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; char *pchBuffer; int32_t cubBuffer; }; @@ -43490,11 +43489,11 @@ struct ISteamUser_SteamUser021_GetVoice_params { struct u_steam_iface *linux_side; uint32_t _ret; - bool bWantCompressed; + int8_t bWantCompressed; void *pDestBuffer; uint32_t cbDestBufferSize; uint32_t *nBytesWritten; - bool bWantUncompressed_Deprecated; + int8_t bWantUncompressed_Deprecated; void *pUncompressedDestBuffer_Deprecated; uint32_t cbUncompressedDestBufferSize_Deprecated; uint32_t *nUncompressBytesWritten_Deprecated; @@ -43560,7 +43559,7 @@ struct ISteamUser_SteamUser021_UserHasLicenseForApp_params struct ISteamUser_SteamUser021_BIsBehindNAT_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser021_AdvertiseGame_params @@ -43582,7 +43581,7 @@ struct ISteamUser_SteamUser021_RequestEncryptedAppTicket_params struct ISteamUser_SteamUser021_GetEncryptedAppTicket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; void *pTicket; int32_t cbMaxTicket; uint32_t *pcbTicket; @@ -43593,7 +43592,7 @@ struct ISteamUser_SteamUser021_GetGameBadgeLevel_params struct u_steam_iface *linux_side; int32_t _ret; int32_t nSeries; - bool bFoil; + int8_t bFoil; }; struct ISteamUser_SteamUser021_GetPlayerSteamLevel_params @@ -43612,25 +43611,25 @@ struct ISteamUser_SteamUser021_RequestStoreAuthURL_params struct ISteamUser_SteamUser021_BIsPhoneVerified_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser021_BIsTwoFactorEnabled_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser021_BIsPhoneIdentifying_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser021_BIsPhoneRequiringVerification_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser021_GetMarketEligibility_params @@ -43648,7 +43647,7 @@ struct ISteamUser_SteamUser021_GetDurationControl_params struct ISteamUser_SteamUser021_BSetDurationControlOnlineState_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eNewState; }; @@ -43661,7 +43660,7 @@ struct ISteamUser_SteamUser022_GetHSteamUser_params struct ISteamUser_SteamUser022_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser022_GetSteamID_params @@ -43679,7 +43678,7 @@ struct ISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED_params CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; - bool bSecure; + int8_t bSecure; }; struct ISteamUser_SteamUser022_TerminateGameConnection_DEPRECATED_params @@ -43700,7 +43699,7 @@ struct ISteamUser_SteamUser022_TrackAppUsageEvent_params struct ISteamUser_SteamUser022_GetUserDataFolder_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; char *pchBuffer; int32_t cubBuffer; }; @@ -43728,11 +43727,11 @@ struct ISteamUser_SteamUser022_GetVoice_params { struct u_steam_iface *linux_side; uint32_t _ret; - bool bWantCompressed; + int8_t bWantCompressed; void *pDestBuffer; uint32_t cbDestBufferSize; uint32_t *nBytesWritten; - bool bWantUncompressed_Deprecated; + int8_t bWantUncompressed_Deprecated; void *pUncompressedDestBuffer_Deprecated; uint32_t cbUncompressedDestBufferSize_Deprecated; uint32_t *nUncompressBytesWritten_Deprecated; @@ -43799,7 +43798,7 @@ struct ISteamUser_SteamUser022_UserHasLicenseForApp_params struct ISteamUser_SteamUser022_BIsBehindNAT_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser022_AdvertiseGame_params @@ -43821,7 +43820,7 @@ struct ISteamUser_SteamUser022_RequestEncryptedAppTicket_params struct ISteamUser_SteamUser022_GetEncryptedAppTicket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; void *pTicket; int32_t cbMaxTicket; uint32_t *pcbTicket; @@ -43832,7 +43831,7 @@ struct ISteamUser_SteamUser022_GetGameBadgeLevel_params struct u_steam_iface *linux_side; int32_t _ret; int32_t nSeries; - bool bFoil; + int8_t bFoil; }; struct ISteamUser_SteamUser022_GetPlayerSteamLevel_params @@ -43851,25 +43850,25 @@ struct ISteamUser_SteamUser022_RequestStoreAuthURL_params struct ISteamUser_SteamUser022_BIsPhoneVerified_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser022_BIsTwoFactorEnabled_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser022_BIsPhoneIdentifying_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser022_BIsPhoneRequiringVerification_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser022_GetMarketEligibility_params @@ -43887,7 +43886,7 @@ struct ISteamUser_SteamUser022_GetDurationControl_params struct ISteamUser_SteamUser022_BSetDurationControlOnlineState_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eNewState; }; @@ -43900,7 +43899,7 @@ struct ISteamUser_SteamUser023_GetHSteamUser_params struct ISteamUser_SteamUser023_BLoggedOn_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser023_GetSteamID_params @@ -43918,7 +43917,7 @@ struct ISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED_params CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; - bool bSecure; + int8_t bSecure; }; struct ISteamUser_SteamUser023_TerminateGameConnection_DEPRECATED_params @@ -43939,7 +43938,7 @@ struct ISteamUser_SteamUser023_TrackAppUsageEvent_params struct ISteamUser_SteamUser023_GetUserDataFolder_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; char *pchBuffer; int32_t cubBuffer; }; @@ -43967,11 +43966,11 @@ struct ISteamUser_SteamUser023_GetVoice_params { struct u_steam_iface *linux_side; uint32_t _ret; - bool bWantCompressed; + int8_t bWantCompressed; void *pDestBuffer; uint32_t cbDestBufferSize; uint32_t *nBytesWritten; - bool bWantUncompressed_Deprecated; + int8_t bWantUncompressed_Deprecated; void *pUncompressedDestBuffer_Deprecated; uint32_t cbUncompressedDestBufferSize_Deprecated; uint32_t *nUncompressBytesWritten_Deprecated; @@ -44045,7 +44044,7 @@ struct ISteamUser_SteamUser023_UserHasLicenseForApp_params struct ISteamUser_SteamUser023_BIsBehindNAT_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser023_AdvertiseGame_params @@ -44067,7 +44066,7 @@ struct ISteamUser_SteamUser023_RequestEncryptedAppTicket_params struct ISteamUser_SteamUser023_GetEncryptedAppTicket_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; void *pTicket; int32_t cbMaxTicket; uint32_t *pcbTicket; @@ -44078,7 +44077,7 @@ struct ISteamUser_SteamUser023_GetGameBadgeLevel_params struct u_steam_iface *linux_side; int32_t _ret; int32_t nSeries; - bool bFoil; + int8_t bFoil; }; struct ISteamUser_SteamUser023_GetPlayerSteamLevel_params @@ -44097,25 +44096,25 @@ struct ISteamUser_SteamUser023_RequestStoreAuthURL_params struct ISteamUser_SteamUser023_BIsPhoneVerified_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser023_BIsTwoFactorEnabled_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser023_BIsPhoneIdentifying_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser023_BIsPhoneRequiringVerification_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUser_SteamUser023_GetMarketEligibility_params @@ -44133,7 +44132,7 @@ struct ISteamUser_SteamUser023_GetDurationControl_params struct ISteamUser_SteamUser023_BSetDurationControlOnlineState_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eNewState; }; @@ -44170,7 +44169,7 @@ struct ISteamUtils_SteamUtils002_GetIPCountry_params struct ISteamUtils_SteamUtils002_GetImageSize_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iImage; uint32_t *pnWidth; uint32_t *pnHeight; @@ -44179,7 +44178,7 @@ struct ISteamUtils_SteamUtils002_GetImageSize_params struct ISteamUtils_SteamUtils002_GetImageRGBA_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iImage; uint8_t *pubDest; int32_t nDestBufferSize; @@ -44188,7 +44187,7 @@ struct ISteamUtils_SteamUtils002_GetImageRGBA_params struct ISteamUtils_SteamUtils002_GetCSERIPPort_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t *unIP; uint16_t *usPort; }; @@ -44214,9 +44213,9 @@ struct ISteamUtils_SteamUtils002_SetOverlayNotificationPosition_params struct ISteamUtils_SteamUtils002_IsAPICallCompleted_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hSteamAPICall; - bool *pbFailed; + int8_t *pbFailed; }; struct ISteamUtils_SteamUtils002_GetAPICallFailureReason_params @@ -44229,12 +44228,12 @@ struct ISteamUtils_SteamUtils002_GetAPICallFailureReason_params struct ISteamUtils_SteamUtils002_GetAPICallResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hSteamAPICall; void *pCallback; int32_t cubCallback; int32_t iCallbackExpected; - bool *pbFailed; + int8_t *pbFailed; }; struct ISteamUtils_SteamUtils004_GetSecondsSinceAppActive_params @@ -44270,7 +44269,7 @@ struct ISteamUtils_SteamUtils004_GetIPCountry_params struct ISteamUtils_SteamUtils004_GetImageSize_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iImage; uint32_t *pnWidth; uint32_t *pnHeight; @@ -44279,7 +44278,7 @@ struct ISteamUtils_SteamUtils004_GetImageSize_params struct ISteamUtils_SteamUtils004_GetImageRGBA_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iImage; uint8_t *pubDest; int32_t nDestBufferSize; @@ -44288,7 +44287,7 @@ struct ISteamUtils_SteamUtils004_GetImageRGBA_params struct ISteamUtils_SteamUtils004_GetCSERIPPort_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t *unIP; uint16_t *usPort; }; @@ -44314,9 +44313,9 @@ struct ISteamUtils_SteamUtils004_SetOverlayNotificationPosition_params struct ISteamUtils_SteamUtils004_IsAPICallCompleted_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hSteamAPICall; - bool *pbFailed; + int8_t *pbFailed; }; struct ISteamUtils_SteamUtils004_GetAPICallFailureReason_params @@ -44329,12 +44328,12 @@ struct ISteamUtils_SteamUtils004_GetAPICallFailureReason_params struct ISteamUtils_SteamUtils004_GetAPICallResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hSteamAPICall; void *pCallback; int32_t cubCallback; int32_t iCallbackExpected; - bool *pbFailed; + int8_t *pbFailed; }; struct ISteamUtils_SteamUtils004_RunFrame_params @@ -44357,7 +44356,7 @@ struct ISteamUtils_SteamUtils004_SetWarningMessageHook_params struct ISteamUtils_SteamUtils004_IsOverlayEnabled_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUtils_SteamUtils005_GetSecondsSinceAppActive_params @@ -44393,7 +44392,7 @@ struct ISteamUtils_SteamUtils005_GetIPCountry_params struct ISteamUtils_SteamUtils005_GetImageSize_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iImage; uint32_t *pnWidth; uint32_t *pnHeight; @@ -44402,7 +44401,7 @@ struct ISteamUtils_SteamUtils005_GetImageSize_params struct ISteamUtils_SteamUtils005_GetImageRGBA_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iImage; uint8_t *pubDest; int32_t nDestBufferSize; @@ -44411,7 +44410,7 @@ struct ISteamUtils_SteamUtils005_GetImageRGBA_params struct ISteamUtils_SteamUtils005_GetCSERIPPort_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t *unIP; uint16_t *usPort; }; @@ -44437,9 +44436,9 @@ struct ISteamUtils_SteamUtils005_SetOverlayNotificationPosition_params struct ISteamUtils_SteamUtils005_IsAPICallCompleted_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hSteamAPICall; - bool *pbFailed; + int8_t *pbFailed; }; struct ISteamUtils_SteamUtils005_GetAPICallFailureReason_params @@ -44452,12 +44451,12 @@ struct ISteamUtils_SteamUtils005_GetAPICallFailureReason_params struct ISteamUtils_SteamUtils005_GetAPICallResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hSteamAPICall; void *pCallback; int32_t cubCallback; int32_t iCallbackExpected; - bool *pbFailed; + int8_t *pbFailed; }; struct ISteamUtils_SteamUtils005_RunFrame_params @@ -44480,13 +44479,13 @@ struct ISteamUtils_SteamUtils005_SetWarningMessageHook_params struct ISteamUtils_SteamUtils005_IsOverlayEnabled_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUtils_SteamUtils005_BOverlayNeedsPresent_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUtils_SteamUtils005_CheckFileSignature_params @@ -44499,7 +44498,7 @@ struct ISteamUtils_SteamUtils005_CheckFileSignature_params struct ISteamUtils_SteamUtils005_ShowGamepadTextInput_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eInputMode; uint32_t eLineInputMode; const char *pchDescription; @@ -44515,7 +44514,7 @@ struct ISteamUtils_SteamUtils005_GetEnteredGamepadTextLength_params struct ISteamUtils_SteamUtils005_GetEnteredGamepadTextInput_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; char *pchText; uint32_t cchText; }; @@ -44553,7 +44552,7 @@ struct ISteamUtils_SteamUtils006_GetIPCountry_params struct ISteamUtils_SteamUtils006_GetImageSize_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iImage; uint32_t *pnWidth; uint32_t *pnHeight; @@ -44562,7 +44561,7 @@ struct ISteamUtils_SteamUtils006_GetImageSize_params struct ISteamUtils_SteamUtils006_GetImageRGBA_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iImage; uint8_t *pubDest; int32_t nDestBufferSize; @@ -44571,7 +44570,7 @@ struct ISteamUtils_SteamUtils006_GetImageRGBA_params struct ISteamUtils_SteamUtils006_GetCSERIPPort_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t *unIP; uint16_t *usPort; }; @@ -44597,9 +44596,9 @@ struct ISteamUtils_SteamUtils006_SetOverlayNotificationPosition_params struct ISteamUtils_SteamUtils006_IsAPICallCompleted_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hSteamAPICall; - bool *pbFailed; + int8_t *pbFailed; }; struct ISteamUtils_SteamUtils006_GetAPICallFailureReason_params @@ -44612,12 +44611,12 @@ struct ISteamUtils_SteamUtils006_GetAPICallFailureReason_params struct ISteamUtils_SteamUtils006_GetAPICallResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hSteamAPICall; void *pCallback; int32_t cubCallback; int32_t iCallbackExpected; - bool *pbFailed; + int8_t *pbFailed; }; struct ISteamUtils_SteamUtils006_RunFrame_params @@ -44640,13 +44639,13 @@ struct ISteamUtils_SteamUtils006_SetWarningMessageHook_params struct ISteamUtils_SteamUtils006_IsOverlayEnabled_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUtils_SteamUtils006_BOverlayNeedsPresent_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUtils_SteamUtils006_CheckFileSignature_params @@ -44659,7 +44658,7 @@ struct ISteamUtils_SteamUtils006_CheckFileSignature_params struct ISteamUtils_SteamUtils006_ShowGamepadTextInput_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eInputMode; uint32_t eLineInputMode; const char *pchDescription; @@ -44675,7 +44674,7 @@ struct ISteamUtils_SteamUtils006_GetEnteredGamepadTextLength_params struct ISteamUtils_SteamUtils006_GetEnteredGamepadTextInput_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; char *pchText; uint32_t cchText; }; @@ -44689,7 +44688,7 @@ struct ISteamUtils_SteamUtils006_GetSteamUILanguage_params struct ISteamUtils_SteamUtils006_IsSteamRunningInVR_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUtils_SteamUtils007_GetSecondsSinceAppActive_params @@ -44725,7 +44724,7 @@ struct ISteamUtils_SteamUtils007_GetIPCountry_params struct ISteamUtils_SteamUtils007_GetImageSize_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iImage; uint32_t *pnWidth; uint32_t *pnHeight; @@ -44734,7 +44733,7 @@ struct ISteamUtils_SteamUtils007_GetImageSize_params struct ISteamUtils_SteamUtils007_GetImageRGBA_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iImage; uint8_t *pubDest; int32_t nDestBufferSize; @@ -44743,7 +44742,7 @@ struct ISteamUtils_SteamUtils007_GetImageRGBA_params struct ISteamUtils_SteamUtils007_GetCSERIPPort_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t *unIP; uint16_t *usPort; }; @@ -44769,9 +44768,9 @@ struct ISteamUtils_SteamUtils007_SetOverlayNotificationPosition_params struct ISteamUtils_SteamUtils007_IsAPICallCompleted_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hSteamAPICall; - bool *pbFailed; + int8_t *pbFailed; }; struct ISteamUtils_SteamUtils007_GetAPICallFailureReason_params @@ -44784,12 +44783,12 @@ struct ISteamUtils_SteamUtils007_GetAPICallFailureReason_params struct ISteamUtils_SteamUtils007_GetAPICallResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hSteamAPICall; void *pCallback; int32_t cubCallback; int32_t iCallbackExpected; - bool *pbFailed; + int8_t *pbFailed; }; struct ISteamUtils_SteamUtils007_RunFrame_params @@ -44812,13 +44811,13 @@ struct ISteamUtils_SteamUtils007_SetWarningMessageHook_params struct ISteamUtils_SteamUtils007_IsOverlayEnabled_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUtils_SteamUtils007_BOverlayNeedsPresent_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUtils_SteamUtils007_CheckFileSignature_params @@ -44831,7 +44830,7 @@ struct ISteamUtils_SteamUtils007_CheckFileSignature_params struct ISteamUtils_SteamUtils007_ShowGamepadTextInput_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eInputMode; uint32_t eLineInputMode; const char *pchDescription; @@ -44848,7 +44847,7 @@ struct ISteamUtils_SteamUtils007_GetEnteredGamepadTextLength_params struct ISteamUtils_SteamUtils007_GetEnteredGamepadTextInput_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; char *pchText; uint32_t cchText; }; @@ -44862,7 +44861,7 @@ struct ISteamUtils_SteamUtils007_GetSteamUILanguage_params struct ISteamUtils_SteamUtils007_IsSteamRunningInVR_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUtils_SteamUtils007_SetOverlayNotificationInset_params @@ -44905,7 +44904,7 @@ struct ISteamUtils_SteamUtils008_GetIPCountry_params struct ISteamUtils_SteamUtils008_GetImageSize_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iImage; uint32_t *pnWidth; uint32_t *pnHeight; @@ -44914,7 +44913,7 @@ struct ISteamUtils_SteamUtils008_GetImageSize_params struct ISteamUtils_SteamUtils008_GetImageRGBA_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iImage; uint8_t *pubDest; int32_t nDestBufferSize; @@ -44923,7 +44922,7 @@ struct ISteamUtils_SteamUtils008_GetImageRGBA_params struct ISteamUtils_SteamUtils008_GetCSERIPPort_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t *unIP; uint16_t *usPort; }; @@ -44949,9 +44948,9 @@ struct ISteamUtils_SteamUtils008_SetOverlayNotificationPosition_params struct ISteamUtils_SteamUtils008_IsAPICallCompleted_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hSteamAPICall; - bool *pbFailed; + int8_t *pbFailed; }; struct ISteamUtils_SteamUtils008_GetAPICallFailureReason_params @@ -44964,12 +44963,12 @@ struct ISteamUtils_SteamUtils008_GetAPICallFailureReason_params struct ISteamUtils_SteamUtils008_GetAPICallResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hSteamAPICall; void *pCallback; int32_t cubCallback; int32_t iCallbackExpected; - bool *pbFailed; + int8_t *pbFailed; }; struct ISteamUtils_SteamUtils008_RunFrame_params @@ -44992,13 +44991,13 @@ struct ISteamUtils_SteamUtils008_SetWarningMessageHook_params struct ISteamUtils_SteamUtils008_IsOverlayEnabled_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUtils_SteamUtils008_BOverlayNeedsPresent_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUtils_SteamUtils008_CheckFileSignature_params @@ -45011,7 +45010,7 @@ struct ISteamUtils_SteamUtils008_CheckFileSignature_params struct ISteamUtils_SteamUtils008_ShowGamepadTextInput_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eInputMode; uint32_t eLineInputMode; const char *pchDescription; @@ -45028,7 +45027,7 @@ struct ISteamUtils_SteamUtils008_GetEnteredGamepadTextLength_params struct ISteamUtils_SteamUtils008_GetEnteredGamepadTextInput_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; char *pchText; uint32_t cchText; }; @@ -45042,7 +45041,7 @@ struct ISteamUtils_SteamUtils008_GetSteamUILanguage_params struct ISteamUtils_SteamUtils008_IsSteamRunningInVR_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUtils_SteamUtils008_SetOverlayNotificationInset_params @@ -45055,7 +45054,7 @@ struct ISteamUtils_SteamUtils008_SetOverlayNotificationInset_params struct ISteamUtils_SteamUtils008_IsSteamInBigPictureMode_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUtils_SteamUtils008_StartVRDashboard_params @@ -45096,7 +45095,7 @@ struct ISteamUtils_SteamUtils009_GetIPCountry_params struct ISteamUtils_SteamUtils009_GetImageSize_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iImage; uint32_t *pnWidth; uint32_t *pnHeight; @@ -45105,7 +45104,7 @@ struct ISteamUtils_SteamUtils009_GetImageSize_params struct ISteamUtils_SteamUtils009_GetImageRGBA_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iImage; uint8_t *pubDest; int32_t nDestBufferSize; @@ -45114,7 +45113,7 @@ struct ISteamUtils_SteamUtils009_GetImageRGBA_params struct ISteamUtils_SteamUtils009_GetCSERIPPort_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t *unIP; uint16_t *usPort; }; @@ -45140,9 +45139,9 @@ struct ISteamUtils_SteamUtils009_SetOverlayNotificationPosition_params struct ISteamUtils_SteamUtils009_IsAPICallCompleted_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hSteamAPICall; - bool *pbFailed; + int8_t *pbFailed; }; struct ISteamUtils_SteamUtils009_GetAPICallFailureReason_params @@ -45155,12 +45154,12 @@ struct ISteamUtils_SteamUtils009_GetAPICallFailureReason_params struct ISteamUtils_SteamUtils009_GetAPICallResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hSteamAPICall; void *pCallback; int32_t cubCallback; int32_t iCallbackExpected; - bool *pbFailed; + int8_t *pbFailed; }; struct ISteamUtils_SteamUtils009_RunFrame_params @@ -45183,13 +45182,13 @@ struct ISteamUtils_SteamUtils009_SetWarningMessageHook_params struct ISteamUtils_SteamUtils009_IsOverlayEnabled_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUtils_SteamUtils009_BOverlayNeedsPresent_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUtils_SteamUtils009_CheckFileSignature_params @@ -45202,7 +45201,7 @@ struct ISteamUtils_SteamUtils009_CheckFileSignature_params struct ISteamUtils_SteamUtils009_ShowGamepadTextInput_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eInputMode; uint32_t eLineInputMode; const char *pchDescription; @@ -45219,7 +45218,7 @@ struct ISteamUtils_SteamUtils009_GetEnteredGamepadTextLength_params struct ISteamUtils_SteamUtils009_GetEnteredGamepadTextInput_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; char *pchText; uint32_t cchText; }; @@ -45233,7 +45232,7 @@ struct ISteamUtils_SteamUtils009_GetSteamUILanguage_params struct ISteamUtils_SteamUtils009_IsSteamRunningInVR_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUtils_SteamUtils009_SetOverlayNotificationInset_params @@ -45246,7 +45245,7 @@ struct ISteamUtils_SteamUtils009_SetOverlayNotificationInset_params struct ISteamUtils_SteamUtils009_IsSteamInBigPictureMode_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUtils_SteamUtils009_StartVRDashboard_params @@ -45257,25 +45256,25 @@ struct ISteamUtils_SteamUtils009_StartVRDashboard_params struct ISteamUtils_SteamUtils009_IsVRHeadsetStreamingEnabled_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled_params { struct u_steam_iface *linux_side; - bool bEnabled; + int8_t bEnabled; }; struct ISteamUtils_SteamUtils009_IsSteamChinaLauncher_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUtils_SteamUtils009_InitFilterText_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUtils_SteamUtils009_FilterText_params @@ -45285,7 +45284,7 @@ struct ISteamUtils_SteamUtils009_FilterText_params char *pchOutFilteredText; uint32_t nByteSizeOutFilteredText; const char *pchInputMessage; - bool bLegalOnly; + int8_t bLegalOnly; }; struct ISteamUtils_SteamUtils009_GetIPv6ConnectivityState_params @@ -45328,7 +45327,7 @@ struct ISteamUtils_SteamUtils010_GetIPCountry_params struct ISteamUtils_SteamUtils010_GetImageSize_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iImage; uint32_t *pnWidth; uint32_t *pnHeight; @@ -45337,7 +45336,7 @@ struct ISteamUtils_SteamUtils010_GetImageSize_params struct ISteamUtils_SteamUtils010_GetImageRGBA_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; int32_t iImage; uint8_t *pubDest; int32_t nDestBufferSize; @@ -45346,7 +45345,7 @@ struct ISteamUtils_SteamUtils010_GetImageRGBA_params struct ISteamUtils_SteamUtils010_GetCSERIPPort_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t *unIP; uint16_t *usPort; }; @@ -45372,9 +45371,9 @@ struct ISteamUtils_SteamUtils010_SetOverlayNotificationPosition_params struct ISteamUtils_SteamUtils010_IsAPICallCompleted_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hSteamAPICall; - bool *pbFailed; + int8_t *pbFailed; }; struct ISteamUtils_SteamUtils010_GetAPICallFailureReason_params @@ -45387,12 +45386,12 @@ struct ISteamUtils_SteamUtils010_GetAPICallFailureReason_params struct ISteamUtils_SteamUtils010_GetAPICallResult_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint64_t hSteamAPICall; void *pCallback; int32_t cubCallback; int32_t iCallbackExpected; - bool *pbFailed; + int8_t *pbFailed; }; struct ISteamUtils_SteamUtils010_RunFrame_params @@ -45415,13 +45414,13 @@ struct ISteamUtils_SteamUtils010_SetWarningMessageHook_params struct ISteamUtils_SteamUtils010_IsOverlayEnabled_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUtils_SteamUtils010_BOverlayNeedsPresent_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUtils_SteamUtils010_CheckFileSignature_params @@ -45434,7 +45433,7 @@ struct ISteamUtils_SteamUtils010_CheckFileSignature_params struct ISteamUtils_SteamUtils010_ShowGamepadTextInput_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eInputMode; uint32_t eLineInputMode; const char *pchDescription; @@ -45451,7 +45450,7 @@ struct ISteamUtils_SteamUtils010_GetEnteredGamepadTextLength_params struct ISteamUtils_SteamUtils010_GetEnteredGamepadTextInput_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; char *pchText; uint32_t cchText; }; @@ -45465,7 +45464,7 @@ struct ISteamUtils_SteamUtils010_GetSteamUILanguage_params struct ISteamUtils_SteamUtils010_IsSteamRunningInVR_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUtils_SteamUtils010_SetOverlayNotificationInset_params @@ -45478,7 +45477,7 @@ struct ISteamUtils_SteamUtils010_SetOverlayNotificationInset_params struct ISteamUtils_SteamUtils010_IsSteamInBigPictureMode_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUtils_SteamUtils010_StartVRDashboard_params @@ -45489,25 +45488,25 @@ struct ISteamUtils_SteamUtils010_StartVRDashboard_params struct ISteamUtils_SteamUtils010_IsVRHeadsetStreamingEnabled_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUtils_SteamUtils010_SetVRHeadsetStreamingEnabled_params { struct u_steam_iface *linux_side; - bool bEnabled; + int8_t bEnabled; }; struct ISteamUtils_SteamUtils010_IsSteamChinaLauncher_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUtils_SteamUtils010_InitFilterText_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t unFilterOptions; }; @@ -45532,13 +45531,13 @@ struct ISteamUtils_SteamUtils010_GetIPv6ConnectivityState_params struct ISteamUtils_SteamUtils010_IsSteamRunningOnSteamDeck_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; struct ISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; uint32_t eKeyboardMode; int32_t nTextFieldXPosition; int32_t nTextFieldYPosition; @@ -45549,13 +45548,13 @@ struct ISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput_params struct ISteamUtils_SteamUtils010_SetGameLauncherMode_params { struct u_steam_iface *linux_side; - bool bLauncherMode; + int8_t bLauncherMode; }; struct ISteamUtils_SteamUtils010_DismissFloatingGamepadTextInput_params { struct u_steam_iface *linux_side; - bool _ret; + int8_t _ret; }; enum unix_funcs diff --git a/lsteamclient/winISteamApps.c b/lsteamclient/winISteamApps.c index c79272ce..aa696874 100644 --- a/lsteamclient/winISteamApps.c +++ b/lsteamclient/winISteamApps.c @@ -47,7 +47,7 @@ DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentG DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages, 4) DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp, 8) -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed_params params = { @@ -58,7 +58,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed(struc return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence_params params = { @@ -69,7 +69,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence(stru return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe_params params = { @@ -80,7 +80,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe(struct return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned_params params = { @@ -113,7 +113,7 @@ const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailabl return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp(struct w_steam_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp_params params = { @@ -159,7 +159,7 @@ DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetAvailabl DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp, 8) DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsDlcInstalled, 8) -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed_params params = { @@ -170,7 +170,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed(struc return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence_params params = { @@ -181,7 +181,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence(stru return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe_params params = { @@ -192,7 +192,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe(struct return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsVACBanned(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsVACBanned(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsVACBanned_params params = { @@ -225,7 +225,7 @@ const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetAvailabl return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp(struct w_steam_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp_params params = { @@ -237,7 +237,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp(st return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsDlcInstalled(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsDlcInstalled(struct w_steam_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsDlcInstalled_params params = { @@ -290,7 +290,7 @@ DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCData DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION004_InstallDLC, 8) DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION004_UninstallDLC, 8) -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed_params params = { @@ -301,7 +301,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed(struc return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence_params params = { @@ -312,7 +312,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence(stru return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe_params params = { @@ -323,7 +323,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe(struct return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsVACBanned(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsVACBanned(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsVACBanned_params params = { @@ -356,7 +356,7 @@ const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetAvailabl return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedApp(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedApp(struct w_steam_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedApp_params params = { @@ -368,7 +368,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedApp(st return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsDlcInstalled(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsDlcInstalled(struct w_steam_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsDlcInstalled_params params = { @@ -392,7 +392,7 @@ uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetEarliestPurc return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedFromFreeWeekend(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedFromFreeWeekend(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedFromFreeWeekend_params params = { @@ -414,7 +414,7 @@ int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetDLCCount(stru return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex(struct w_steam_iface *_this, int32_t iDLC, uint32_t *pAppID, bool *pbAvailable, char *pchName, int32_t cchNameBufferSize) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex(struct w_steam_iface *_this, int32_t iDLC, uint32_t *pAppID, int8_t *pbAvailable, char *pchName, int32_t cchNameBufferSize) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex_params params = { @@ -505,7 +505,7 @@ DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetInstalle DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDir, 16) DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsAppInstalled, 8) -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribed(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribed(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribed_params params = { @@ -516,7 +516,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribed(struc return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsLowViolence(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsLowViolence(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsLowViolence_params params = { @@ -527,7 +527,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsLowViolence(stru return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsCybercafe(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsCybercafe(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsCybercafe_params params = { @@ -538,7 +538,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsCybercafe(struct return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsVACBanned(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsVACBanned(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsVACBanned_params params = { @@ -571,7 +571,7 @@ const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAvailabl return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedApp(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedApp(struct w_steam_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedApp_params params = { @@ -583,7 +583,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedApp(st return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsDlcInstalled(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsDlcInstalled(struct w_steam_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsDlcInstalled_params params = { @@ -607,7 +607,7 @@ uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetEarliestPurc return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedFromFreeWeekend(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedFromFreeWeekend(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedFromFreeWeekend_params params = { @@ -629,7 +629,7 @@ int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetDLCCount(stru return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByIndex(struct w_steam_iface *_this, int32_t iDLC, uint32_t *pAppID, bool *pbAvailable, char *pchName, int32_t cchNameBufferSize) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByIndex(struct w_steam_iface *_this, int32_t iDLC, uint32_t *pAppID, int8_t *pbAvailable, char *pchName, int32_t cchNameBufferSize) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByIndex_params params = { @@ -678,7 +678,7 @@ void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_RequestAppProofOfPu STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_RequestAppProofOfPurchaseKey, ¶ms ); } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName(struct w_steam_iface *_this, char *pchName, int32_t cchNameBufferSize) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName(struct w_steam_iface *_this, char *pchName, int32_t cchNameBufferSize) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName_params params = { @@ -691,7 +691,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName( return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_MarkContentCorrupt(struct w_steam_iface *_this, bool bMissingFilesOnly) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_MarkContentCorrupt(struct w_steam_iface *_this, int8_t bMissingFilesOnly) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_MarkContentCorrupt_params params = { @@ -730,7 +730,7 @@ uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDi return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsAppInstalled(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsAppInstalled(struct w_steam_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsAppInstalled_params params = { @@ -803,7 +803,7 @@ DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsAppInsta DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppOwner, 8) DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetLaunchQueryParam, 8) -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribed(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribed(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribed_params params = { @@ -814,7 +814,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribed(struc return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsLowViolence(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsLowViolence(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsLowViolence_params params = { @@ -825,7 +825,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsLowViolence(stru return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsCybercafe(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsCybercafe(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsCybercafe_params params = { @@ -836,7 +836,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsCybercafe(struct return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsVACBanned(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsVACBanned(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsVACBanned_params params = { @@ -869,7 +869,7 @@ const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAvailabl return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedApp(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedApp(struct w_steam_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedApp_params params = { @@ -881,7 +881,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedApp(st return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsDlcInstalled(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsDlcInstalled(struct w_steam_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsDlcInstalled_params params = { @@ -905,7 +905,7 @@ uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetEarliestPurc return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedFromFreeWeekend(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedFromFreeWeekend(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedFromFreeWeekend_params params = { @@ -927,7 +927,7 @@ int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetDLCCount(stru return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByIndex(struct w_steam_iface *_this, int32_t iDLC, uint32_t *pAppID, bool *pbAvailable, char *pchName, int32_t cchNameBufferSize) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByIndex(struct w_steam_iface *_this, int32_t iDLC, uint32_t *pAppID, int8_t *pbAvailable, char *pchName, int32_t cchNameBufferSize) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByIndex_params params = { @@ -976,7 +976,7 @@ void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_RequestAppProofOfPu STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_RequestAppProofOfPurchaseKey, ¶ms ); } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName(struct w_steam_iface *_this, char *pchName, int32_t cchNameBufferSize) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName(struct w_steam_iface *_this, char *pchName, int32_t cchNameBufferSize) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName_params params = { @@ -989,7 +989,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName( return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_MarkContentCorrupt(struct w_steam_iface *_this, bool bMissingFilesOnly) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_MarkContentCorrupt(struct w_steam_iface *_this, int8_t bMissingFilesOnly) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_MarkContentCorrupt_params params = { @@ -1029,7 +1029,7 @@ uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppInstallDi return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsAppInstalled(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsAppInstalled(struct w_steam_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsAppInstalled_params params = { @@ -1130,7 +1130,7 @@ DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetLaunchQu DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress, 16) DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppBuildId, 4) -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed_params params = { @@ -1141,7 +1141,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed(struc return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence_params params = { @@ -1152,7 +1152,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence(stru return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe_params params = { @@ -1163,7 +1163,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe(struct return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsVACBanned(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsVACBanned(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsVACBanned_params params = { @@ -1196,7 +1196,7 @@ const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAvailabl return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedApp(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedApp(struct w_steam_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedApp_params params = { @@ -1208,7 +1208,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedApp(st return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsDlcInstalled(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsDlcInstalled(struct w_steam_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsDlcInstalled_params params = { @@ -1232,7 +1232,7 @@ uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetEarliestPurc return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedFromFreeWeekend(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedFromFreeWeekend(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedFromFreeWeekend_params params = { @@ -1254,7 +1254,7 @@ int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDLCCount(stru return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByIndex(struct w_steam_iface *_this, int32_t iDLC, uint32_t *pAppID, bool *pbAvailable, char *pchName, int32_t cchNameBufferSize) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByIndex(struct w_steam_iface *_this, int32_t iDLC, uint32_t *pAppID, int8_t *pbAvailable, char *pchName, int32_t cchNameBufferSize) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByIndex_params params = { @@ -1303,7 +1303,7 @@ void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_RequestAppProofOfPu STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_RequestAppProofOfPurchaseKey, ¶ms ); } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName(struct w_steam_iface *_this, char *pchName, int32_t cchNameBufferSize) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName(struct w_steam_iface *_this, char *pchName, int32_t cchNameBufferSize) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName_params params = { @@ -1316,7 +1316,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName( return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_MarkContentCorrupt(struct w_steam_iface *_this, bool bMissingFilesOnly) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_MarkContentCorrupt(struct w_steam_iface *_this, int8_t bMissingFilesOnly) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_MarkContentCorrupt_params params = { @@ -1356,7 +1356,7 @@ uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppInstallDi return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsAppInstalled(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsAppInstalled(struct w_steam_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsAppInstalled_params params = { @@ -1392,7 +1392,7 @@ const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetLaunchQu return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress(struct w_steam_iface *_this, uint32_t nAppID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress(struct w_steam_iface *_this, uint32_t nAppID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress_params params = { @@ -1490,7 +1490,7 @@ DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscrib DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial, 12) DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetDlcContext, 8) -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribed(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribed(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribed_params params = { @@ -1501,7 +1501,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribed(struc return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsLowViolence(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsLowViolence(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsLowViolence_params params = { @@ -1512,7 +1512,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsLowViolence(stru return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsCybercafe(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsCybercafe(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsCybercafe_params params = { @@ -1523,7 +1523,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsCybercafe(struct return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsVACBanned(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsVACBanned(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsVACBanned_params params = { @@ -1556,7 +1556,7 @@ const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAvailabl return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedApp(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedApp(struct w_steam_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedApp_params params = { @@ -1568,7 +1568,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedApp(st return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsDlcInstalled(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsDlcInstalled(struct w_steam_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsDlcInstalled_params params = { @@ -1592,7 +1592,7 @@ uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetEarliestPurc return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFreeWeekend(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFreeWeekend(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFreeWeekend_params params = { @@ -1614,7 +1614,7 @@ int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDLCCount(stru return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByIndex(struct w_steam_iface *_this, int32_t iDLC, uint32_t *pAppID, bool *pbAvailable, char *pchName, int32_t cchNameBufferSize) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByIndex(struct w_steam_iface *_this, int32_t iDLC, uint32_t *pAppID, int8_t *pbAvailable, char *pchName, int32_t cchNameBufferSize) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByIndex_params params = { @@ -1663,7 +1663,7 @@ void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAppProofOfPu STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAppProofOfPurchaseKey, ¶ms ); } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName(struct w_steam_iface *_this, char *pchName, int32_t cchNameBufferSize) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName(struct w_steam_iface *_this, char *pchName, int32_t cchNameBufferSize) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName_params params = { @@ -1676,7 +1676,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName( return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_MarkContentCorrupt(struct w_steam_iface *_this, bool bMissingFilesOnly) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_MarkContentCorrupt(struct w_steam_iface *_this, int8_t bMissingFilesOnly) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_MarkContentCorrupt_params params = { @@ -1716,7 +1716,7 @@ uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppInstallDi return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsAppInstalled(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsAppInstalled(struct w_steam_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsAppInstalled_params params = { @@ -1752,7 +1752,7 @@ const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchQu return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadProgress(struct w_steam_iface *_this, uint32_t nAppID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadProgress(struct w_steam_iface *_this, uint32_t nAppID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadProgress_params params = { @@ -1812,7 +1812,7 @@ int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchCommand return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFamilySharing(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFamilySharing(struct w_steam_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFamilySharing_params params = { @@ -1823,7 +1823,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFa return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial(struct w_steam_iface *_this, uint32_t *punSecondsAllowed, uint32_t *punSecondsPlayed) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial(struct w_steam_iface *_this, uint32_t *punSecondsAllowed, uint32_t *punSecondsPlayed) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial_params params = { @@ -1836,7 +1836,7 @@ bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial(struc return params._ret; } -bool __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetDlcContext(struct w_steam_iface *_this, uint32_t nAppID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetDlcContext(struct w_steam_iface *_this, uint32_t nAppID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetDlcContext_params params = { diff --git a/lsteamclient/winISteamClient.c b/lsteamclient/winISteamClient.c index 927416af..0edc77c5 100644 --- a/lsteamclient/winISteamClient.c +++ b/lsteamclient/winISteamClient.c @@ -36,7 +36,7 @@ int32_t __thiscall winISteamClient_SteamClient006_CreateSteamPipe(struct w_steam return params._ret; } -bool __thiscall winISteamClient_SteamClient006_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient006_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient006_BReleaseSteamPipe_params params = { @@ -374,7 +374,7 @@ int32_t __thiscall winISteamClient_SteamClient007_CreateSteamPipe(struct w_steam return params._ret; } -bool __thiscall winISteamClient_SteamClient007_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient007_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient007_BReleaseSteamPipe_params params = { @@ -733,7 +733,7 @@ int32_t __thiscall winISteamClient_SteamClient008_CreateSteamPipe(struct w_steam return params._ret; } -bool __thiscall winISteamClient_SteamClient008_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient008_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient008_BReleaseSteamPipe_params params = { @@ -1078,7 +1078,7 @@ int32_t __thiscall winISteamClient_SteamClient009_CreateSteamPipe(struct w_steam return params._ret; } -bool __thiscall winISteamClient_SteamClient009_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient009_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient009_BReleaseSteamPipe_params params = { @@ -1441,7 +1441,7 @@ int32_t __thiscall winISteamClient_SteamClient010_CreateSteamPipe(struct w_steam return params._ret; } -bool __thiscall winISteamClient_SteamClient010_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient010_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient010_BReleaseSteamPipe_params params = { @@ -1728,7 +1728,7 @@ void __thiscall winISteamClient_SteamClient010_SetWarningMessageHook(struct w_st STEAMCLIENT_CALL( ISteamClient_SteamClient010_SetWarningMessageHook, ¶ms ); } -bool __thiscall winISteamClient_SteamClient010_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) +int8_t __thiscall winISteamClient_SteamClient010_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) { struct ISteamClient_SteamClient010_BShutdownIfAllPipesClosed_params params = { @@ -1833,7 +1833,7 @@ int32_t __thiscall winISteamClient_SteamClient011_CreateSteamPipe(struct w_steam return params._ret; } -bool __thiscall winISteamClient_SteamClient011_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient011_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient011_BReleaseSteamPipe_params params = { @@ -2135,7 +2135,7 @@ void __thiscall winISteamClient_SteamClient011_SetWarningMessageHook(struct w_st STEAMCLIENT_CALL( ISteamClient_SteamClient011_SetWarningMessageHook, ¶ms ); } -bool __thiscall winISteamClient_SteamClient011_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) +int8_t __thiscall winISteamClient_SteamClient011_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) { struct ISteamClient_SteamClient011_BShutdownIfAllPipesClosed_params params = { @@ -2243,7 +2243,7 @@ int32_t __thiscall winISteamClient_SteamClient012_CreateSteamPipe(struct w_steam return params._ret; } -bool __thiscall winISteamClient_SteamClient012_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient012_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient012_BReleaseSteamPipe_params params = { @@ -2530,7 +2530,7 @@ void __thiscall winISteamClient_SteamClient012_SetWarningMessageHook(struct w_st STEAMCLIENT_CALL( ISteamClient_SteamClient012_SetWarningMessageHook, ¶ms ); } -bool __thiscall winISteamClient_SteamClient012_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) +int8_t __thiscall winISteamClient_SteamClient012_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) { struct ISteamClient_SteamClient012_BShutdownIfAllPipesClosed_params params = { @@ -2688,7 +2688,7 @@ int32_t __thiscall winISteamClient_SteamClient013_CreateSteamPipe(struct w_steam return params._ret; } -bool __thiscall winISteamClient_SteamClient013_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient013_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient013_BReleaseSteamPipe_params params = { @@ -2975,7 +2975,7 @@ void __thiscall winISteamClient_SteamClient013_SetWarningMessageHook(struct w_st STEAMCLIENT_CALL( ISteamClient_SteamClient013_SetWarningMessageHook, ¶ms ); } -bool __thiscall winISteamClient_SteamClient013_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) +int8_t __thiscall winISteamClient_SteamClient013_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) { struct ISteamClient_SteamClient013_BShutdownIfAllPipesClosed_params params = { @@ -3178,7 +3178,7 @@ int32_t __thiscall winISteamClient_SteamClient014_CreateSteamPipe(struct w_steam return params._ret; } -bool __thiscall winISteamClient_SteamClient014_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient014_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient014_BReleaseSteamPipe_params params = { @@ -3465,7 +3465,7 @@ void __thiscall winISteamClient_SteamClient014_SetWarningMessageHook(struct w_st STEAMCLIENT_CALL( ISteamClient_SteamClient014_SetWarningMessageHook, ¶ms ); } -bool __thiscall winISteamClient_SteamClient014_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) +int8_t __thiscall winISteamClient_SteamClient014_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) { struct ISteamClient_SteamClient014_BShutdownIfAllPipesClosed_params params = { @@ -3655,7 +3655,7 @@ int32_t __thiscall winISteamClient_SteamClient015_CreateSteamPipe(struct w_steam return params._ret; } -bool __thiscall winISteamClient_SteamClient015_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient015_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient015_BReleaseSteamPipe_params params = { @@ -3942,7 +3942,7 @@ void __thiscall winISteamClient_SteamClient015_SetWarningMessageHook(struct w_st STEAMCLIENT_CALL( ISteamClient_SteamClient015_SetWarningMessageHook, ¶ms ); } -bool __thiscall winISteamClient_SteamClient015_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) +int8_t __thiscall winISteamClient_SteamClient015_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) { struct ISteamClient_SteamClient015_BShutdownIfAllPipesClosed_params params = { @@ -4152,7 +4152,7 @@ int32_t __thiscall winISteamClient_SteamClient016_CreateSteamPipe(struct w_steam return params._ret; } -bool __thiscall winISteamClient_SteamClient016_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient016_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient016_BReleaseSteamPipe_params params = { @@ -4439,7 +4439,7 @@ void __thiscall winISteamClient_SteamClient016_SetWarningMessageHook(struct w_st STEAMCLIENT_CALL( ISteamClient_SteamClient016_SetWarningMessageHook, ¶ms ); } -bool __thiscall winISteamClient_SteamClient016_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) +int8_t __thiscall winISteamClient_SteamClient016_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) { struct ISteamClient_SteamClient016_BShutdownIfAllPipesClosed_params params = { @@ -4704,7 +4704,7 @@ int32_t __thiscall winISteamClient_SteamClient017_CreateSteamPipe(struct w_steam return params._ret; } -bool __thiscall winISteamClient_SteamClient017_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient017_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient017_BReleaseSteamPipe_params params = { @@ -4991,7 +4991,7 @@ void __thiscall winISteamClient_SteamClient017_SetWarningMessageHook(struct w_st STEAMCLIENT_CALL( ISteamClient_SteamClient017_SetWarningMessageHook, ¶ms ); } -bool __thiscall winISteamClient_SteamClient017_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) +int8_t __thiscall winISteamClient_SteamClient017_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) { struct ISteamClient_SteamClient017_BShutdownIfAllPipesClosed_params params = { @@ -5306,7 +5306,7 @@ int32_t __thiscall winISteamClient_SteamClient018_CreateSteamPipe(struct w_steam return params._ret; } -bool __thiscall winISteamClient_SteamClient018_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient018_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient018_BReleaseSteamPipe_params params = { @@ -5608,7 +5608,7 @@ void __thiscall winISteamClient_SteamClient018_SetWarningMessageHook(struct w_st STEAMCLIENT_CALL( ISteamClient_SteamClient018_SetWarningMessageHook, ¶ms ); } -bool __thiscall winISteamClient_SteamClient018_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) +int8_t __thiscall winISteamClient_SteamClient018_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) { struct ISteamClient_SteamClient018_BShutdownIfAllPipesClosed_params params = { @@ -5957,7 +5957,7 @@ int32_t __thiscall winISteamClient_SteamClient019_CreateSteamPipe(struct w_steam return params._ret; } -bool __thiscall winISteamClient_SteamClient019_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient019_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient019_BReleaseSteamPipe_params params = { @@ -6259,7 +6259,7 @@ void __thiscall winISteamClient_SteamClient019_SetWarningMessageHook(struct w_st STEAMCLIENT_CALL( ISteamClient_SteamClient019_SetWarningMessageHook, ¶ms ); } -bool __thiscall winISteamClient_SteamClient019_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) +int8_t __thiscall winISteamClient_SteamClient019_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) { struct ISteamClient_SteamClient019_BShutdownIfAllPipesClosed_params params = { @@ -6625,7 +6625,7 @@ int32_t __thiscall winISteamClient_SteamClient020_CreateSteamPipe(struct w_steam return params._ret; } -bool __thiscall winISteamClient_SteamClient020_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient020_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient020_BReleaseSteamPipe_params params = { @@ -6927,7 +6927,7 @@ void __thiscall winISteamClient_SteamClient020_SetWarningMessageHook(struct w_st STEAMCLIENT_CALL( ISteamClient_SteamClient020_SetWarningMessageHook, ¶ms ); } -bool __thiscall winISteamClient_SteamClient020_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) +int8_t __thiscall winISteamClient_SteamClient020_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) { struct ISteamClient_SteamClient020_BShutdownIfAllPipesClosed_params params = { diff --git a/lsteamclient/winISteamController.c b/lsteamclient/winISteamController.c index 39cb237e..e3073cac 100644 --- a/lsteamclient/winISteamController.c +++ b/lsteamclient/winISteamController.c @@ -10,7 +10,7 @@ DEFINE_THISCALL_WRAPPER(winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Ge DEFINE_THISCALL_WRAPPER(winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_TriggerHapticPulse, 16) DEFINE_THISCALL_WRAPPER(winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_SetOverrideMode, 8) -bool __thiscall winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Init(struct w_steam_iface *_this, const char *pchAbsolutePathToControllerConfigVDF) +int8_t __thiscall winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Init(struct w_steam_iface *_this, const char *pchAbsolutePathToControllerConfigVDF) { struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Init_params params = { @@ -22,7 +22,7 @@ bool __thiscall winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Init(struc return params._ret; } -bool __thiscall winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Shutdown(struct w_steam_iface *_this) { struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Shutdown_params params = { @@ -43,7 +43,7 @@ void __thiscall winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_RunFrame(s STEAMCLIENT_CALL( ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_RunFrame, ¶ms ); } -bool __thiscall winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_GetControllerState(struct w_steam_iface *_this, uint32_t unControllerIndex, SteamControllerState001_t *pState) +int8_t __thiscall winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_GetControllerState(struct w_steam_iface *_this, uint32_t unControllerIndex, SteamControllerState001_t *pState) { struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_GetControllerState_params params = { @@ -122,7 +122,7 @@ DEFINE_THISCALL_WRAPPER(winISteamController_SteamController003_StopAnalogActionM DEFINE_THISCALL_WRAPPER(winISteamController_SteamController003_TriggerHapticPulse, 20) DEFINE_THISCALL_WRAPPER(winISteamController_SteamController003_TriggerRepeatedHapticPulse, 32) -bool __thiscall winISteamController_SteamController003_Init(struct w_steam_iface *_this) +int8_t __thiscall winISteamController_SteamController003_Init(struct w_steam_iface *_this) { struct ISteamController_SteamController003_Init_params params = { @@ -133,7 +133,7 @@ bool __thiscall winISteamController_SteamController003_Init(struct w_steam_iface return params._ret; } -bool __thiscall winISteamController_SteamController003_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamController_SteamController003_Shutdown(struct w_steam_iface *_this) { struct ISteamController_SteamController003_Shutdown_params params = { @@ -166,7 +166,7 @@ int32_t __thiscall winISteamController_SteamController003_GetConnectedController return params._ret; } -bool __thiscall winISteamController_SteamController003_ShowBindingPanel(struct w_steam_iface *_this, uint64_t controllerHandle) +int8_t __thiscall winISteamController_SteamController003_ShowBindingPanel(struct w_steam_iface *_this, uint64_t controllerHandle) { struct ISteamController_SteamController003_ShowBindingPanel_params params = { @@ -395,7 +395,7 @@ DEFINE_THISCALL_WRAPPER(winISteamController_SteamController004_GetMotionData, 16 DEFINE_THISCALL_WRAPPER(winISteamController_SteamController004_ShowDigitalActionOrigins, 32) DEFINE_THISCALL_WRAPPER(winISteamController_SteamController004_ShowAnalogActionOrigins, 32) -bool __thiscall winISteamController_SteamController004_Init(struct w_steam_iface *_this) +int8_t __thiscall winISteamController_SteamController004_Init(struct w_steam_iface *_this) { struct ISteamController_SteamController004_Init_params params = { @@ -406,7 +406,7 @@ bool __thiscall winISteamController_SteamController004_Init(struct w_steam_iface return params._ret; } -bool __thiscall winISteamController_SteamController004_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamController_SteamController004_Shutdown(struct w_steam_iface *_this) { struct ISteamController_SteamController004_Shutdown_params params = { @@ -439,7 +439,7 @@ int32_t __thiscall winISteamController_SteamController004_GetConnectedController return params._ret; } -bool __thiscall winISteamController_SteamController004_ShowBindingPanel(struct w_steam_iface *_this, uint64_t controllerHandle) +int8_t __thiscall winISteamController_SteamController004_ShowBindingPanel(struct w_steam_iface *_this, uint64_t controllerHandle) { struct ISteamController_SteamController004_ShowBindingPanel_params params = { @@ -647,7 +647,7 @@ ControllerMotionData_t * __thiscall winISteamController_SteamController004_GetMo return params._ret; } -bool __thiscall winISteamController_SteamController004_ShowDigitalActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t digitalActionHandle, float flScale, float flXPosition, float flYPosition) +int8_t __thiscall winISteamController_SteamController004_ShowDigitalActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t digitalActionHandle, float flScale, float flXPosition, float flYPosition) { struct ISteamController_SteamController004_ShowDigitalActionOrigins_params params = { @@ -663,7 +663,7 @@ bool __thiscall winISteamController_SteamController004_ShowDigitalActionOrigins( return params._ret; } -bool __thiscall winISteamController_SteamController004_ShowAnalogActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t analogActionHandle, float flScale, float flXPosition, float flYPosition) +int8_t __thiscall winISteamController_SteamController004_ShowAnalogActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t analogActionHandle, float flScale, float flXPosition, float flYPosition) { struct ISteamController_SteamController004_ShowAnalogActionOrigins_params params = { @@ -746,7 +746,7 @@ DEFINE_THISCALL_WRAPPER(winISteamController_SteamController005_ShowAnalogActionO DEFINE_THISCALL_WRAPPER(winISteamController_SteamController005_GetStringForActionOrigin, 8) DEFINE_THISCALL_WRAPPER(winISteamController_SteamController005_GetGlyphForActionOrigin, 8) -bool __thiscall winISteamController_SteamController005_Init(struct w_steam_iface *_this) +int8_t __thiscall winISteamController_SteamController005_Init(struct w_steam_iface *_this) { struct ISteamController_SteamController005_Init_params params = { @@ -757,7 +757,7 @@ bool __thiscall winISteamController_SteamController005_Init(struct w_steam_iface return params._ret; } -bool __thiscall winISteamController_SteamController005_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamController_SteamController005_Shutdown(struct w_steam_iface *_this) { struct ISteamController_SteamController005_Shutdown_params params = { @@ -790,7 +790,7 @@ int32_t __thiscall winISteamController_SteamController005_GetConnectedController return params._ret; } -bool __thiscall winISteamController_SteamController005_ShowBindingPanel(struct w_steam_iface *_this, uint64_t controllerHandle) +int8_t __thiscall winISteamController_SteamController005_ShowBindingPanel(struct w_steam_iface *_this, uint64_t controllerHandle) { struct ISteamController_SteamController005_ShowBindingPanel_params params = { @@ -1026,7 +1026,7 @@ ControllerMotionData_t * __thiscall winISteamController_SteamController005_GetMo return params._ret; } -bool __thiscall winISteamController_SteamController005_ShowDigitalActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t digitalActionHandle, float flScale, float flXPosition, float flYPosition) +int8_t __thiscall winISteamController_SteamController005_ShowDigitalActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t digitalActionHandle, float flScale, float flXPosition, float flYPosition) { struct ISteamController_SteamController005_ShowDigitalActionOrigins_params params = { @@ -1042,7 +1042,7 @@ bool __thiscall winISteamController_SteamController005_ShowDigitalActionOrigins( return params._ret; } -bool __thiscall winISteamController_SteamController005_ShowAnalogActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t analogActionHandle, float flScale, float flXPosition, float flYPosition) +int8_t __thiscall winISteamController_SteamController005_ShowAnalogActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t analogActionHandle, float flScale, float flXPosition, float flYPosition) { struct ISteamController_SteamController005_ShowAnalogActionOrigins_params params = { @@ -1146,7 +1146,7 @@ DEFINE_THISCALL_WRAPPER(winISteamController_SteamController006_GetStringForActio DEFINE_THISCALL_WRAPPER(winISteamController_SteamController006_GetGlyphForActionOrigin, 8) DEFINE_THISCALL_WRAPPER(winISteamController_SteamController006_GetInputTypeForHandle, 12) -bool __thiscall winISteamController_SteamController006_Init(struct w_steam_iface *_this) +int8_t __thiscall winISteamController_SteamController006_Init(struct w_steam_iface *_this) { struct ISteamController_SteamController006_Init_params params = { @@ -1157,7 +1157,7 @@ bool __thiscall winISteamController_SteamController006_Init(struct w_steam_iface return params._ret; } -bool __thiscall winISteamController_SteamController006_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamController_SteamController006_Shutdown(struct w_steam_iface *_this) { struct ISteamController_SteamController006_Shutdown_params params = { @@ -1190,7 +1190,7 @@ int32_t __thiscall winISteamController_SteamController006_GetConnectedController return params._ret; } -bool __thiscall winISteamController_SteamController006_ShowBindingPanel(struct w_steam_iface *_this, uint64_t controllerHandle) +int8_t __thiscall winISteamController_SteamController006_ShowBindingPanel(struct w_steam_iface *_this, uint64_t controllerHandle) { struct ISteamController_SteamController006_ShowBindingPanel_params params = { @@ -1474,7 +1474,7 @@ ControllerMotionData_t * __thiscall winISteamController_SteamController006_GetMo return params._ret; } -bool __thiscall winISteamController_SteamController006_ShowDigitalActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t digitalActionHandle, float flScale, float flXPosition, float flYPosition) +int8_t __thiscall winISteamController_SteamController006_ShowDigitalActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t digitalActionHandle, float flScale, float flXPosition, float flYPosition) { struct ISteamController_SteamController006_ShowDigitalActionOrigins_params params = { @@ -1490,7 +1490,7 @@ bool __thiscall winISteamController_SteamController006_ShowDigitalActionOrigins( return params._ret; } -bool __thiscall winISteamController_SteamController006_ShowAnalogActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t analogActionHandle, float flScale, float flXPosition, float flYPosition) +int8_t __thiscall winISteamController_SteamController006_ShowAnalogActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t analogActionHandle, float flScale, float flXPosition, float flYPosition) { struct ISteamController_SteamController006_ShowAnalogActionOrigins_params params = { @@ -1614,7 +1614,7 @@ DEFINE_THISCALL_WRAPPER(winISteamController_SteamController007_GetActionOriginFr DEFINE_THISCALL_WRAPPER(winISteamController_SteamController007_TranslateActionOrigin, 12) DEFINE_THISCALL_WRAPPER(winISteamController_SteamController007_GetControllerBindingRevision, 20) -bool __thiscall winISteamController_SteamController007_Init(struct w_steam_iface *_this) +int8_t __thiscall winISteamController_SteamController007_Init(struct w_steam_iface *_this) { struct ISteamController_SteamController007_Init_params params = { @@ -1625,7 +1625,7 @@ bool __thiscall winISteamController_SteamController007_Init(struct w_steam_iface return params._ret; } -bool __thiscall winISteamController_SteamController007_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamController_SteamController007_Shutdown(struct w_steam_iface *_this) { struct ISteamController_SteamController007_Shutdown_params params = { @@ -1918,7 +1918,7 @@ void __thiscall winISteamController_SteamController007_SetLEDColor(struct w_stea STEAMCLIENT_CALL( ISteamController_SteamController007_SetLEDColor, ¶ms ); } -bool __thiscall winISteamController_SteamController007_ShowBindingPanel(struct w_steam_iface *_this, uint64_t controllerHandle) +int8_t __thiscall winISteamController_SteamController007_ShowBindingPanel(struct w_steam_iface *_this, uint64_t controllerHandle) { struct ISteamController_SteamController007_ShowBindingPanel_params params = { @@ -2004,7 +2004,7 @@ uint32_t __thiscall winISteamController_SteamController007_TranslateActionOrigin return params._ret; } -bool __thiscall winISteamController_SteamController007_GetControllerBindingRevision(struct w_steam_iface *_this, uint64_t controllerHandle, int32_t *pMajor, int32_t *pMinor) +int8_t __thiscall winISteamController_SteamController007_GetControllerBindingRevision(struct w_steam_iface *_this, uint64_t controllerHandle, int32_t *pMajor, int32_t *pMinor) { struct ISteamController_SteamController007_GetControllerBindingRevision_params params = { @@ -2105,7 +2105,7 @@ DEFINE_THISCALL_WRAPPER(winISteamController_SteamController008_GetActionOriginFr DEFINE_THISCALL_WRAPPER(winISteamController_SteamController008_TranslateActionOrigin, 12) DEFINE_THISCALL_WRAPPER(winISteamController_SteamController008_GetControllerBindingRevision, 20) -bool __thiscall winISteamController_SteamController008_Init(struct w_steam_iface *_this) +int8_t __thiscall winISteamController_SteamController008_Init(struct w_steam_iface *_this) { struct ISteamController_SteamController008_Init_params params = { @@ -2116,7 +2116,7 @@ bool __thiscall winISteamController_SteamController008_Init(struct w_steam_iface return params._ret; } -bool __thiscall winISteamController_SteamController008_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamController_SteamController008_Shutdown(struct w_steam_iface *_this) { struct ISteamController_SteamController008_Shutdown_params params = { @@ -2409,7 +2409,7 @@ void __thiscall winISteamController_SteamController008_SetLEDColor(struct w_stea STEAMCLIENT_CALL( ISteamController_SteamController008_SetLEDColor, ¶ms ); } -bool __thiscall winISteamController_SteamController008_ShowBindingPanel(struct w_steam_iface *_this, uint64_t controllerHandle) +int8_t __thiscall winISteamController_SteamController008_ShowBindingPanel(struct w_steam_iface *_this, uint64_t controllerHandle) { struct ISteamController_SteamController008_ShowBindingPanel_params params = { @@ -2495,7 +2495,7 @@ uint32_t __thiscall winISteamController_SteamController008_TranslateActionOrigin return params._ret; } -bool __thiscall winISteamController_SteamController008_GetControllerBindingRevision(struct w_steam_iface *_this, uint64_t controllerHandle, int32_t *pMajor, int32_t *pMinor) +int8_t __thiscall winISteamController_SteamController008_GetControllerBindingRevision(struct w_steam_iface *_this, uint64_t controllerHandle, int32_t *pMajor, int32_t *pMinor) { struct ISteamController_SteamController008_GetControllerBindingRevision_params params = { diff --git a/lsteamclient/winISteamFriends.c b/lsteamclient/winISteamFriends.c index 396588d5..9b3e7878 100644 --- a/lsteamclient/winISteamFriends.c +++ b/lsteamclient/winISteamFriends.c @@ -75,7 +75,7 @@ void __thiscall winISteamFriends_SteamFriends001_SetPersonaState(struct w_steam_ STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_SetPersonaState, ¶ms ); } -bool __thiscall winISteamFriends_SteamFriends001_AddFriend(struct w_steam_iface *_this, CSteamID steamIDFriend) +int8_t __thiscall winISteamFriends_SteamFriends001_AddFriend(struct w_steam_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends001_AddFriend_params params = { @@ -87,7 +87,7 @@ bool __thiscall winISteamFriends_SteamFriends001_AddFriend(struct w_steam_iface return params._ret; } -bool __thiscall winISteamFriends_SteamFriends001_RemoveFriend(struct w_steam_iface *_this, CSteamID steamIDFriend) +int8_t __thiscall winISteamFriends_SteamFriends001_RemoveFriend(struct w_steam_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends001_RemoveFriend_params params = { @@ -99,7 +99,7 @@ bool __thiscall winISteamFriends_SteamFriends001_RemoveFriend(struct w_steam_ifa return params._ret; } -bool __thiscall winISteamFriends_SteamFriends001_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend) +int8_t __thiscall winISteamFriends_SteamFriends001_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends001_HasFriend_params params = { @@ -135,7 +135,7 @@ uint32_t __thiscall winISteamFriends_SteamFriends001_GetFriendPersonaState(struc return params._ret; } -bool __thiscall winISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t *pnGameID, uint32_t *punGameIP, uint16_t *pusGamePort) +int8_t __thiscall winISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t *pnGameID, uint32_t *punGameIP, uint16_t *pusGamePort) { struct ISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed_params params = { @@ -266,7 +266,7 @@ int32_t __thiscall winISteamFriends_SteamFriends001_GetChatMessage(struct w_stea return params._ret; } -bool __thiscall winISteamFriends_SteamFriends001_SendMsgToFriend_2(struct w_steam_iface *_this, CSteamID steamIDFriend, uint32_t eChatEntryType, const void *pvMsgBody, int32_t cubMsgBody) +int8_t __thiscall winISteamFriends_SteamFriends001_SendMsgToFriend_2(struct w_steam_iface *_this, CSteamID steamIDFriend, uint32_t eChatEntryType, const void *pvMsgBody, int32_t cubMsgBody) { struct ISteamFriends_SteamFriends001_SendMsgToFriend_2_params params = { @@ -316,7 +316,7 @@ void __thiscall winISteamFriends_SteamFriends001_ClearChatHistory(struct w_steam STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_ClearChatHistory, ¶ms ); } -bool __thiscall winISteamFriends_SteamFriends001_InviteFriendByEmail(struct w_steam_iface *_this, const char *pchEmailAccount) +int8_t __thiscall winISteamFriends_SteamFriends001_InviteFriendByEmail(struct w_steam_iface *_this, const char *pchEmailAccount) { struct ISteamFriends_SteamFriends001_InviteFriendByEmail_params params = { @@ -339,7 +339,7 @@ int32_t __thiscall winISteamFriends_SteamFriends001_GetBlockedFriendCount(struct return params._ret; } -bool __thiscall winISteamFriends_SteamFriends001_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, uint64_t *pulGameID, uint32_t *punGameIP, uint16_t *pusGamePort) +int8_t __thiscall winISteamFriends_SteamFriends001_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, uint64_t *pulGameID, uint32_t *punGameIP, uint16_t *pusGamePort) { struct ISteamFriends_SteamFriends001_GetFriendGamePlayed_params params = { @@ -354,7 +354,7 @@ bool __thiscall winISteamFriends_SteamFriends001_GetFriendGamePlayed(struct w_st return params._ret; } -bool __thiscall winISteamFriends_SteamFriends001_GetFriendGamePlayed2(struct w_steam_iface *_this, CSteamID steamIDFriend, uint64_t *pulGameID, uint32_t *punGameIP, uint16_t *pusGamePort, uint16_t *pusQueryPort) +int8_t __thiscall winISteamFriends_SteamFriends001_GetFriendGamePlayed2(struct w_steam_iface *_this, CSteamID steamIDFriend, uint64_t *pulGameID, uint32_t *punGameIP, uint16_t *pusGamePort, uint16_t *pusQueryPort) { struct ISteamFriends_SteamFriends001_GetFriendGamePlayed2_params params = { @@ -578,7 +578,7 @@ const char * __thiscall winISteamFriends_SteamFriends002_GetFriendRegValue(struc return params._ret; } -bool __thiscall winISteamFriends_SteamFriends002_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, uint64_t *pulGameID, uint32_t *punGameIP, uint16_t *pusGamePort, uint16_t *pusQueryPort) +int8_t __thiscall winISteamFriends_SteamFriends002_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, uint64_t *pulGameID, uint32_t *punGameIP, uint16_t *pusGamePort, uint16_t *pusQueryPort) { struct ISteamFriends_SteamFriends002_GetFriendGamePlayed_params params = { @@ -607,7 +607,7 @@ const char * __thiscall winISteamFriends_SteamFriends002_GetFriendPersonaNameHis return params._ret; } -bool __thiscall winISteamFriends_SteamFriends002_AddFriend(struct w_steam_iface *_this, CSteamID steamIDFriend) +int8_t __thiscall winISteamFriends_SteamFriends002_AddFriend(struct w_steam_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends002_AddFriend_params params = { @@ -619,7 +619,7 @@ bool __thiscall winISteamFriends_SteamFriends002_AddFriend(struct w_steam_iface return params._ret; } -bool __thiscall winISteamFriends_SteamFriends002_RemoveFriend(struct w_steam_iface *_this, CSteamID steamIDFriend) +int8_t __thiscall winISteamFriends_SteamFriends002_RemoveFriend(struct w_steam_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends002_RemoveFriend_params params = { @@ -631,7 +631,7 @@ bool __thiscall winISteamFriends_SteamFriends002_RemoveFriend(struct w_steam_ifa return params._ret; } -bool __thiscall winISteamFriends_SteamFriends002_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends002_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends002_HasFriend_params params = { @@ -656,7 +656,7 @@ int32_t __thiscall winISteamFriends_SteamFriends002_AddFriendByName(struct w_ste return params._ret; } -bool __thiscall winISteamFriends_SteamFriends002_InviteFriendByEmail(struct w_steam_iface *_this, const char *pchEmailAccount) +int8_t __thiscall winISteamFriends_SteamFriends002_InviteFriendByEmail(struct w_steam_iface *_this, const char *pchEmailAccount) { struct ISteamFriends_SteamFriends002_InviteFriendByEmail_params params = { @@ -684,7 +684,7 @@ int32_t __thiscall winISteamFriends_SteamFriends002_GetChatMessage(struct w_stea return params._ret; } -bool __thiscall winISteamFriends_SteamFriends002_SendMsgToFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, uint32_t eChatEntryType, const void *pvMsgBody, int32_t cubMsgBody) +int8_t __thiscall winISteamFriends_SteamFriends002_SendMsgToFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, uint32_t eChatEntryType, const void *pvMsgBody, int32_t cubMsgBody) { struct ISteamFriends_SteamFriends002_SendMsgToFriend_params params = { @@ -770,7 +770,7 @@ const char * __thiscall winISteamFriends_SteamFriends002_GetClanName(struct w_st return params._ret; } -bool __thiscall winISteamFriends_SteamFriends002_InviteFriendToClan(struct w_steam_iface *_this, CSteamID steamIDFriend, CSteamID steamIDClan) +int8_t __thiscall winISteamFriends_SteamFriends002_InviteFriendToClan(struct w_steam_iface *_this, CSteamID steamIDFriend, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends002_InviteFriendToClan_params params = { @@ -783,7 +783,7 @@ bool __thiscall winISteamFriends_SteamFriends002_InviteFriendToClan(struct w_ste return params._ret; } -bool __thiscall winISteamFriends_SteamFriends002_AcknowledgeInviteToClan(struct w_steam_iface *_this, CSteamID steamIDClan, bool bAcceptOrDenyClanInvite) +int8_t __thiscall winISteamFriends_SteamFriends002_AcknowledgeInviteToClan(struct w_steam_iface *_this, CSteamID steamIDClan, int8_t bAcceptOrDenyClanInvite) { struct ISteamFriends_SteamFriends002_AcknowledgeInviteToClan_params params = { @@ -998,7 +998,7 @@ int32_t __thiscall winISteamFriends_SteamFriends003_GetFriendAvatar(struct w_ste return params._ret; } -bool __thiscall winISteamFriends_SteamFriends003_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, uint64_t *pulGameID, uint32_t *punGameIP, uint16_t *pusGamePort, uint16_t *pusQueryPort) +int8_t __thiscall winISteamFriends_SteamFriends003_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, uint64_t *pulGameID, uint32_t *punGameIP, uint16_t *pusGamePort, uint16_t *pusQueryPort) { struct ISteamFriends_SteamFriends003_GetFriendGamePlayed_params params = { @@ -1027,7 +1027,7 @@ const char * __thiscall winISteamFriends_SteamFriends003_GetFriendPersonaNameHis return params._ret; } -bool __thiscall winISteamFriends_SteamFriends003_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends003_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends003_HasFriend_params params = { @@ -1102,7 +1102,7 @@ CSteamID * __thiscall winISteamFriends_SteamFriends003_GetFriendFromSourceByInde return params._ret; } -bool __thiscall winISteamFriends_SteamFriends003_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) +int8_t __thiscall winISteamFriends_SteamFriends003_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends003_IsUserInSource_params params = { @@ -1115,7 +1115,7 @@ bool __thiscall winISteamFriends_SteamFriends003_IsUserInSource(struct w_steam_i return params._ret; } -void __thiscall winISteamFriends_SteamFriends003_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, bool bSpeaking) +void __thiscall winISteamFriends_SteamFriends003_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) { struct ISteamFriends_SteamFriends003_SetInGameVoiceSpeaking_params params = { @@ -1305,7 +1305,7 @@ int32_t __thiscall winISteamFriends_SteamFriends004_GetFriendAvatar(struct w_ste return params._ret; } -bool __thiscall winISteamFriends_SteamFriends004_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, uint64_t *pulGameID, uint32_t *punGameIP, uint16_t *pusGamePort, uint16_t *pusQueryPort) +int8_t __thiscall winISteamFriends_SteamFriends004_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, uint64_t *pulGameID, uint32_t *punGameIP, uint16_t *pusGamePort, uint16_t *pusQueryPort) { struct ISteamFriends_SteamFriends004_GetFriendGamePlayed_params params = { @@ -1334,7 +1334,7 @@ const char * __thiscall winISteamFriends_SteamFriends004_GetFriendPersonaNameHis return params._ret; } -bool __thiscall winISteamFriends_SteamFriends004_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends004_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends004_HasFriend_params params = { @@ -1409,7 +1409,7 @@ CSteamID * __thiscall winISteamFriends_SteamFriends004_GetFriendFromSourceByInde return params._ret; } -bool __thiscall winISteamFriends_SteamFriends004_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) +int8_t __thiscall winISteamFriends_SteamFriends004_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends004_IsUserInSource_params params = { @@ -1422,7 +1422,7 @@ bool __thiscall winISteamFriends_SteamFriends004_IsUserInSource(struct w_steam_i return params._ret; } -void __thiscall winISteamFriends_SteamFriends004_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, bool bSpeaking) +void __thiscall winISteamFriends_SteamFriends004_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) { struct ISteamFriends_SteamFriends004_SetInGameVoiceSpeaking_params params = { @@ -1616,7 +1616,7 @@ int32_t __thiscall winISteamFriends_SteamFriends005_GetFriendAvatar(struct w_ste return params._ret; } -bool __thiscall winISteamFriends_SteamFriends005_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) +int8_t __thiscall winISteamFriends_SteamFriends005_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { struct ISteamFriends_SteamFriends005_GetFriendGamePlayed_params params = { @@ -1642,7 +1642,7 @@ const char * __thiscall winISteamFriends_SteamFriends005_GetFriendPersonaNameHis return params._ret; } -bool __thiscall winISteamFriends_SteamFriends005_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends005_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends005_HasFriend_params params = { @@ -1717,7 +1717,7 @@ CSteamID * __thiscall winISteamFriends_SteamFriends005_GetFriendFromSourceByInde return params._ret; } -bool __thiscall winISteamFriends_SteamFriends005_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) +int8_t __thiscall winISteamFriends_SteamFriends005_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends005_IsUserInSource_params params = { @@ -1730,7 +1730,7 @@ bool __thiscall winISteamFriends_SteamFriends005_IsUserInSource(struct w_steam_i return params._ret; } -void __thiscall winISteamFriends_SteamFriends005_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, bool bSpeaking) +void __thiscall winISteamFriends_SteamFriends005_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) { struct ISteamFriends_SteamFriends005_SetInGameVoiceSpeaking_params params = { @@ -1975,7 +1975,7 @@ int32_t __thiscall winISteamFriends_SteamFriends006_GetFriendAvatar(struct w_ste return params._ret; } -bool __thiscall winISteamFriends_SteamFriends006_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) +int8_t __thiscall winISteamFriends_SteamFriends006_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { struct ISteamFriends_SteamFriends006_GetFriendGamePlayed_params params = { @@ -2001,7 +2001,7 @@ const char * __thiscall winISteamFriends_SteamFriends006_GetFriendPersonaNameHis return params._ret; } -bool __thiscall winISteamFriends_SteamFriends006_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends006_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends006_HasFriend_params params = { @@ -2088,7 +2088,7 @@ CSteamID * __thiscall winISteamFriends_SteamFriends006_GetFriendFromSourceByInde return params._ret; } -bool __thiscall winISteamFriends_SteamFriends006_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) +int8_t __thiscall winISteamFriends_SteamFriends006_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends006_IsUserInSource_params params = { @@ -2101,7 +2101,7 @@ bool __thiscall winISteamFriends_SteamFriends006_IsUserInSource(struct w_steam_i return params._ret; } -void __thiscall winISteamFriends_SteamFriends006_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, bool bSpeaking) +void __thiscall winISteamFriends_SteamFriends006_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) { struct ISteamFriends_SteamFriends006_SetInGameVoiceSpeaking_params params = { @@ -2348,7 +2348,7 @@ const char * __thiscall winISteamFriends_SteamFriends007_GetFriendPersonaName(st return params._ret; } -bool __thiscall winISteamFriends_SteamFriends007_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) +int8_t __thiscall winISteamFriends_SteamFriends007_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { struct ISteamFriends_SteamFriends007_GetFriendGamePlayed_params params = { @@ -2374,7 +2374,7 @@ const char * __thiscall winISteamFriends_SteamFriends007_GetFriendPersonaNameHis return params._ret; } -bool __thiscall winISteamFriends_SteamFriends007_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends007_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends007_HasFriend_params params = { @@ -2461,7 +2461,7 @@ CSteamID * __thiscall winISteamFriends_SteamFriends007_GetFriendFromSourceByInde return params._ret; } -bool __thiscall winISteamFriends_SteamFriends007_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) +int8_t __thiscall winISteamFriends_SteamFriends007_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends007_IsUserInSource_params params = { @@ -2474,7 +2474,7 @@ bool __thiscall winISteamFriends_SteamFriends007_IsUserInSource(struct w_steam_i return params._ret; } -void __thiscall winISteamFriends_SteamFriends007_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, bool bSpeaking) +void __thiscall winISteamFriends_SteamFriends007_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) { struct ISteamFriends_SteamFriends007_SetInGameVoiceSpeaking_params params = { @@ -2765,7 +2765,7 @@ const char * __thiscall winISteamFriends_SteamFriends008_GetFriendPersonaName(st return params._ret; } -bool __thiscall winISteamFriends_SteamFriends008_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) +int8_t __thiscall winISteamFriends_SteamFriends008_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { struct ISteamFriends_SteamFriends008_GetFriendGamePlayed_params params = { @@ -2791,7 +2791,7 @@ const char * __thiscall winISteamFriends_SteamFriends008_GetFriendPersonaNameHis return params._ret; } -bool __thiscall winISteamFriends_SteamFriends008_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends008_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends008_HasFriend_params params = { @@ -2878,7 +2878,7 @@ CSteamID * __thiscall winISteamFriends_SteamFriends008_GetFriendFromSourceByInde return params._ret; } -bool __thiscall winISteamFriends_SteamFriends008_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) +int8_t __thiscall winISteamFriends_SteamFriends008_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends008_IsUserInSource_params params = { @@ -2891,7 +2891,7 @@ bool __thiscall winISteamFriends_SteamFriends008_IsUserInSource(struct w_steam_i return params._ret; } -void __thiscall winISteamFriends_SteamFriends008_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, bool bSpeaking) +void __thiscall winISteamFriends_SteamFriends008_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) { struct ISteamFriends_SteamFriends008_SetInGameVoiceSpeaking_params params = { @@ -3006,7 +3006,7 @@ int32_t __thiscall winISteamFriends_SteamFriends008_GetLargeFriendAvatar(struct return params._ret; } -bool __thiscall winISteamFriends_SteamFriends008_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, bool bRequireNameOnly) +int8_t __thiscall winISteamFriends_SteamFriends008_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bRequireNameOnly) { struct ISteamFriends_SteamFriends008_RequestUserInformation_params params = { @@ -3273,7 +3273,7 @@ const char * __thiscall winISteamFriends_SteamFriends009_GetFriendPersonaName(st return params._ret; } -bool __thiscall winISteamFriends_SteamFriends009_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) +int8_t __thiscall winISteamFriends_SteamFriends009_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { struct ISteamFriends_SteamFriends009_GetFriendGamePlayed_params params = { @@ -3299,7 +3299,7 @@ const char * __thiscall winISteamFriends_SteamFriends009_GetFriendPersonaNameHis return params._ret; } -bool __thiscall winISteamFriends_SteamFriends009_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends009_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends009_HasFriend_params params = { @@ -3386,7 +3386,7 @@ CSteamID * __thiscall winISteamFriends_SteamFriends009_GetFriendFromSourceByInde return params._ret; } -bool __thiscall winISteamFriends_SteamFriends009_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) +int8_t __thiscall winISteamFriends_SteamFriends009_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends009_IsUserInSource_params params = { @@ -3399,7 +3399,7 @@ bool __thiscall winISteamFriends_SteamFriends009_IsUserInSource(struct w_steam_i return params._ret; } -void __thiscall winISteamFriends_SteamFriends009_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, bool bSpeaking) +void __thiscall winISteamFriends_SteamFriends009_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) { struct ISteamFriends_SteamFriends009_SetInGameVoiceSpeaking_params params = { @@ -3514,7 +3514,7 @@ int32_t __thiscall winISteamFriends_SteamFriends009_GetLargeFriendAvatar(struct return params._ret; } -bool __thiscall winISteamFriends_SteamFriends009_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, bool bRequireNameOnly) +int8_t __thiscall winISteamFriends_SteamFriends009_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bRequireNameOnly) { struct ISteamFriends_SteamFriends009_RequestUserInformation_params params = { @@ -3589,7 +3589,7 @@ uint32_t __thiscall winISteamFriends_SteamFriends009_GetUserRestrictions(struct return params._ret; } -bool __thiscall winISteamFriends_SteamFriends009_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamFriends_SteamFriends009_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) { struct ISteamFriends_SteamFriends009_SetRichPresence_params params = { @@ -3650,7 +3650,7 @@ const char * __thiscall winISteamFriends_SteamFriends009_GetFriendRichPresenceKe return params._ret; } -bool __thiscall winISteamFriends_SteamFriends009_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) +int8_t __thiscall winISteamFriends_SteamFriends009_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) { struct ISteamFriends_SteamFriends009_InviteUserToGame_params params = { @@ -3928,7 +3928,7 @@ const char * __thiscall winISteamFriends_SteamFriends010_GetFriendPersonaName(st return params._ret; } -bool __thiscall winISteamFriends_SteamFriends010_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) +int8_t __thiscall winISteamFriends_SteamFriends010_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { struct ISteamFriends_SteamFriends010_GetFriendGamePlayed_params params = { @@ -3954,7 +3954,7 @@ const char * __thiscall winISteamFriends_SteamFriends010_GetFriendPersonaNameHis return params._ret; } -bool __thiscall winISteamFriends_SteamFriends010_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends010_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends010_HasFriend_params params = { @@ -4015,7 +4015,7 @@ const char * __thiscall winISteamFriends_SteamFriends010_GetClanTag(struct w_ste return params._ret; } -bool __thiscall winISteamFriends_SteamFriends010_GetClanActivityCounts(struct w_steam_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) +int8_t __thiscall winISteamFriends_SteamFriends010_GetClanActivityCounts(struct w_steam_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) { struct ISteamFriends_SteamFriends010_GetClanActivityCounts_params params = { @@ -4069,7 +4069,7 @@ CSteamID * __thiscall winISteamFriends_SteamFriends010_GetFriendFromSourceByInde return params._ret; } -bool __thiscall winISteamFriends_SteamFriends010_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) +int8_t __thiscall winISteamFriends_SteamFriends010_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends010_IsUserInSource_params params = { @@ -4082,7 +4082,7 @@ bool __thiscall winISteamFriends_SteamFriends010_IsUserInSource(struct w_steam_i return params._ret; } -void __thiscall winISteamFriends_SteamFriends010_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, bool bSpeaking) +void __thiscall winISteamFriends_SteamFriends010_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) { struct ISteamFriends_SteamFriends010_SetInGameVoiceSpeaking_params params = { @@ -4197,7 +4197,7 @@ int32_t __thiscall winISteamFriends_SteamFriends010_GetLargeFriendAvatar(struct return params._ret; } -bool __thiscall winISteamFriends_SteamFriends010_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, bool bRequireNameOnly) +int8_t __thiscall winISteamFriends_SteamFriends010_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bRequireNameOnly) { struct ISteamFriends_SteamFriends010_RequestUserInformation_params params = { @@ -4272,7 +4272,7 @@ uint32_t __thiscall winISteamFriends_SteamFriends010_GetUserRestrictions(struct return params._ret; } -bool __thiscall winISteamFriends_SteamFriends010_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamFriends_SteamFriends010_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) { struct ISteamFriends_SteamFriends010_SetRichPresence_params params = { @@ -4333,7 +4333,7 @@ const char * __thiscall winISteamFriends_SteamFriends010_GetFriendRichPresenceKe return params._ret; } -bool __thiscall winISteamFriends_SteamFriends010_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) +int8_t __thiscall winISteamFriends_SteamFriends010_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) { struct ISteamFriends_SteamFriends010_InviteUserToGame_params params = { @@ -4406,7 +4406,7 @@ uint64_t __thiscall winISteamFriends_SteamFriends010_JoinClanChatRoom(struct w_s return params._ret; } -bool __thiscall winISteamFriends_SteamFriends010_LeaveClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) +int8_t __thiscall winISteamFriends_SteamFriends010_LeaveClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends010_LeaveClanChatRoom_params params = { @@ -4444,7 +4444,7 @@ CSteamID * __thiscall winISteamFriends_SteamFriends010_GetChatMemberByIndex(stru return params._ret; } -bool __thiscall winISteamFriends_SteamFriends010_SendClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, const char *pchText) +int8_t __thiscall winISteamFriends_SteamFriends010_SendClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, const char *pchText) { struct ISteamFriends_SteamFriends010_SendClanChatMessage_params params = { @@ -4474,7 +4474,7 @@ int32_t __thiscall winISteamFriends_SteamFriends010_GetClanChatMessage(struct w_ return params._ret; } -bool __thiscall winISteamFriends_SteamFriends010_IsClanChatAdmin(struct w_steam_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) +int8_t __thiscall winISteamFriends_SteamFriends010_IsClanChatAdmin(struct w_steam_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) { struct ISteamFriends_SteamFriends010_IsClanChatAdmin_params params = { @@ -4487,7 +4487,7 @@ bool __thiscall winISteamFriends_SteamFriends010_IsClanChatAdmin(struct w_steam_ return params._ret; } -bool __thiscall winISteamFriends_SteamFriends010_IsClanChatWindowOpenInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends010_IsClanChatWindowOpenInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends010_IsClanChatWindowOpenInSteam_params params = { @@ -4499,7 +4499,7 @@ bool __thiscall winISteamFriends_SteamFriends010_IsClanChatWindowOpenInSteam(str return params._ret; } -bool __thiscall winISteamFriends_SteamFriends010_OpenClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends010_OpenClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends010_OpenClanChatWindowInSteam_params params = { @@ -4511,7 +4511,7 @@ bool __thiscall winISteamFriends_SteamFriends010_OpenClanChatWindowInSteam(struc return params._ret; } -bool __thiscall winISteamFriends_SteamFriends010_CloseClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends010_CloseClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends010_CloseClanChatWindowInSteam_params params = { @@ -4523,7 +4523,7 @@ bool __thiscall winISteamFriends_SteamFriends010_CloseClanChatWindowInSteam(stru return params._ret; } -bool __thiscall winISteamFriends_SteamFriends010_SetListenForFriendsMessages(struct w_steam_iface *_this, bool bInterceptEnabled) +int8_t __thiscall winISteamFriends_SteamFriends010_SetListenForFriendsMessages(struct w_steam_iface *_this, int8_t bInterceptEnabled) { struct ISteamFriends_SteamFriends010_SetListenForFriendsMessages_params params = { @@ -4535,7 +4535,7 @@ bool __thiscall winISteamFriends_SteamFriends010_SetListenForFriendsMessages(str return params._ret; } -bool __thiscall winISteamFriends_SteamFriends010_ReplyToFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) +int8_t __thiscall winISteamFriends_SteamFriends010_ReplyToFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) { struct ISteamFriends_SteamFriends010_ReplyToFriendMessage_params params = { @@ -4800,7 +4800,7 @@ const char * __thiscall winISteamFriends_SteamFriends011_GetFriendPersonaName(st return params._ret; } -bool __thiscall winISteamFriends_SteamFriends011_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) +int8_t __thiscall winISteamFriends_SteamFriends011_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { struct ISteamFriends_SteamFriends011_GetFriendGamePlayed_params params = { @@ -4826,7 +4826,7 @@ const char * __thiscall winISteamFriends_SteamFriends011_GetFriendPersonaNameHis return params._ret; } -bool __thiscall winISteamFriends_SteamFriends011_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends011_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends011_HasFriend_params params = { @@ -4887,7 +4887,7 @@ const char * __thiscall winISteamFriends_SteamFriends011_GetClanTag(struct w_ste return params._ret; } -bool __thiscall winISteamFriends_SteamFriends011_GetClanActivityCounts(struct w_steam_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) +int8_t __thiscall winISteamFriends_SteamFriends011_GetClanActivityCounts(struct w_steam_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) { struct ISteamFriends_SteamFriends011_GetClanActivityCounts_params params = { @@ -4941,7 +4941,7 @@ CSteamID * __thiscall winISteamFriends_SteamFriends011_GetFriendFromSourceByInde return params._ret; } -bool __thiscall winISteamFriends_SteamFriends011_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) +int8_t __thiscall winISteamFriends_SteamFriends011_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends011_IsUserInSource_params params = { @@ -4954,7 +4954,7 @@ bool __thiscall winISteamFriends_SteamFriends011_IsUserInSource(struct w_steam_i return params._ret; } -void __thiscall winISteamFriends_SteamFriends011_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, bool bSpeaking) +void __thiscall winISteamFriends_SteamFriends011_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) { struct ISteamFriends_SteamFriends011_SetInGameVoiceSpeaking_params params = { @@ -5069,7 +5069,7 @@ int32_t __thiscall winISteamFriends_SteamFriends011_GetLargeFriendAvatar(struct return params._ret; } -bool __thiscall winISteamFriends_SteamFriends011_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, bool bRequireNameOnly) +int8_t __thiscall winISteamFriends_SteamFriends011_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bRequireNameOnly) { struct ISteamFriends_SteamFriends011_RequestUserInformation_params params = { @@ -5144,7 +5144,7 @@ uint32_t __thiscall winISteamFriends_SteamFriends011_GetUserRestrictions(struct return params._ret; } -bool __thiscall winISteamFriends_SteamFriends011_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamFriends_SteamFriends011_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) { struct ISteamFriends_SteamFriends011_SetRichPresence_params params = { @@ -5216,7 +5216,7 @@ void __thiscall winISteamFriends_SteamFriends011_RequestFriendRichPresence(struc STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_RequestFriendRichPresence, ¶ms ); } -bool __thiscall winISteamFriends_SteamFriends011_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) +int8_t __thiscall winISteamFriends_SteamFriends011_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) { struct ISteamFriends_SteamFriends011_InviteUserToGame_params params = { @@ -5289,7 +5289,7 @@ uint64_t __thiscall winISteamFriends_SteamFriends011_JoinClanChatRoom(struct w_s return params._ret; } -bool __thiscall winISteamFriends_SteamFriends011_LeaveClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) +int8_t __thiscall winISteamFriends_SteamFriends011_LeaveClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends011_LeaveClanChatRoom_params params = { @@ -5327,7 +5327,7 @@ CSteamID * __thiscall winISteamFriends_SteamFriends011_GetChatMemberByIndex(stru return params._ret; } -bool __thiscall winISteamFriends_SteamFriends011_SendClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, const char *pchText) +int8_t __thiscall winISteamFriends_SteamFriends011_SendClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, const char *pchText) { struct ISteamFriends_SteamFriends011_SendClanChatMessage_params params = { @@ -5357,7 +5357,7 @@ int32_t __thiscall winISteamFriends_SteamFriends011_GetClanChatMessage(struct w_ return params._ret; } -bool __thiscall winISteamFriends_SteamFriends011_IsClanChatAdmin(struct w_steam_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) +int8_t __thiscall winISteamFriends_SteamFriends011_IsClanChatAdmin(struct w_steam_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) { struct ISteamFriends_SteamFriends011_IsClanChatAdmin_params params = { @@ -5370,7 +5370,7 @@ bool __thiscall winISteamFriends_SteamFriends011_IsClanChatAdmin(struct w_steam_ return params._ret; } -bool __thiscall winISteamFriends_SteamFriends011_IsClanChatWindowOpenInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends011_IsClanChatWindowOpenInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends011_IsClanChatWindowOpenInSteam_params params = { @@ -5382,7 +5382,7 @@ bool __thiscall winISteamFriends_SteamFriends011_IsClanChatWindowOpenInSteam(str return params._ret; } -bool __thiscall winISteamFriends_SteamFriends011_OpenClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends011_OpenClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends011_OpenClanChatWindowInSteam_params params = { @@ -5394,7 +5394,7 @@ bool __thiscall winISteamFriends_SteamFriends011_OpenClanChatWindowInSteam(struc return params._ret; } -bool __thiscall winISteamFriends_SteamFriends011_CloseClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends011_CloseClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends011_CloseClanChatWindowInSteam_params params = { @@ -5406,7 +5406,7 @@ bool __thiscall winISteamFriends_SteamFriends011_CloseClanChatWindowInSteam(stru return params._ret; } -bool __thiscall winISteamFriends_SteamFriends011_SetListenForFriendsMessages(struct w_steam_iface *_this, bool bInterceptEnabled) +int8_t __thiscall winISteamFriends_SteamFriends011_SetListenForFriendsMessages(struct w_steam_iface *_this, int8_t bInterceptEnabled) { struct ISteamFriends_SteamFriends011_SetListenForFriendsMessages_params params = { @@ -5418,7 +5418,7 @@ bool __thiscall winISteamFriends_SteamFriends011_SetListenForFriendsMessages(str return params._ret; } -bool __thiscall winISteamFriends_SteamFriends011_ReplyToFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) +int8_t __thiscall winISteamFriends_SteamFriends011_ReplyToFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) { struct ISteamFriends_SteamFriends011_ReplyToFriendMessage_params params = { @@ -5724,7 +5724,7 @@ const char * __thiscall winISteamFriends_SteamFriends012_GetFriendPersonaName(st return params._ret; } -bool __thiscall winISteamFriends_SteamFriends012_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) +int8_t __thiscall winISteamFriends_SteamFriends012_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { struct ISteamFriends_SteamFriends012_GetFriendGamePlayed_params params = { @@ -5750,7 +5750,7 @@ const char * __thiscall winISteamFriends_SteamFriends012_GetFriendPersonaNameHis return params._ret; } -bool __thiscall winISteamFriends_SteamFriends012_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends012_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends012_HasFriend_params params = { @@ -5811,7 +5811,7 @@ const char * __thiscall winISteamFriends_SteamFriends012_GetClanTag(struct w_ste return params._ret; } -bool __thiscall winISteamFriends_SteamFriends012_GetClanActivityCounts(struct w_steam_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) +int8_t __thiscall winISteamFriends_SteamFriends012_GetClanActivityCounts(struct w_steam_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) { struct ISteamFriends_SteamFriends012_GetClanActivityCounts_params params = { @@ -5865,7 +5865,7 @@ CSteamID * __thiscall winISteamFriends_SteamFriends012_GetFriendFromSourceByInde return params._ret; } -bool __thiscall winISteamFriends_SteamFriends012_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) +int8_t __thiscall winISteamFriends_SteamFriends012_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends012_IsUserInSource_params params = { @@ -5878,7 +5878,7 @@ bool __thiscall winISteamFriends_SteamFriends012_IsUserInSource(struct w_steam_i return params._ret; } -void __thiscall winISteamFriends_SteamFriends012_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, bool bSpeaking) +void __thiscall winISteamFriends_SteamFriends012_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) { struct ISteamFriends_SteamFriends012_SetInGameVoiceSpeaking_params params = { @@ -5993,7 +5993,7 @@ int32_t __thiscall winISteamFriends_SteamFriends012_GetLargeFriendAvatar(struct return params._ret; } -bool __thiscall winISteamFriends_SteamFriends012_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, bool bRequireNameOnly) +int8_t __thiscall winISteamFriends_SteamFriends012_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bRequireNameOnly) { struct ISteamFriends_SteamFriends012_RequestUserInformation_params params = { @@ -6068,7 +6068,7 @@ uint32_t __thiscall winISteamFriends_SteamFriends012_GetUserRestrictions(struct return params._ret; } -bool __thiscall winISteamFriends_SteamFriends012_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamFriends_SteamFriends012_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) { struct ISteamFriends_SteamFriends012_SetRichPresence_params params = { @@ -6140,7 +6140,7 @@ void __thiscall winISteamFriends_SteamFriends012_RequestFriendRichPresence(struc STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_RequestFriendRichPresence, ¶ms ); } -bool __thiscall winISteamFriends_SteamFriends012_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) +int8_t __thiscall winISteamFriends_SteamFriends012_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) { struct ISteamFriends_SteamFriends012_InviteUserToGame_params params = { @@ -6213,7 +6213,7 @@ uint64_t __thiscall winISteamFriends_SteamFriends012_JoinClanChatRoom(struct w_s return params._ret; } -bool __thiscall winISteamFriends_SteamFriends012_LeaveClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) +int8_t __thiscall winISteamFriends_SteamFriends012_LeaveClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends012_LeaveClanChatRoom_params params = { @@ -6251,7 +6251,7 @@ CSteamID * __thiscall winISteamFriends_SteamFriends012_GetChatMemberByIndex(stru return params._ret; } -bool __thiscall winISteamFriends_SteamFriends012_SendClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, const char *pchText) +int8_t __thiscall winISteamFriends_SteamFriends012_SendClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, const char *pchText) { struct ISteamFriends_SteamFriends012_SendClanChatMessage_params params = { @@ -6281,7 +6281,7 @@ int32_t __thiscall winISteamFriends_SteamFriends012_GetClanChatMessage(struct w_ return params._ret; } -bool __thiscall winISteamFriends_SteamFriends012_IsClanChatAdmin(struct w_steam_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) +int8_t __thiscall winISteamFriends_SteamFriends012_IsClanChatAdmin(struct w_steam_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) { struct ISteamFriends_SteamFriends012_IsClanChatAdmin_params params = { @@ -6294,7 +6294,7 @@ bool __thiscall winISteamFriends_SteamFriends012_IsClanChatAdmin(struct w_steam_ return params._ret; } -bool __thiscall winISteamFriends_SteamFriends012_IsClanChatWindowOpenInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends012_IsClanChatWindowOpenInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends012_IsClanChatWindowOpenInSteam_params params = { @@ -6306,7 +6306,7 @@ bool __thiscall winISteamFriends_SteamFriends012_IsClanChatWindowOpenInSteam(str return params._ret; } -bool __thiscall winISteamFriends_SteamFriends012_OpenClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends012_OpenClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends012_OpenClanChatWindowInSteam_params params = { @@ -6318,7 +6318,7 @@ bool __thiscall winISteamFriends_SteamFriends012_OpenClanChatWindowInSteam(struc return params._ret; } -bool __thiscall winISteamFriends_SteamFriends012_CloseClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends012_CloseClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends012_CloseClanChatWindowInSteam_params params = { @@ -6330,7 +6330,7 @@ bool __thiscall winISteamFriends_SteamFriends012_CloseClanChatWindowInSteam(stru return params._ret; } -bool __thiscall winISteamFriends_SteamFriends012_SetListenForFriendsMessages(struct w_steam_iface *_this, bool bInterceptEnabled) +int8_t __thiscall winISteamFriends_SteamFriends012_SetListenForFriendsMessages(struct w_steam_iface *_this, int8_t bInterceptEnabled) { struct ISteamFriends_SteamFriends012_SetListenForFriendsMessages_params params = { @@ -6342,7 +6342,7 @@ bool __thiscall winISteamFriends_SteamFriends012_SetListenForFriendsMessages(str return params._ret; } -bool __thiscall winISteamFriends_SteamFriends012_ReplyToFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) +int8_t __thiscall winISteamFriends_SteamFriends012_ReplyToFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) { struct ISteamFriends_SteamFriends012_ReplyToFriendMessage_params params = { @@ -6648,7 +6648,7 @@ const char * __thiscall winISteamFriends_SteamFriends013_GetFriendPersonaName(st return params._ret; } -bool __thiscall winISteamFriends_SteamFriends013_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) +int8_t __thiscall winISteamFriends_SteamFriends013_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { struct ISteamFriends_SteamFriends013_GetFriendGamePlayed_params params = { @@ -6674,7 +6674,7 @@ const char * __thiscall winISteamFriends_SteamFriends013_GetFriendPersonaNameHis return params._ret; } -bool __thiscall winISteamFriends_SteamFriends013_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends013_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends013_HasFriend_params params = { @@ -6735,7 +6735,7 @@ const char * __thiscall winISteamFriends_SteamFriends013_GetClanTag(struct w_ste return params._ret; } -bool __thiscall winISteamFriends_SteamFriends013_GetClanActivityCounts(struct w_steam_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) +int8_t __thiscall winISteamFriends_SteamFriends013_GetClanActivityCounts(struct w_steam_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) { struct ISteamFriends_SteamFriends013_GetClanActivityCounts_params params = { @@ -6789,7 +6789,7 @@ CSteamID * __thiscall winISteamFriends_SteamFriends013_GetFriendFromSourceByInde return params._ret; } -bool __thiscall winISteamFriends_SteamFriends013_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) +int8_t __thiscall winISteamFriends_SteamFriends013_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends013_IsUserInSource_params params = { @@ -6802,7 +6802,7 @@ bool __thiscall winISteamFriends_SteamFriends013_IsUserInSource(struct w_steam_i return params._ret; } -void __thiscall winISteamFriends_SteamFriends013_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, bool bSpeaking) +void __thiscall winISteamFriends_SteamFriends013_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) { struct ISteamFriends_SteamFriends013_SetInGameVoiceSpeaking_params params = { @@ -6918,7 +6918,7 @@ int32_t __thiscall winISteamFriends_SteamFriends013_GetLargeFriendAvatar(struct return params._ret; } -bool __thiscall winISteamFriends_SteamFriends013_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, bool bRequireNameOnly) +int8_t __thiscall winISteamFriends_SteamFriends013_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bRequireNameOnly) { struct ISteamFriends_SteamFriends013_RequestUserInformation_params params = { @@ -6993,7 +6993,7 @@ uint32_t __thiscall winISteamFriends_SteamFriends013_GetUserRestrictions(struct return params._ret; } -bool __thiscall winISteamFriends_SteamFriends013_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamFriends_SteamFriends013_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) { struct ISteamFriends_SteamFriends013_SetRichPresence_params params = { @@ -7065,7 +7065,7 @@ void __thiscall winISteamFriends_SteamFriends013_RequestFriendRichPresence(struc STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_RequestFriendRichPresence, ¶ms ); } -bool __thiscall winISteamFriends_SteamFriends013_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) +int8_t __thiscall winISteamFriends_SteamFriends013_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) { struct ISteamFriends_SteamFriends013_InviteUserToGame_params params = { @@ -7138,7 +7138,7 @@ uint64_t __thiscall winISteamFriends_SteamFriends013_JoinClanChatRoom(struct w_s return params._ret; } -bool __thiscall winISteamFriends_SteamFriends013_LeaveClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) +int8_t __thiscall winISteamFriends_SteamFriends013_LeaveClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends013_LeaveClanChatRoom_params params = { @@ -7176,7 +7176,7 @@ CSteamID * __thiscall winISteamFriends_SteamFriends013_GetChatMemberByIndex(stru return params._ret; } -bool __thiscall winISteamFriends_SteamFriends013_SendClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, const char *pchText) +int8_t __thiscall winISteamFriends_SteamFriends013_SendClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, const char *pchText) { struct ISteamFriends_SteamFriends013_SendClanChatMessage_params params = { @@ -7206,7 +7206,7 @@ int32_t __thiscall winISteamFriends_SteamFriends013_GetClanChatMessage(struct w_ return params._ret; } -bool __thiscall winISteamFriends_SteamFriends013_IsClanChatAdmin(struct w_steam_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) +int8_t __thiscall winISteamFriends_SteamFriends013_IsClanChatAdmin(struct w_steam_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) { struct ISteamFriends_SteamFriends013_IsClanChatAdmin_params params = { @@ -7219,7 +7219,7 @@ bool __thiscall winISteamFriends_SteamFriends013_IsClanChatAdmin(struct w_steam_ return params._ret; } -bool __thiscall winISteamFriends_SteamFriends013_IsClanChatWindowOpenInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends013_IsClanChatWindowOpenInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends013_IsClanChatWindowOpenInSteam_params params = { @@ -7231,7 +7231,7 @@ bool __thiscall winISteamFriends_SteamFriends013_IsClanChatWindowOpenInSteam(str return params._ret; } -bool __thiscall winISteamFriends_SteamFriends013_OpenClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends013_OpenClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends013_OpenClanChatWindowInSteam_params params = { @@ -7243,7 +7243,7 @@ bool __thiscall winISteamFriends_SteamFriends013_OpenClanChatWindowInSteam(struc return params._ret; } -bool __thiscall winISteamFriends_SteamFriends013_CloseClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends013_CloseClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends013_CloseClanChatWindowInSteam_params params = { @@ -7255,7 +7255,7 @@ bool __thiscall winISteamFriends_SteamFriends013_CloseClanChatWindowInSteam(stru return params._ret; } -bool __thiscall winISteamFriends_SteamFriends013_SetListenForFriendsMessages(struct w_steam_iface *_this, bool bInterceptEnabled) +int8_t __thiscall winISteamFriends_SteamFriends013_SetListenForFriendsMessages(struct w_steam_iface *_this, int8_t bInterceptEnabled) { struct ISteamFriends_SteamFriends013_SetListenForFriendsMessages_params params = { @@ -7267,7 +7267,7 @@ bool __thiscall winISteamFriends_SteamFriends013_SetListenForFriendsMessages(str return params._ret; } -bool __thiscall winISteamFriends_SteamFriends013_ReplyToFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) +int8_t __thiscall winISteamFriends_SteamFriends013_ReplyToFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) { struct ISteamFriends_SteamFriends013_ReplyToFriendMessage_params params = { @@ -7574,7 +7574,7 @@ const char * __thiscall winISteamFriends_SteamFriends014_GetFriendPersonaName(st return params._ret; } -bool __thiscall winISteamFriends_SteamFriends014_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) +int8_t __thiscall winISteamFriends_SteamFriends014_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { struct ISteamFriends_SteamFriends014_GetFriendGamePlayed_params params = { @@ -7612,7 +7612,7 @@ const char * __thiscall winISteamFriends_SteamFriends014_GetPlayerNickname(struc return params._ret; } -bool __thiscall winISteamFriends_SteamFriends014_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends014_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends014_HasFriend_params params = { @@ -7673,7 +7673,7 @@ const char * __thiscall winISteamFriends_SteamFriends014_GetClanTag(struct w_ste return params._ret; } -bool __thiscall winISteamFriends_SteamFriends014_GetClanActivityCounts(struct w_steam_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) +int8_t __thiscall winISteamFriends_SteamFriends014_GetClanActivityCounts(struct w_steam_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) { struct ISteamFriends_SteamFriends014_GetClanActivityCounts_params params = { @@ -7727,7 +7727,7 @@ CSteamID * __thiscall winISteamFriends_SteamFriends014_GetFriendFromSourceByInde return params._ret; } -bool __thiscall winISteamFriends_SteamFriends014_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) +int8_t __thiscall winISteamFriends_SteamFriends014_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends014_IsUserInSource_params params = { @@ -7740,7 +7740,7 @@ bool __thiscall winISteamFriends_SteamFriends014_IsUserInSource(struct w_steam_i return params._ret; } -void __thiscall winISteamFriends_SteamFriends014_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, bool bSpeaking) +void __thiscall winISteamFriends_SteamFriends014_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) { struct ISteamFriends_SteamFriends014_SetInGameVoiceSpeaking_params params = { @@ -7856,7 +7856,7 @@ int32_t __thiscall winISteamFriends_SteamFriends014_GetLargeFriendAvatar(struct return params._ret; } -bool __thiscall winISteamFriends_SteamFriends014_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, bool bRequireNameOnly) +int8_t __thiscall winISteamFriends_SteamFriends014_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bRequireNameOnly) { struct ISteamFriends_SteamFriends014_RequestUserInformation_params params = { @@ -7931,7 +7931,7 @@ uint32_t __thiscall winISteamFriends_SteamFriends014_GetUserRestrictions(struct return params._ret; } -bool __thiscall winISteamFriends_SteamFriends014_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamFriends_SteamFriends014_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) { struct ISteamFriends_SteamFriends014_SetRichPresence_params params = { @@ -8003,7 +8003,7 @@ void __thiscall winISteamFriends_SteamFriends014_RequestFriendRichPresence(struc STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_RequestFriendRichPresence, ¶ms ); } -bool __thiscall winISteamFriends_SteamFriends014_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) +int8_t __thiscall winISteamFriends_SteamFriends014_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) { struct ISteamFriends_SteamFriends014_InviteUserToGame_params params = { @@ -8076,7 +8076,7 @@ uint64_t __thiscall winISteamFriends_SteamFriends014_JoinClanChatRoom(struct w_s return params._ret; } -bool __thiscall winISteamFriends_SteamFriends014_LeaveClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) +int8_t __thiscall winISteamFriends_SteamFriends014_LeaveClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends014_LeaveClanChatRoom_params params = { @@ -8114,7 +8114,7 @@ CSteamID * __thiscall winISteamFriends_SteamFriends014_GetChatMemberByIndex(stru return params._ret; } -bool __thiscall winISteamFriends_SteamFriends014_SendClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, const char *pchText) +int8_t __thiscall winISteamFriends_SteamFriends014_SendClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, const char *pchText) { struct ISteamFriends_SteamFriends014_SendClanChatMessage_params params = { @@ -8144,7 +8144,7 @@ int32_t __thiscall winISteamFriends_SteamFriends014_GetClanChatMessage(struct w_ return params._ret; } -bool __thiscall winISteamFriends_SteamFriends014_IsClanChatAdmin(struct w_steam_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) +int8_t __thiscall winISteamFriends_SteamFriends014_IsClanChatAdmin(struct w_steam_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) { struct ISteamFriends_SteamFriends014_IsClanChatAdmin_params params = { @@ -8157,7 +8157,7 @@ bool __thiscall winISteamFriends_SteamFriends014_IsClanChatAdmin(struct w_steam_ return params._ret; } -bool __thiscall winISteamFriends_SteamFriends014_IsClanChatWindowOpenInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends014_IsClanChatWindowOpenInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends014_IsClanChatWindowOpenInSteam_params params = { @@ -8169,7 +8169,7 @@ bool __thiscall winISteamFriends_SteamFriends014_IsClanChatWindowOpenInSteam(str return params._ret; } -bool __thiscall winISteamFriends_SteamFriends014_OpenClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends014_OpenClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends014_OpenClanChatWindowInSteam_params params = { @@ -8181,7 +8181,7 @@ bool __thiscall winISteamFriends_SteamFriends014_OpenClanChatWindowInSteam(struc return params._ret; } -bool __thiscall winISteamFriends_SteamFriends014_CloseClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends014_CloseClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends014_CloseClanChatWindowInSteam_params params = { @@ -8193,7 +8193,7 @@ bool __thiscall winISteamFriends_SteamFriends014_CloseClanChatWindowInSteam(stru return params._ret; } -bool __thiscall winISteamFriends_SteamFriends014_SetListenForFriendsMessages(struct w_steam_iface *_this, bool bInterceptEnabled) +int8_t __thiscall winISteamFriends_SteamFriends014_SetListenForFriendsMessages(struct w_steam_iface *_this, int8_t bInterceptEnabled) { struct ISteamFriends_SteamFriends014_SetListenForFriendsMessages_params params = { @@ -8205,7 +8205,7 @@ bool __thiscall winISteamFriends_SteamFriends014_SetListenForFriendsMessages(str return params._ret; } -bool __thiscall winISteamFriends_SteamFriends014_ReplyToFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) +int8_t __thiscall winISteamFriends_SteamFriends014_ReplyToFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) { struct ISteamFriends_SteamFriends014_ReplyToFriendMessage_params params = { @@ -8521,7 +8521,7 @@ const char * __thiscall winISteamFriends_SteamFriends015_GetFriendPersonaName(st return params._ret; } -bool __thiscall winISteamFriends_SteamFriends015_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) +int8_t __thiscall winISteamFriends_SteamFriends015_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { struct ISteamFriends_SteamFriends015_GetFriendGamePlayed_params params = { @@ -8631,7 +8631,7 @@ void __thiscall winISteamFriends_SteamFriends015_GetFriendsGroupMembersList(stru STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetFriendsGroupMembersList, ¶ms ); } -bool __thiscall winISteamFriends_SteamFriends015_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends015_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends015_HasFriend_params params = { @@ -8692,7 +8692,7 @@ const char * __thiscall winISteamFriends_SteamFriends015_GetClanTag(struct w_ste return params._ret; } -bool __thiscall winISteamFriends_SteamFriends015_GetClanActivityCounts(struct w_steam_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) +int8_t __thiscall winISteamFriends_SteamFriends015_GetClanActivityCounts(struct w_steam_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) { struct ISteamFriends_SteamFriends015_GetClanActivityCounts_params params = { @@ -8746,7 +8746,7 @@ CSteamID * __thiscall winISteamFriends_SteamFriends015_GetFriendFromSourceByInde return params._ret; } -bool __thiscall winISteamFriends_SteamFriends015_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) +int8_t __thiscall winISteamFriends_SteamFriends015_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends015_IsUserInSource_params params = { @@ -8759,7 +8759,7 @@ bool __thiscall winISteamFriends_SteamFriends015_IsUserInSource(struct w_steam_i return params._ret; } -void __thiscall winISteamFriends_SteamFriends015_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, bool bSpeaking) +void __thiscall winISteamFriends_SteamFriends015_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) { struct ISteamFriends_SteamFriends015_SetInGameVoiceSpeaking_params params = { @@ -8875,7 +8875,7 @@ int32_t __thiscall winISteamFriends_SteamFriends015_GetLargeFriendAvatar(struct return params._ret; } -bool __thiscall winISteamFriends_SteamFriends015_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, bool bRequireNameOnly) +int8_t __thiscall winISteamFriends_SteamFriends015_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bRequireNameOnly) { struct ISteamFriends_SteamFriends015_RequestUserInformation_params params = { @@ -8950,7 +8950,7 @@ uint32_t __thiscall winISteamFriends_SteamFriends015_GetUserRestrictions(struct return params._ret; } -bool __thiscall winISteamFriends_SteamFriends015_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamFriends_SteamFriends015_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) { struct ISteamFriends_SteamFriends015_SetRichPresence_params params = { @@ -9022,7 +9022,7 @@ void __thiscall winISteamFriends_SteamFriends015_RequestFriendRichPresence(struc STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_RequestFriendRichPresence, ¶ms ); } -bool __thiscall winISteamFriends_SteamFriends015_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) +int8_t __thiscall winISteamFriends_SteamFriends015_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) { struct ISteamFriends_SteamFriends015_InviteUserToGame_params params = { @@ -9095,7 +9095,7 @@ uint64_t __thiscall winISteamFriends_SteamFriends015_JoinClanChatRoom(struct w_s return params._ret; } -bool __thiscall winISteamFriends_SteamFriends015_LeaveClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) +int8_t __thiscall winISteamFriends_SteamFriends015_LeaveClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends015_LeaveClanChatRoom_params params = { @@ -9133,7 +9133,7 @@ CSteamID * __thiscall winISteamFriends_SteamFriends015_GetChatMemberByIndex(stru return params._ret; } -bool __thiscall winISteamFriends_SteamFriends015_SendClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, const char *pchText) +int8_t __thiscall winISteamFriends_SteamFriends015_SendClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, const char *pchText) { struct ISteamFriends_SteamFriends015_SendClanChatMessage_params params = { @@ -9163,7 +9163,7 @@ int32_t __thiscall winISteamFriends_SteamFriends015_GetClanChatMessage(struct w_ return params._ret; } -bool __thiscall winISteamFriends_SteamFriends015_IsClanChatAdmin(struct w_steam_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) +int8_t __thiscall winISteamFriends_SteamFriends015_IsClanChatAdmin(struct w_steam_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) { struct ISteamFriends_SteamFriends015_IsClanChatAdmin_params params = { @@ -9176,7 +9176,7 @@ bool __thiscall winISteamFriends_SteamFriends015_IsClanChatAdmin(struct w_steam_ return params._ret; } -bool __thiscall winISteamFriends_SteamFriends015_IsClanChatWindowOpenInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends015_IsClanChatWindowOpenInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends015_IsClanChatWindowOpenInSteam_params params = { @@ -9188,7 +9188,7 @@ bool __thiscall winISteamFriends_SteamFriends015_IsClanChatWindowOpenInSteam(str return params._ret; } -bool __thiscall winISteamFriends_SteamFriends015_OpenClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends015_OpenClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends015_OpenClanChatWindowInSteam_params params = { @@ -9200,7 +9200,7 @@ bool __thiscall winISteamFriends_SteamFriends015_OpenClanChatWindowInSteam(struc return params._ret; } -bool __thiscall winISteamFriends_SteamFriends015_CloseClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends015_CloseClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends015_CloseClanChatWindowInSteam_params params = { @@ -9212,7 +9212,7 @@ bool __thiscall winISteamFriends_SteamFriends015_CloseClanChatWindowInSteam(stru return params._ret; } -bool __thiscall winISteamFriends_SteamFriends015_SetListenForFriendsMessages(struct w_steam_iface *_this, bool bInterceptEnabled) +int8_t __thiscall winISteamFriends_SteamFriends015_SetListenForFriendsMessages(struct w_steam_iface *_this, int8_t bInterceptEnabled) { struct ISteamFriends_SteamFriends015_SetListenForFriendsMessages_params params = { @@ -9224,7 +9224,7 @@ bool __thiscall winISteamFriends_SteamFriends015_SetListenForFriendsMessages(str return params._ret; } -bool __thiscall winISteamFriends_SteamFriends015_ReplyToFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) +int8_t __thiscall winISteamFriends_SteamFriends015_ReplyToFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) { struct ISteamFriends_SteamFriends015_ReplyToFriendMessage_params params = { @@ -9289,7 +9289,7 @@ uint64_t __thiscall winISteamFriends_SteamFriends015_EnumerateFollowingList(stru return params._ret; } -bool __thiscall winISteamFriends_SteamFriends015_IsClanPublic(struct w_steam_iface *_this, CSteamID steamIDClan) +int8_t __thiscall winISteamFriends_SteamFriends015_IsClanPublic(struct w_steam_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends015_IsClanPublic_params params = { @@ -9301,7 +9301,7 @@ bool __thiscall winISteamFriends_SteamFriends015_IsClanPublic(struct w_steam_ifa return params._ret; } -bool __thiscall winISteamFriends_SteamFriends015_IsClanOfficialGameGroup(struct w_steam_iface *_this, CSteamID steamIDClan) +int8_t __thiscall winISteamFriends_SteamFriends015_IsClanOfficialGameGroup(struct w_steam_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends015_IsClanOfficialGameGroup_params params = { @@ -9580,7 +9580,7 @@ const char * __thiscall winISteamFriends_SteamFriends017_GetFriendPersonaName(st return params._ret; } -bool __thiscall winISteamFriends_SteamFriends017_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) +int8_t __thiscall winISteamFriends_SteamFriends017_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { struct ISteamFriends_SteamFriends017_GetFriendGamePlayed_params params = { @@ -9690,7 +9690,7 @@ void __thiscall winISteamFriends_SteamFriends017_GetFriendsGroupMembersList(stru STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetFriendsGroupMembersList, ¶ms ); } -bool __thiscall winISteamFriends_SteamFriends017_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends017_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends017_HasFriend_params params = { @@ -9751,7 +9751,7 @@ const char * __thiscall winISteamFriends_SteamFriends017_GetClanTag(struct w_ste return params._ret; } -bool __thiscall winISteamFriends_SteamFriends017_GetClanActivityCounts(struct w_steam_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) +int8_t __thiscall winISteamFriends_SteamFriends017_GetClanActivityCounts(struct w_steam_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) { struct ISteamFriends_SteamFriends017_GetClanActivityCounts_params params = { @@ -9805,7 +9805,7 @@ CSteamID * __thiscall winISteamFriends_SteamFriends017_GetFriendFromSourceByInde return params._ret; } -bool __thiscall winISteamFriends_SteamFriends017_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) +int8_t __thiscall winISteamFriends_SteamFriends017_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends017_IsUserInSource_params params = { @@ -9818,7 +9818,7 @@ bool __thiscall winISteamFriends_SteamFriends017_IsUserInSource(struct w_steam_i return params._ret; } -void __thiscall winISteamFriends_SteamFriends017_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, bool bSpeaking) +void __thiscall winISteamFriends_SteamFriends017_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) { struct ISteamFriends_SteamFriends017_SetInGameVoiceSpeaking_params params = { @@ -9935,7 +9935,7 @@ int32_t __thiscall winISteamFriends_SteamFriends017_GetLargeFriendAvatar(struct return params._ret; } -bool __thiscall winISteamFriends_SteamFriends017_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, bool bRequireNameOnly) +int8_t __thiscall winISteamFriends_SteamFriends017_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bRequireNameOnly) { struct ISteamFriends_SteamFriends017_RequestUserInformation_params params = { @@ -10010,7 +10010,7 @@ uint32_t __thiscall winISteamFriends_SteamFriends017_GetUserRestrictions(struct return params._ret; } -bool __thiscall winISteamFriends_SteamFriends017_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamFriends_SteamFriends017_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) { struct ISteamFriends_SteamFriends017_SetRichPresence_params params = { @@ -10082,7 +10082,7 @@ void __thiscall winISteamFriends_SteamFriends017_RequestFriendRichPresence(struc STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_RequestFriendRichPresence, ¶ms ); } -bool __thiscall winISteamFriends_SteamFriends017_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) +int8_t __thiscall winISteamFriends_SteamFriends017_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) { struct ISteamFriends_SteamFriends017_InviteUserToGame_params params = { @@ -10155,7 +10155,7 @@ uint64_t __thiscall winISteamFriends_SteamFriends017_JoinClanChatRoom(struct w_s return params._ret; } -bool __thiscall winISteamFriends_SteamFriends017_LeaveClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) +int8_t __thiscall winISteamFriends_SteamFriends017_LeaveClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends017_LeaveClanChatRoom_params params = { @@ -10193,7 +10193,7 @@ CSteamID * __thiscall winISteamFriends_SteamFriends017_GetChatMemberByIndex(stru return params._ret; } -bool __thiscall winISteamFriends_SteamFriends017_SendClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, const char *pchText) +int8_t __thiscall winISteamFriends_SteamFriends017_SendClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, const char *pchText) { struct ISteamFriends_SteamFriends017_SendClanChatMessage_params params = { @@ -10223,7 +10223,7 @@ int32_t __thiscall winISteamFriends_SteamFriends017_GetClanChatMessage(struct w_ return params._ret; } -bool __thiscall winISteamFriends_SteamFriends017_IsClanChatAdmin(struct w_steam_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) +int8_t __thiscall winISteamFriends_SteamFriends017_IsClanChatAdmin(struct w_steam_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) { struct ISteamFriends_SteamFriends017_IsClanChatAdmin_params params = { @@ -10236,7 +10236,7 @@ bool __thiscall winISteamFriends_SteamFriends017_IsClanChatAdmin(struct w_steam_ return params._ret; } -bool __thiscall winISteamFriends_SteamFriends017_IsClanChatWindowOpenInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends017_IsClanChatWindowOpenInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends017_IsClanChatWindowOpenInSteam_params params = { @@ -10248,7 +10248,7 @@ bool __thiscall winISteamFriends_SteamFriends017_IsClanChatWindowOpenInSteam(str return params._ret; } -bool __thiscall winISteamFriends_SteamFriends017_OpenClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends017_OpenClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends017_OpenClanChatWindowInSteam_params params = { @@ -10260,7 +10260,7 @@ bool __thiscall winISteamFriends_SteamFriends017_OpenClanChatWindowInSteam(struc return params._ret; } -bool __thiscall winISteamFriends_SteamFriends017_CloseClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends017_CloseClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends017_CloseClanChatWindowInSteam_params params = { @@ -10272,7 +10272,7 @@ bool __thiscall winISteamFriends_SteamFriends017_CloseClanChatWindowInSteam(stru return params._ret; } -bool __thiscall winISteamFriends_SteamFriends017_SetListenForFriendsMessages(struct w_steam_iface *_this, bool bInterceptEnabled) +int8_t __thiscall winISteamFriends_SteamFriends017_SetListenForFriendsMessages(struct w_steam_iface *_this, int8_t bInterceptEnabled) { struct ISteamFriends_SteamFriends017_SetListenForFriendsMessages_params params = { @@ -10284,7 +10284,7 @@ bool __thiscall winISteamFriends_SteamFriends017_SetListenForFriendsMessages(str return params._ret; } -bool __thiscall winISteamFriends_SteamFriends017_ReplyToFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) +int8_t __thiscall winISteamFriends_SteamFriends017_ReplyToFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) { struct ISteamFriends_SteamFriends017_ReplyToFriendMessage_params params = { @@ -10349,7 +10349,7 @@ uint64_t __thiscall winISteamFriends_SteamFriends017_EnumerateFollowingList(stru return params._ret; } -bool __thiscall winISteamFriends_SteamFriends017_IsClanPublic(struct w_steam_iface *_this, CSteamID steamIDClan) +int8_t __thiscall winISteamFriends_SteamFriends017_IsClanPublic(struct w_steam_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends017_IsClanPublic_params params = { @@ -10361,7 +10361,7 @@ bool __thiscall winISteamFriends_SteamFriends017_IsClanPublic(struct w_steam_ifa return params._ret; } -bool __thiscall winISteamFriends_SteamFriends017_IsClanOfficialGameGroup(struct w_steam_iface *_this, CSteamID steamIDClan) +int8_t __thiscall winISteamFriends_SteamFriends017_IsClanOfficialGameGroup(struct w_steam_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends017_IsClanOfficialGameGroup_params params = { @@ -10395,7 +10395,7 @@ void __thiscall winISteamFriends_SteamFriends017_ActivateGameOverlayRemotePlayTo STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_ActivateGameOverlayRemotePlayTogetherInviteDialog, ¶ms ); } -bool __thiscall winISteamFriends_SteamFriends017_RegisterProtocolInOverlayBrowser(struct w_steam_iface *_this, const char *pchProtocol) +int8_t __thiscall winISteamFriends_SteamFriends017_RegisterProtocolInOverlayBrowser(struct w_steam_iface *_this, const char *pchProtocol) { struct ISteamFriends_SteamFriends017_RegisterProtocolInOverlayBrowser_params params = { @@ -10430,7 +10430,7 @@ uint64_t __thiscall winISteamFriends_SteamFriends017_RequestEquippedProfileItems return params._ret; } -bool __thiscall winISteamFriends_SteamFriends017_BHasEquippedProfileItem(struct w_steam_iface *_this, CSteamID steamID, uint32_t itemType) +int8_t __thiscall winISteamFriends_SteamFriends017_BHasEquippedProfileItem(struct w_steam_iface *_this, CSteamID steamID, uint32_t itemType) { struct ISteamFriends_SteamFriends017_BHasEquippedProfileItem_params params = { diff --git a/lsteamclient/winISteamGameCoordinator.c b/lsteamclient/winISteamGameCoordinator.c index 49e8999f..ee6844b6 100644 --- a/lsteamclient/winISteamGameCoordinator.c +++ b/lsteamclient/winISteamGameCoordinator.c @@ -21,7 +21,7 @@ uint32_t __thiscall winISteamGameCoordinator_SteamGameCoordinator001_SendMessage return params._ret; } -bool __thiscall winISteamGameCoordinator_SteamGameCoordinator001_IsMessageAvailable(struct w_steam_iface *_this, uint32_t *pcubMsgSize) +int8_t __thiscall winISteamGameCoordinator_SteamGameCoordinator001_IsMessageAvailable(struct w_steam_iface *_this, uint32_t *pcubMsgSize) { struct ISteamGameCoordinator_SteamGameCoordinator001_IsMessageAvailable_params params = { diff --git a/lsteamclient/winISteamGameServer.c b/lsteamclient/winISteamGameServer.c index 8e7c283a..ef24759a 100644 --- a/lsteamclient/winISteamGameServer.c +++ b/lsteamclient/winISteamGameServer.c @@ -45,7 +45,7 @@ void __thiscall winISteamGameServer_SteamGameServer002_LogOff(struct w_steam_ifa STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer002_LogOff, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer002_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer002_BLoggedOn(struct w_steam_iface *_this) { struct ISteamGameServer_SteamGameServer002_BLoggedOn_params params = { @@ -67,7 +67,7 @@ void __thiscall winISteamGameServer_SteamGameServer002_GSSetSpawnCount(struct w_ STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer002_GSSetSpawnCount, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionKeyToSendToNewClient(struct w_steam_iface *_this, void *pvEncryptionKey, uint32_t *pcbEncryptionKey, uint32_t cbMaxEncryptionKey) +int8_t __thiscall winISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionKeyToSendToNewClient(struct w_steam_iface *_this, void *pvEncryptionKey, uint32_t *pcbEncryptionKey, uint32_t cbMaxEncryptionKey) { struct ISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionKeyToSendToNewClient_params params = { @@ -81,7 +81,7 @@ bool __thiscall winISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionK return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect(struct w_steam_iface *_this, uint32_t unUserID, const void *pvRawKey, uint32_t unKeyLen, uint32_t unIPPublic, uint16_t usPort, const void *pvCookie, uint32_t cubCookie) +int8_t __thiscall winISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect(struct w_steam_iface *_this, uint32_t unUserID, const void *pvRawKey, uint32_t unKeyLen, uint32_t unIPPublic, uint16_t usPort, const void *pvCookie, uint32_t cubCookie) { struct ISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect_params params = { @@ -99,7 +99,7 @@ bool __thiscall winISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect(s return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect(struct w_steam_iface *_this, CSteamID steamID, uint32_t unIPPublic, const void *pvCookie, uint32_t cubCookie) +int8_t __thiscall winISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect(struct w_steam_iface *_this, CSteamID steamID, uint32_t unIPPublic, const void *pvCookie, uint32_t cubCookie) { struct ISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect_params params = { @@ -114,7 +114,7 @@ bool __thiscall winISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect(s return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer002_GSRemoveUserConnect(struct w_steam_iface *_this, uint32_t unUserID) +int8_t __thiscall winISteamGameServer_SteamGameServer002_GSRemoveUserConnect(struct w_steam_iface *_this, uint32_t unUserID) { struct ISteamGameServer_SteamGameServer002_GSRemoveUserConnect_params params = { @@ -126,7 +126,7 @@ bool __thiscall winISteamGameServer_SteamGameServer002_GSRemoveUserConnect(struc return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer002_GSSendUserDisconnect(struct w_steam_iface *_this, CSteamID steamID, uint32_t unUserID) +int8_t __thiscall winISteamGameServer_SteamGameServer002_GSSendUserDisconnect(struct w_steam_iface *_this, CSteamID steamID, uint32_t unUserID) { struct ISteamGameServer_SteamGameServer002_GSSendUserDisconnect_params params = { @@ -139,7 +139,7 @@ bool __thiscall winISteamGameServer_SteamGameServer002_GSSendUserDisconnect(stru return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer002_GSSendUserStatusResponse(struct w_steam_iface *_this, CSteamID steamID, int32_t nSecondsConnected, int32_t nSecondsSinceLast) +int8_t __thiscall winISteamGameServer_SteamGameServer002_GSSendUserStatusResponse(struct w_steam_iface *_this, CSteamID steamID, int32_t nSecondsConnected, int32_t nSecondsSinceLast) { struct ISteamGameServer_SteamGameServer002_GSSendUserStatusResponse_params params = { @@ -153,7 +153,7 @@ bool __thiscall winISteamGameServer_SteamGameServer002_GSSendUserStatusResponse( return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus(struct w_steam_iface *_this, int32_t nAppIdServed, uint32_t unServerFlags, int32_t cPlayers, int32_t cPlayersMax, int32_t cBotPlayers, int32_t unGamePort, const char *pchServerName, const char *pchGameDir, const char *pchMapName, const char *pchVersion) +int8_t __thiscall winISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus(struct w_steam_iface *_this, int32_t nAppIdServed, uint32_t unServerFlags, int32_t cPlayers, int32_t cPlayersMax, int32_t cBotPlayers, int32_t unGamePort, const char *pchServerName, const char *pchGameDir, const char *pchMapName, const char *pchVersion) { struct ISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus_params params = { @@ -174,7 +174,7 @@ bool __thiscall winISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus(stru return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer002_GSUpdateStatus(struct w_steam_iface *_this, int32_t cPlayers, int32_t cPlayersMax, int32_t cBotPlayers, const char *pchServerName, const char *pchMapName) +int8_t __thiscall winISteamGameServer_SteamGameServer002_GSUpdateStatus(struct w_steam_iface *_this, int32_t cPlayers, int32_t cPlayersMax, int32_t cBotPlayers, const char *pchServerName, const char *pchMapName) { struct ISteamGameServer_SteamGameServer002_GSUpdateStatus_params params = { @@ -190,7 +190,7 @@ bool __thiscall winISteamGameServer_SteamGameServer002_GSUpdateStatus(struct w_s return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer002_BSecure(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer002_BSecure(struct w_steam_iface *_this) { struct ISteamGameServer_SteamGameServer002_BSecure_params params = { @@ -213,7 +213,7 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer002_GetSteamID(struct w return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer002_GSSetServerType(struct w_steam_iface *_this, int32_t nGameAppId, uint32_t unServerFlags, uint32_t unGameIP, uint32_t unGamePort, const char *pchGameDir, const char *pchVersion) +int8_t __thiscall winISteamGameServer_SteamGameServer002_GSSetServerType(struct w_steam_iface *_this, int32_t nGameAppId, uint32_t unServerFlags, uint32_t unGameIP, uint32_t unGamePort, const char *pchGameDir, const char *pchVersion) { struct ISteamGameServer_SteamGameServer002_GSSetServerType_params params = { @@ -230,7 +230,7 @@ bool __thiscall winISteamGameServer_SteamGameServer002_GSSetServerType(struct w_ return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer002_GSSetServerType2(struct w_steam_iface *_this, int32_t nGameAppId, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, bool bLANMode) +int8_t __thiscall winISteamGameServer_SteamGameServer002_GSSetServerType2(struct w_steam_iface *_this, int32_t nGameAppId, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, int8_t bLANMode) { struct ISteamGameServer_SteamGameServer002_GSSetServerType2_params params = { @@ -250,7 +250,7 @@ bool __thiscall winISteamGameServer_SteamGameServer002_GSSetServerType2(struct w return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer002_GSUpdateStatus2(struct w_steam_iface *_this, int32_t cPlayers, int32_t cPlayersMax, int32_t cBotPlayers, const char *pchServerName, const char *pSpectatorServerName, const char *pchMapName) +int8_t __thiscall winISteamGameServer_SteamGameServer002_GSUpdateStatus2(struct w_steam_iface *_this, int32_t cPlayers, int32_t cPlayersMax, int32_t cBotPlayers, const char *pchServerName, const char *pSpectatorServerName, const char *pchMapName) { struct ISteamGameServer_SteamGameServer002_GSUpdateStatus2_params params = { @@ -267,7 +267,7 @@ bool __thiscall winISteamGameServer_SteamGameServer002_GSUpdateStatus2(struct w_ return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer002_GSCreateUnauthenticatedUser(struct w_steam_iface *_this, CSteamID *pSteamID) +int8_t __thiscall winISteamGameServer_SteamGameServer002_GSCreateUnauthenticatedUser(struct w_steam_iface *_this, CSteamID *pSteamID) { struct ISteamGameServer_SteamGameServer002_GSCreateUnauthenticatedUser_params params = { @@ -279,7 +279,7 @@ bool __thiscall winISteamGameServer_SteamGameServer002_GSCreateUnauthenticatedUs return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer002_GSSetUserData(struct w_steam_iface *_this, CSteamID steamID, const char *pPlayerName, uint32_t nFrags) +int8_t __thiscall winISteamGameServer_SteamGameServer002_GSSetUserData(struct w_steam_iface *_this, CSteamID steamID, const char *pPlayerName, uint32_t nFrags) { struct ISteamGameServer_SteamGameServer002_GSSetUserData_params params = { @@ -392,7 +392,7 @@ void __thiscall winISteamGameServer_SteamGameServer003_LogOff(struct w_steam_ifa STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer003_LogOff, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer003_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer003_BLoggedOn(struct w_steam_iface *_this) { struct ISteamGameServer_SteamGameServer003_BLoggedOn_params params = { @@ -403,7 +403,7 @@ bool __thiscall winISteamGameServer_SteamGameServer003_BLoggedOn(struct w_steam_ return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer003_BSecure(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer003_BSecure(struct w_steam_iface *_this) { struct ISteamGameServer_SteamGameServer003_BSecure_params params = { @@ -426,7 +426,7 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer003_GetSteamID(struct w return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionKeyToSendToNewClient(struct w_steam_iface *_this, void *pvEncryptionKey, uint32_t *pcbEncryptionKey, uint32_t cbMaxEncryptionKey) +int8_t __thiscall winISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionKeyToSendToNewClient(struct w_steam_iface *_this, void *pvEncryptionKey, uint32_t *pcbEncryptionKey, uint32_t cbMaxEncryptionKey) { struct ISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionKeyToSendToNewClient_params params = { @@ -440,7 +440,7 @@ bool __thiscall winISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionK return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer003_GSSendUserConnect(struct w_steam_iface *_this, uint32_t unUserID, uint32_t unIPPublic, uint16_t usPort, const void *pvCookie, uint32_t cubCookie) +int8_t __thiscall winISteamGameServer_SteamGameServer003_GSSendUserConnect(struct w_steam_iface *_this, uint32_t unUserID, uint32_t unIPPublic, uint16_t usPort, const void *pvCookie, uint32_t cubCookie) { struct ISteamGameServer_SteamGameServer003_GSSendUserConnect_params params = { @@ -456,7 +456,7 @@ bool __thiscall winISteamGameServer_SteamGameServer003_GSSendUserConnect(struct return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer003_GSRemoveUserConnect(struct w_steam_iface *_this, uint32_t unUserID) +int8_t __thiscall winISteamGameServer_SteamGameServer003_GSRemoveUserConnect(struct w_steam_iface *_this, uint32_t unUserID) { struct ISteamGameServer_SteamGameServer003_GSRemoveUserConnect_params params = { @@ -468,7 +468,7 @@ bool __thiscall winISteamGameServer_SteamGameServer003_GSRemoveUserConnect(struc return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer003_GSSendUserDisconnect(struct w_steam_iface *_this, CSteamID steamID, uint32_t unUserID) +int8_t __thiscall winISteamGameServer_SteamGameServer003_GSSendUserDisconnect(struct w_steam_iface *_this, CSteamID steamID, uint32_t unUserID) { struct ISteamGameServer_SteamGameServer003_GSSendUserDisconnect_params params = { @@ -492,7 +492,7 @@ void __thiscall winISteamGameServer_SteamGameServer003_GSSetSpawnCount(struct w_ STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer003_GSSetSpawnCount, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer003_GSSetServerType(struct w_steam_iface *_this, int32_t nGameAppId, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, bool bLANMode) +int8_t __thiscall winISteamGameServer_SteamGameServer003_GSSetServerType(struct w_steam_iface *_this, int32_t nGameAppId, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, int8_t bLANMode) { struct ISteamGameServer_SteamGameServer003_GSSetServerType_params params = { @@ -512,7 +512,7 @@ bool __thiscall winISteamGameServer_SteamGameServer003_GSSetServerType(struct w_ return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer003_GSUpdateStatus(struct w_steam_iface *_this, int32_t cPlayers, int32_t cPlayersMax, int32_t cBotPlayers, const char *pchServerName, const char *pSpectatorServerName, const char *pchMapName) +int8_t __thiscall winISteamGameServer_SteamGameServer003_GSUpdateStatus(struct w_steam_iface *_this, int32_t cPlayers, int32_t cPlayersMax, int32_t cBotPlayers, const char *pchServerName, const char *pSpectatorServerName, const char *pchMapName) { struct ISteamGameServer_SteamGameServer003_GSUpdateStatus_params params = { @@ -529,7 +529,7 @@ bool __thiscall winISteamGameServer_SteamGameServer003_GSUpdateStatus(struct w_s return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer003_GSCreateUnauthenticatedUser(struct w_steam_iface *_this, CSteamID *pSteamID) +int8_t __thiscall winISteamGameServer_SteamGameServer003_GSCreateUnauthenticatedUser(struct w_steam_iface *_this, CSteamID *pSteamID) { struct ISteamGameServer_SteamGameServer003_GSCreateUnauthenticatedUser_params params = { @@ -541,7 +541,7 @@ bool __thiscall winISteamGameServer_SteamGameServer003_GSCreateUnauthenticatedUs return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer003_GSSetUserData(struct w_steam_iface *_this, CSteamID steamID, const char *pPlayerName, uint32_t nFrags) +int8_t __thiscall winISteamGameServer_SteamGameServer003_GSSetUserData(struct w_steam_iface *_this, CSteamID steamID, const char *pPlayerName, uint32_t nFrags) { struct ISteamGameServer_SteamGameServer003_GSSetUserData_params params = { @@ -577,7 +577,7 @@ void __thiscall winISteamGameServer_SteamGameServer003_GSSetGameType(struct w_st STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer003_GSSetGameType, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer003_GSGetUserAchievementStatus(struct w_steam_iface *_this, CSteamID steamID, const char *pchAchievementName) +int8_t __thiscall winISteamGameServer_SteamGameServer003_GSGetUserAchievementStatus(struct w_steam_iface *_this, CSteamID steamID, const char *pchAchievementName) { struct ISteamGameServer_SteamGameServer003_GSGetUserAchievementStatus_params params = { @@ -660,7 +660,7 @@ void __thiscall winISteamGameServer_SteamGameServer004_LogOff(struct w_steam_ifa STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer004_LogOff, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer004_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer004_BLoggedOn(struct w_steam_iface *_this) { struct ISteamGameServer_SteamGameServer004_BLoggedOn_params params = { @@ -671,7 +671,7 @@ bool __thiscall winISteamGameServer_SteamGameServer004_BLoggedOn(struct w_steam_ return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer004_BSecure(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer004_BSecure(struct w_steam_iface *_this) { struct ISteamGameServer_SteamGameServer004_BSecure_params params = { @@ -731,7 +731,7 @@ void __thiscall winISteamGameServer_SteamGameServer004_SendUserDisconnect(struct STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer004_SendUserDisconnect, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer004_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) +int8_t __thiscall winISteamGameServer_SteamGameServer004_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) { struct ISteamGameServer_SteamGameServer004_BUpdateUserData_params params = { @@ -745,7 +745,7 @@ bool __thiscall winISteamGameServer_SteamGameServer004_BUpdateUserData(struct w_ return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer004_BSetServerType(struct w_steam_iface *_this, int32_t nGameAppId, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, bool bLANMode) +int8_t __thiscall winISteamGameServer_SteamGameServer004_BSetServerType(struct w_steam_iface *_this, int32_t nGameAppId, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, int8_t bLANMode) { struct ISteamGameServer_SteamGameServer004_BSetServerType_params params = { @@ -803,7 +803,7 @@ void __thiscall winISteamGameServer_SteamGameServer004_SetGameType(struct w_stea STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer004_SetGameType, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer004_BGetUserAchievementStatus(struct w_steam_iface *_this, CSteamID steamID, const char *pchAchievementName) +int8_t __thiscall winISteamGameServer_SteamGameServer004_BGetUserAchievementStatus(struct w_steam_iface *_this, CSteamID steamID, const char *pchAchievementName) { struct ISteamGameServer_SteamGameServer004_BGetUserAchievementStatus_params params = { @@ -883,7 +883,7 @@ void __thiscall winISteamGameServer_SteamGameServer005_LogOff(struct w_steam_ifa STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer005_LogOff, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer005_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer005_BLoggedOn(struct w_steam_iface *_this) { struct ISteamGameServer_SteamGameServer005_BLoggedOn_params params = { @@ -894,7 +894,7 @@ bool __thiscall winISteamGameServer_SteamGameServer005_BLoggedOn(struct w_steam_ return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer005_BSecure(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer005_BSecure(struct w_steam_iface *_this) { struct ISteamGameServer_SteamGameServer005_BSecure_params params = { @@ -917,7 +917,7 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer005_GetSteamID(struct w return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer005_SendUserConnectAndAuthenticate(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) +int8_t __thiscall winISteamGameServer_SteamGameServer005_SendUserConnectAndAuthenticate(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) { struct ISteamGameServer_SteamGameServer005_SendUserConnectAndAuthenticate_params params = { @@ -955,7 +955,7 @@ void __thiscall winISteamGameServer_SteamGameServer005_SendUserDisconnect(struct STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer005_SendUserDisconnect, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer005_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) +int8_t __thiscall winISteamGameServer_SteamGameServer005_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) { struct ISteamGameServer_SteamGameServer005_BUpdateUserData_params params = { @@ -969,7 +969,7 @@ bool __thiscall winISteamGameServer_SteamGameServer005_BUpdateUserData(struct w_ return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer005_BSetServerType(struct w_steam_iface *_this, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, bool bLANMode) +int8_t __thiscall winISteamGameServer_SteamGameServer005_BSetServerType(struct w_steam_iface *_this, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, int8_t bLANMode) { struct ISteamGameServer_SteamGameServer005_BSetServerType_params params = { @@ -1026,7 +1026,7 @@ void __thiscall winISteamGameServer_SteamGameServer005_SetGameType(struct w_stea STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer005_SetGameType, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer005_BGetUserAchievementStatus(struct w_steam_iface *_this, CSteamID steamID, const char *pchAchievementName) +int8_t __thiscall winISteamGameServer_SteamGameServer005_BGetUserAchievementStatus(struct w_steam_iface *_this, CSteamID steamID, const char *pchAchievementName) { struct ISteamGameServer_SteamGameServer005_BGetUserAchievementStatus_params params = { @@ -1109,7 +1109,7 @@ void __thiscall winISteamGameServer_SteamGameServer008_LogOff(struct w_steam_ifa STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_LogOff, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer008_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer008_BLoggedOn(struct w_steam_iface *_this) { struct ISteamGameServer_SteamGameServer008_BLoggedOn_params params = { @@ -1120,7 +1120,7 @@ bool __thiscall winISteamGameServer_SteamGameServer008_BLoggedOn(struct w_steam_ return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer008_BSecure(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer008_BSecure(struct w_steam_iface *_this) { struct ISteamGameServer_SteamGameServer008_BSecure_params params = { @@ -1143,7 +1143,7 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer008_GetSteamID(struct w return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer008_SendUserConnectAndAuthenticate(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) +int8_t __thiscall winISteamGameServer_SteamGameServer008_SendUserConnectAndAuthenticate(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) { struct ISteamGameServer_SteamGameServer008_SendUserConnectAndAuthenticate_params params = { @@ -1181,7 +1181,7 @@ void __thiscall winISteamGameServer_SteamGameServer008_SendUserDisconnect(struct STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_SendUserDisconnect, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer008_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) +int8_t __thiscall winISteamGameServer_SteamGameServer008_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) { struct ISteamGameServer_SteamGameServer008_BUpdateUserData_params params = { @@ -1195,7 +1195,7 @@ bool __thiscall winISteamGameServer_SteamGameServer008_BUpdateUserData(struct w_ return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer008_BSetServerType(struct w_steam_iface *_this, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, bool bLANMode) +int8_t __thiscall winISteamGameServer_SteamGameServer008_BSetServerType(struct w_steam_iface *_this, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, int8_t bLANMode) { struct ISteamGameServer_SteamGameServer008_BSetServerType_params params = { @@ -1252,7 +1252,7 @@ void __thiscall winISteamGameServer_SteamGameServer008_SetGameType(struct w_stea STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_SetGameType, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer008_BGetUserAchievementStatus(struct w_steam_iface *_this, CSteamID steamID, const char *pchAchievementName) +int8_t __thiscall winISteamGameServer_SteamGameServer008_BGetUserAchievementStatus(struct w_steam_iface *_this, CSteamID steamID, const char *pchAchievementName) { struct ISteamGameServer_SteamGameServer008_BGetUserAchievementStatus_params params = { @@ -1275,7 +1275,7 @@ void __thiscall winISteamGameServer_SteamGameServer008_GetGameplayStats(struct w STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_GetGameplayStats, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer008_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) +int8_t __thiscall winISteamGameServer_SteamGameServer008_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) { struct ISteamGameServer_SteamGameServer008_RequestUserGroupStatus_params params = { @@ -1374,7 +1374,7 @@ void __thiscall winISteamGameServer_SteamGameServer009_LogOff(struct w_steam_ifa STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_LogOff, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer009_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer009_BLoggedOn(struct w_steam_iface *_this) { struct ISteamGameServer_SteamGameServer009_BLoggedOn_params params = { @@ -1385,7 +1385,7 @@ bool __thiscall winISteamGameServer_SteamGameServer009_BLoggedOn(struct w_steam_ return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer009_BSecure(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer009_BSecure(struct w_steam_iface *_this) { struct ISteamGameServer_SteamGameServer009_BSecure_params params = { @@ -1408,7 +1408,7 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer009_GetSteamID(struct w return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer009_SendUserConnectAndAuthenticate(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) +int8_t __thiscall winISteamGameServer_SteamGameServer009_SendUserConnectAndAuthenticate(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) { struct ISteamGameServer_SteamGameServer009_SendUserConnectAndAuthenticate_params params = { @@ -1446,7 +1446,7 @@ void __thiscall winISteamGameServer_SteamGameServer009_SendUserDisconnect(struct STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_SendUserDisconnect, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer009_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) +int8_t __thiscall winISteamGameServer_SteamGameServer009_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) { struct ISteamGameServer_SteamGameServer009_BUpdateUserData_params params = { @@ -1460,7 +1460,7 @@ bool __thiscall winISteamGameServer_SteamGameServer009_BUpdateUserData(struct w_ return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer009_BSetServerType(struct w_steam_iface *_this, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, bool bLANMode) +int8_t __thiscall winISteamGameServer_SteamGameServer009_BSetServerType(struct w_steam_iface *_this, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, int8_t bLANMode) { struct ISteamGameServer_SteamGameServer009_BSetServerType_params params = { @@ -1517,7 +1517,7 @@ void __thiscall winISteamGameServer_SteamGameServer009_SetGameType(struct w_stea STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_SetGameType, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer009_BGetUserAchievementStatus(struct w_steam_iface *_this, CSteamID steamID, const char *pchAchievementName) +int8_t __thiscall winISteamGameServer_SteamGameServer009_BGetUserAchievementStatus(struct w_steam_iface *_this, CSteamID steamID, const char *pchAchievementName) { struct ISteamGameServer_SteamGameServer009_BGetUserAchievementStatus_params params = { @@ -1540,7 +1540,7 @@ void __thiscall winISteamGameServer_SteamGameServer009_GetGameplayStats(struct w STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_GetGameplayStats, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer009_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) +int8_t __thiscall winISteamGameServer_SteamGameServer009_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) { struct ISteamGameServer_SteamGameServer009_RequestUserGroupStatus_params params = { @@ -1669,7 +1669,7 @@ void __thiscall winISteamGameServer_SteamGameServer010_LogOff(struct w_steam_ifa STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_LogOff, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer010_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer010_BLoggedOn(struct w_steam_iface *_this) { struct ISteamGameServer_SteamGameServer010_BLoggedOn_params params = { @@ -1680,7 +1680,7 @@ bool __thiscall winISteamGameServer_SteamGameServer010_BLoggedOn(struct w_steam_ return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer010_BSecure(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer010_BSecure(struct w_steam_iface *_this) { struct ISteamGameServer_SteamGameServer010_BSecure_params params = { @@ -1703,7 +1703,7 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer010_GetSteamID(struct w return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer010_SendUserConnectAndAuthenticate(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) +int8_t __thiscall winISteamGameServer_SteamGameServer010_SendUserConnectAndAuthenticate(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) { struct ISteamGameServer_SteamGameServer010_SendUserConnectAndAuthenticate_params params = { @@ -1741,7 +1741,7 @@ void __thiscall winISteamGameServer_SteamGameServer010_SendUserDisconnect(struct STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_SendUserDisconnect, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer010_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) +int8_t __thiscall winISteamGameServer_SteamGameServer010_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) { struct ISteamGameServer_SteamGameServer010_BUpdateUserData_params params = { @@ -1755,7 +1755,7 @@ bool __thiscall winISteamGameServer_SteamGameServer010_BUpdateUserData(struct w_ return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer010_BSetServerType(struct w_steam_iface *_this, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, bool bLANMode) +int8_t __thiscall winISteamGameServer_SteamGameServer010_BSetServerType(struct w_steam_iface *_this, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, int8_t bLANMode) { struct ISteamGameServer_SteamGameServer010_BSetServerType_params params = { @@ -1833,7 +1833,7 @@ uint64_t __thiscall winISteamGameServer_SteamGameServer010_GetServerReputation(s return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer010_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) +int8_t __thiscall winISteamGameServer_SteamGameServer010_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) { struct ISteamGameServer_SteamGameServer010_RequestUserGroupStatus_params params = { @@ -2017,7 +2017,7 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer011_ForceHeartbeat, 4 DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer011_AssociateWithClan, 12) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer011_ComputeNewPlayerCompatibility, 12) -bool __thiscall winISteamGameServer_SteamGameServer011_InitGameServer(struct w_steam_iface *_this, uint32_t unIP, uint16_t usGamePort, uint16_t usQueryPort, uint32_t unFlags, uint32_t nGameAppId, const char *pchVersionString) +int8_t __thiscall winISteamGameServer_SteamGameServer011_InitGameServer(struct w_steam_iface *_this, uint32_t unIP, uint16_t usGamePort, uint16_t usQueryPort, uint32_t unFlags, uint32_t nGameAppId, const char *pchVersionString) { struct ISteamGameServer_SteamGameServer011_InitGameServer_params params = { @@ -2067,7 +2067,7 @@ void __thiscall winISteamGameServer_SteamGameServer011_SetModDir(struct w_steam_ STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetModDir, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer011_SetDedicatedServer(struct w_steam_iface *_this, bool bDedicated) +void __thiscall winISteamGameServer_SteamGameServer011_SetDedicatedServer(struct w_steam_iface *_this, int8_t bDedicated) { struct ISteamGameServer_SteamGameServer011_SetDedicatedServer_params params = { @@ -2110,7 +2110,7 @@ void __thiscall winISteamGameServer_SteamGameServer011_LogOff(struct w_steam_ifa STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_LogOff, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer011_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer011_BLoggedOn(struct w_steam_iface *_this) { struct ISteamGameServer_SteamGameServer011_BLoggedOn_params params = { @@ -2121,7 +2121,7 @@ bool __thiscall winISteamGameServer_SteamGameServer011_BLoggedOn(struct w_steam_ return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer011_BSecure(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer011_BSecure(struct w_steam_iface *_this) { struct ISteamGameServer_SteamGameServer011_BSecure_params params = { @@ -2144,7 +2144,7 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer011_GetSteamID(struct w return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer011_WasRestartRequested(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer011_WasRestartRequested(struct w_steam_iface *_this) { struct ISteamGameServer_SteamGameServer011_WasRestartRequested_params params = { @@ -2199,7 +2199,7 @@ void __thiscall winISteamGameServer_SteamGameServer011_SetMapName(struct w_steam STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetMapName, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer011_SetPasswordProtected(struct w_steam_iface *_this, bool bPasswordProtected) +void __thiscall winISteamGameServer_SteamGameServer011_SetPasswordProtected(struct w_steam_iface *_this, int8_t bPasswordProtected) { struct ISteamGameServer_SteamGameServer011_SetPasswordProtected_params params = { @@ -2287,7 +2287,7 @@ void __thiscall winISteamGameServer_SteamGameServer011_SetRegion(struct w_steam_ STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetRegion, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer011_SendUserConnectAndAuthenticate(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) +int8_t __thiscall winISteamGameServer_SteamGameServer011_SendUserConnectAndAuthenticate(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) { struct ISteamGameServer_SteamGameServer011_SendUserConnectAndAuthenticate_params params = { @@ -2325,7 +2325,7 @@ void __thiscall winISteamGameServer_SteamGameServer011_SendUserDisconnect(struct STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SendUserDisconnect, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer011_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) +int8_t __thiscall winISteamGameServer_SteamGameServer011_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) { struct ISteamGameServer_SteamGameServer011_BUpdateUserData_params params = { @@ -2402,7 +2402,7 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer011_UserHasLicenseForApp( return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer011_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) +int8_t __thiscall winISteamGameServer_SteamGameServer011_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) { struct ISteamGameServer_SteamGameServer011_RequestUserGroupStatus_params params = { @@ -2447,7 +2447,7 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer011_GetPublicIP(struct w_ return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer011_HandleIncomingPacket(struct w_steam_iface *_this, const void *pData, int32_t cbData, uint32_t srcIP, uint16_t srcPort) +int8_t __thiscall winISteamGameServer_SteamGameServer011_HandleIncomingPacket(struct w_steam_iface *_this, const void *pData, int32_t cbData, uint32_t srcIP, uint16_t srcPort) { struct ISteamGameServer_SteamGameServer011_HandleIncomingPacket_params params = { @@ -2477,7 +2477,7 @@ int32_t __thiscall winISteamGameServer_SteamGameServer011_GetNextOutgoingPacket( return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer011_EnableHeartbeats(struct w_steam_iface *_this, bool bActive) +void __thiscall winISteamGameServer_SteamGameServer011_EnableHeartbeats(struct w_steam_iface *_this, int8_t bActive) { struct ISteamGameServer_SteamGameServer011_EnableHeartbeats_params params = { @@ -2640,7 +2640,7 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer012_ForceHeartbeat, 4 DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer012_AssociateWithClan, 12) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer012_ComputeNewPlayerCompatibility, 12) -bool __thiscall winISteamGameServer_SteamGameServer012_InitGameServer(struct w_steam_iface *_this, uint32_t unIP, uint16_t usGamePort, uint16_t usQueryPort, uint32_t unFlags, uint32_t nGameAppId, const char *pchVersionString) +int8_t __thiscall winISteamGameServer_SteamGameServer012_InitGameServer(struct w_steam_iface *_this, uint32_t unIP, uint16_t usGamePort, uint16_t usQueryPort, uint32_t unFlags, uint32_t nGameAppId, const char *pchVersionString) { struct ISteamGameServer_SteamGameServer012_InitGameServer_params params = { @@ -2690,7 +2690,7 @@ void __thiscall winISteamGameServer_SteamGameServer012_SetModDir(struct w_steam_ STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetModDir, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer012_SetDedicatedServer(struct w_steam_iface *_this, bool bDedicated) +void __thiscall winISteamGameServer_SteamGameServer012_SetDedicatedServer(struct w_steam_iface *_this, int8_t bDedicated) { struct ISteamGameServer_SteamGameServer012_SetDedicatedServer_params params = { @@ -2732,7 +2732,7 @@ void __thiscall winISteamGameServer_SteamGameServer012_LogOff(struct w_steam_ifa STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_LogOff, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer012_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer012_BLoggedOn(struct w_steam_iface *_this) { struct ISteamGameServer_SteamGameServer012_BLoggedOn_params params = { @@ -2743,7 +2743,7 @@ bool __thiscall winISteamGameServer_SteamGameServer012_BLoggedOn(struct w_steam_ return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer012_BSecure(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer012_BSecure(struct w_steam_iface *_this) { struct ISteamGameServer_SteamGameServer012_BSecure_params params = { @@ -2766,7 +2766,7 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer012_GetSteamID(struct w return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer012_WasRestartRequested(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer012_WasRestartRequested(struct w_steam_iface *_this) { struct ISteamGameServer_SteamGameServer012_WasRestartRequested_params params = { @@ -2821,7 +2821,7 @@ void __thiscall winISteamGameServer_SteamGameServer012_SetMapName(struct w_steam STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetMapName, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer012_SetPasswordProtected(struct w_steam_iface *_this, bool bPasswordProtected) +void __thiscall winISteamGameServer_SteamGameServer012_SetPasswordProtected(struct w_steam_iface *_this, int8_t bPasswordProtected) { struct ISteamGameServer_SteamGameServer012_SetPasswordProtected_params params = { @@ -2909,7 +2909,7 @@ void __thiscall winISteamGameServer_SteamGameServer012_SetRegion(struct w_steam_ STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetRegion, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer012_SendUserConnectAndAuthenticate(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) +int8_t __thiscall winISteamGameServer_SteamGameServer012_SendUserConnectAndAuthenticate(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) { struct ISteamGameServer_SteamGameServer012_SendUserConnectAndAuthenticate_params params = { @@ -2947,7 +2947,7 @@ void __thiscall winISteamGameServer_SteamGameServer012_SendUserDisconnect(struct STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SendUserDisconnect, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer012_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) +int8_t __thiscall winISteamGameServer_SteamGameServer012_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) { struct ISteamGameServer_SteamGameServer012_BUpdateUserData_params params = { @@ -3024,7 +3024,7 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer012_UserHasLicenseForApp( return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer012_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) +int8_t __thiscall winISteamGameServer_SteamGameServer012_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) { struct ISteamGameServer_SteamGameServer012_RequestUserGroupStatus_params params = { @@ -3069,7 +3069,7 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer012_GetPublicIP(struct w_ return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer012_HandleIncomingPacket(struct w_steam_iface *_this, const void *pData, int32_t cbData, uint32_t srcIP, uint16_t srcPort) +int8_t __thiscall winISteamGameServer_SteamGameServer012_HandleIncomingPacket(struct w_steam_iface *_this, const void *pData, int32_t cbData, uint32_t srcIP, uint16_t srcPort) { struct ISteamGameServer_SteamGameServer012_HandleIncomingPacket_params params = { @@ -3099,7 +3099,7 @@ int32_t __thiscall winISteamGameServer_SteamGameServer012_GetNextOutgoingPacket( return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer012_EnableHeartbeats(struct w_steam_iface *_this, bool bActive) +void __thiscall winISteamGameServer_SteamGameServer012_EnableHeartbeats(struct w_steam_iface *_this, int8_t bActive) { struct ISteamGameServer_SteamGameServer012_EnableHeartbeats_params params = { @@ -3262,7 +3262,7 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer013_ForceHeartbeat, 4 DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer013_AssociateWithClan, 12) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer013_ComputeNewPlayerCompatibility, 12) -bool __thiscall winISteamGameServer_SteamGameServer013_InitGameServer(struct w_steam_iface *_this, uint32_t unIP, uint16_t usGamePort, uint16_t usQueryPort, uint32_t unFlags, uint32_t nGameAppId, const char *pchVersionString) +int8_t __thiscall winISteamGameServer_SteamGameServer013_InitGameServer(struct w_steam_iface *_this, uint32_t unIP, uint16_t usGamePort, uint16_t usQueryPort, uint32_t unFlags, uint32_t nGameAppId, const char *pchVersionString) { struct ISteamGameServer_SteamGameServer013_InitGameServer_params params = { @@ -3312,7 +3312,7 @@ void __thiscall winISteamGameServer_SteamGameServer013_SetModDir(struct w_steam_ STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetModDir, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer013_SetDedicatedServer(struct w_steam_iface *_this, bool bDedicated) +void __thiscall winISteamGameServer_SteamGameServer013_SetDedicatedServer(struct w_steam_iface *_this, int8_t bDedicated) { struct ISteamGameServer_SteamGameServer013_SetDedicatedServer_params params = { @@ -3354,7 +3354,7 @@ void __thiscall winISteamGameServer_SteamGameServer013_LogOff(struct w_steam_ifa STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_LogOff, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer013_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer013_BLoggedOn(struct w_steam_iface *_this) { struct ISteamGameServer_SteamGameServer013_BLoggedOn_params params = { @@ -3365,7 +3365,7 @@ bool __thiscall winISteamGameServer_SteamGameServer013_BLoggedOn(struct w_steam_ return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer013_BSecure(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer013_BSecure(struct w_steam_iface *_this) { struct ISteamGameServer_SteamGameServer013_BSecure_params params = { @@ -3388,7 +3388,7 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer013_GetSteamID(struct w return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer013_WasRestartRequested(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer013_WasRestartRequested(struct w_steam_iface *_this) { struct ISteamGameServer_SteamGameServer013_WasRestartRequested_params params = { @@ -3443,7 +3443,7 @@ void __thiscall winISteamGameServer_SteamGameServer013_SetMapName(struct w_steam STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetMapName, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer013_SetPasswordProtected(struct w_steam_iface *_this, bool bPasswordProtected) +void __thiscall winISteamGameServer_SteamGameServer013_SetPasswordProtected(struct w_steam_iface *_this, int8_t bPasswordProtected) { struct ISteamGameServer_SteamGameServer013_SetPasswordProtected_params params = { @@ -3531,7 +3531,7 @@ void __thiscall winISteamGameServer_SteamGameServer013_SetRegion(struct w_steam_ STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetRegion, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer013_SendUserConnectAndAuthenticate(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) +int8_t __thiscall winISteamGameServer_SteamGameServer013_SendUserConnectAndAuthenticate(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) { struct ISteamGameServer_SteamGameServer013_SendUserConnectAndAuthenticate_params params = { @@ -3569,7 +3569,7 @@ void __thiscall winISteamGameServer_SteamGameServer013_SendUserDisconnect(struct STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SendUserDisconnect, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer013_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) +int8_t __thiscall winISteamGameServer_SteamGameServer013_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) { struct ISteamGameServer_SteamGameServer013_BUpdateUserData_params params = { @@ -3646,7 +3646,7 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer013_UserHasLicenseForApp( return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer013_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) +int8_t __thiscall winISteamGameServer_SteamGameServer013_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) { struct ISteamGameServer_SteamGameServer013_RequestUserGroupStatus_params params = { @@ -3692,7 +3692,7 @@ SteamIPAddress_t * __thiscall winISteamGameServer_SteamGameServer013_GetPublicIP return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer013_HandleIncomingPacket(struct w_steam_iface *_this, const void *pData, int32_t cbData, uint32_t srcIP, uint16_t srcPort) +int8_t __thiscall winISteamGameServer_SteamGameServer013_HandleIncomingPacket(struct w_steam_iface *_this, const void *pData, int32_t cbData, uint32_t srcIP, uint16_t srcPort) { struct ISteamGameServer_SteamGameServer013_HandleIncomingPacket_params params = { @@ -3722,7 +3722,7 @@ int32_t __thiscall winISteamGameServer_SteamGameServer013_GetNextOutgoingPacket( return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer013_EnableHeartbeats(struct w_steam_iface *_this, bool bActive) +void __thiscall winISteamGameServer_SteamGameServer013_EnableHeartbeats(struct w_steam_iface *_this, int8_t bActive) { struct ISteamGameServer_SteamGameServer013_EnableHeartbeats_params params = { @@ -3885,7 +3885,7 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer014_BUpdateUserData, DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer014_SetMasterServerHeartbeatInterval_DEPRECATED, 8) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer014_ForceMasterServerHeartbeat_DEPRECATED, 4) -bool __thiscall winISteamGameServer_SteamGameServer014_InitGameServer(struct w_steam_iface *_this, uint32_t unIP, uint16_t usGamePort, uint16_t usQueryPort, uint32_t unFlags, uint32_t nGameAppId, const char *pchVersionString) +int8_t __thiscall winISteamGameServer_SteamGameServer014_InitGameServer(struct w_steam_iface *_this, uint32_t unIP, uint16_t usGamePort, uint16_t usQueryPort, uint32_t unFlags, uint32_t nGameAppId, const char *pchVersionString) { struct ISteamGameServer_SteamGameServer014_InitGameServer_params params = { @@ -3935,7 +3935,7 @@ void __thiscall winISteamGameServer_SteamGameServer014_SetModDir(struct w_steam_ STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetModDir, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer014_SetDedicatedServer(struct w_steam_iface *_this, bool bDedicated) +void __thiscall winISteamGameServer_SteamGameServer014_SetDedicatedServer(struct w_steam_iface *_this, int8_t bDedicated) { struct ISteamGameServer_SteamGameServer014_SetDedicatedServer_params params = { @@ -3977,7 +3977,7 @@ void __thiscall winISteamGameServer_SteamGameServer014_LogOff(struct w_steam_ifa STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_LogOff, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer014_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer014_BLoggedOn(struct w_steam_iface *_this) { struct ISteamGameServer_SteamGameServer014_BLoggedOn_params params = { @@ -3988,7 +3988,7 @@ bool __thiscall winISteamGameServer_SteamGameServer014_BLoggedOn(struct w_steam_ return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer014_BSecure(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer014_BSecure(struct w_steam_iface *_this) { struct ISteamGameServer_SteamGameServer014_BSecure_params params = { @@ -4011,7 +4011,7 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer014_GetSteamID(struct w return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer014_WasRestartRequested(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer014_WasRestartRequested(struct w_steam_iface *_this) { struct ISteamGameServer_SteamGameServer014_WasRestartRequested_params params = { @@ -4066,7 +4066,7 @@ void __thiscall winISteamGameServer_SteamGameServer014_SetMapName(struct w_steam STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetMapName, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer014_SetPasswordProtected(struct w_steam_iface *_this, bool bPasswordProtected) +void __thiscall winISteamGameServer_SteamGameServer014_SetPasswordProtected(struct w_steam_iface *_this, int8_t bPasswordProtected) { struct ISteamGameServer_SteamGameServer014_SetPasswordProtected_params params = { @@ -4154,7 +4154,7 @@ void __thiscall winISteamGameServer_SteamGameServer014_SetRegion(struct w_steam_ STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetRegion, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer014_SetAdvertiseServerActive(struct w_steam_iface *_this, bool bActive) +void __thiscall winISteamGameServer_SteamGameServer014_SetAdvertiseServerActive(struct w_steam_iface *_this, int8_t bActive) { struct ISteamGameServer_SteamGameServer014_SetAdvertiseServerActive_params params = { @@ -4228,7 +4228,7 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer014_UserHasLicenseForApp( return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer014_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) +int8_t __thiscall winISteamGameServer_SteamGameServer014_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) { struct ISteamGameServer_SteamGameServer014_RequestUserGroupStatus_params params = { @@ -4274,7 +4274,7 @@ SteamIPAddress_t * __thiscall winISteamGameServer_SteamGameServer014_GetPublicIP return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer014_HandleIncomingPacket(struct w_steam_iface *_this, const void *pData, int32_t cbData, uint32_t srcIP, uint16_t srcPort) +int8_t __thiscall winISteamGameServer_SteamGameServer014_HandleIncomingPacket(struct w_steam_iface *_this, const void *pData, int32_t cbData, uint32_t srcIP, uint16_t srcPort) { struct ISteamGameServer_SteamGameServer014_HandleIncomingPacket_params params = { @@ -4328,7 +4328,7 @@ uint64_t __thiscall winISteamGameServer_SteamGameServer014_ComputeNewPlayerCompa return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPRECATED(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) +int8_t __thiscall winISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPRECATED(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) { struct ISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPRECATED_params params = { @@ -4366,7 +4366,7 @@ void __thiscall winISteamGameServer_SteamGameServer014_SendUserDisconnect_DEPREC STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SendUserDisconnect_DEPRECATED, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer014_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) +int8_t __thiscall winISteamGameServer_SteamGameServer014_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) { struct ISteamGameServer_SteamGameServer014_BUpdateUserData_params params = { @@ -4508,7 +4508,7 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer015_BUpdateUserData, DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer015_SetMasterServerHeartbeatInterval_DEPRECATED, 8) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer015_ForceMasterServerHeartbeat_DEPRECATED, 4) -bool __thiscall winISteamGameServer_SteamGameServer015_InitGameServer(struct w_steam_iface *_this, uint32_t unIP, uint16_t usGamePort, uint16_t usQueryPort, uint32_t unFlags, uint32_t nGameAppId, const char *pchVersionString) +int8_t __thiscall winISteamGameServer_SteamGameServer015_InitGameServer(struct w_steam_iface *_this, uint32_t unIP, uint16_t usGamePort, uint16_t usQueryPort, uint32_t unFlags, uint32_t nGameAppId, const char *pchVersionString) { struct ISteamGameServer_SteamGameServer015_InitGameServer_params params = { @@ -4558,7 +4558,7 @@ void __thiscall winISteamGameServer_SteamGameServer015_SetModDir(struct w_steam_ STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetModDir, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer015_SetDedicatedServer(struct w_steam_iface *_this, bool bDedicated) +void __thiscall winISteamGameServer_SteamGameServer015_SetDedicatedServer(struct w_steam_iface *_this, int8_t bDedicated) { struct ISteamGameServer_SteamGameServer015_SetDedicatedServer_params params = { @@ -4600,7 +4600,7 @@ void __thiscall winISteamGameServer_SteamGameServer015_LogOff(struct w_steam_ifa STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_LogOff, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer015_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer015_BLoggedOn(struct w_steam_iface *_this) { struct ISteamGameServer_SteamGameServer015_BLoggedOn_params params = { @@ -4611,7 +4611,7 @@ bool __thiscall winISteamGameServer_SteamGameServer015_BLoggedOn(struct w_steam_ return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer015_BSecure(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer015_BSecure(struct w_steam_iface *_this) { struct ISteamGameServer_SteamGameServer015_BSecure_params params = { @@ -4634,7 +4634,7 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer015_GetSteamID(struct w return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer015_WasRestartRequested(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer015_WasRestartRequested(struct w_steam_iface *_this) { struct ISteamGameServer_SteamGameServer015_WasRestartRequested_params params = { @@ -4689,7 +4689,7 @@ void __thiscall winISteamGameServer_SteamGameServer015_SetMapName(struct w_steam STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetMapName, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer015_SetPasswordProtected(struct w_steam_iface *_this, bool bPasswordProtected) +void __thiscall winISteamGameServer_SteamGameServer015_SetPasswordProtected(struct w_steam_iface *_this, int8_t bPasswordProtected) { struct ISteamGameServer_SteamGameServer015_SetPasswordProtected_params params = { @@ -4777,7 +4777,7 @@ void __thiscall winISteamGameServer_SteamGameServer015_SetRegion(struct w_steam_ STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetRegion, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer015_SetAdvertiseServerActive(struct w_steam_iface *_this, bool bActive) +void __thiscall winISteamGameServer_SteamGameServer015_SetAdvertiseServerActive(struct w_steam_iface *_this, int8_t bActive) { struct ISteamGameServer_SteamGameServer015_SetAdvertiseServerActive_params params = { @@ -4852,7 +4852,7 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer015_UserHasLicenseForApp( return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer015_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) +int8_t __thiscall winISteamGameServer_SteamGameServer015_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) { struct ISteamGameServer_SteamGameServer015_RequestUserGroupStatus_params params = { @@ -4898,7 +4898,7 @@ SteamIPAddress_t * __thiscall winISteamGameServer_SteamGameServer015_GetPublicIP return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer015_HandleIncomingPacket(struct w_steam_iface *_this, const void *pData, int32_t cbData, uint32_t srcIP, uint16_t srcPort) +int8_t __thiscall winISteamGameServer_SteamGameServer015_HandleIncomingPacket(struct w_steam_iface *_this, const void *pData, int32_t cbData, uint32_t srcIP, uint16_t srcPort) { struct ISteamGameServer_SteamGameServer015_HandleIncomingPacket_params params = { @@ -4952,7 +4952,7 @@ uint64_t __thiscall winISteamGameServer_SteamGameServer015_ComputeNewPlayerCompa return params._ret; } -bool __thiscall winISteamGameServer_SteamGameServer015_SendUserConnectAndAuthenticate_DEPRECATED(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) +int8_t __thiscall winISteamGameServer_SteamGameServer015_SendUserConnectAndAuthenticate_DEPRECATED(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) { struct ISteamGameServer_SteamGameServer015_SendUserConnectAndAuthenticate_DEPRECATED_params params = { @@ -4990,7 +4990,7 @@ void __thiscall winISteamGameServer_SteamGameServer015_SendUserDisconnect_DEPREC STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SendUserDisconnect_DEPRECATED, ¶ms ); } -bool __thiscall winISteamGameServer_SteamGameServer015_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) +int8_t __thiscall winISteamGameServer_SteamGameServer015_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) { struct ISteamGameServer_SteamGameServer015_BUpdateUserData_params params = { diff --git a/lsteamclient/winISteamGameServerStats.c b/lsteamclient/winISteamGameServerStats.c index f66538ec..45e0e3bb 100644 --- a/lsteamclient/winISteamGameServerStats.c +++ b/lsteamclient/winISteamGameServerStats.c @@ -26,7 +26,7 @@ uint64_t __thiscall winISteamGameServerStats_SteamGameServerStats001_RequestUser return params._ret; } -bool __thiscall winISteamGameServerStats_SteamGameServerStats001_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { struct ISteamGameServerStats_SteamGameServerStats001_GetUserStat_params params = { @@ -40,7 +40,7 @@ bool __thiscall winISteamGameServerStats_SteamGameServerStats001_GetUserStat(str return params._ret; } -bool __thiscall winISteamGameServerStats_SteamGameServerStats001_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) +int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { struct ISteamGameServerStats_SteamGameServerStats001_GetUserStat_2_params params = { @@ -54,7 +54,7 @@ bool __thiscall winISteamGameServerStats_SteamGameServerStats001_GetUserStat_2(s return params._ret; } -bool __thiscall winISteamGameServerStats_SteamGameServerStats001_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved) +int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) { struct ISteamGameServerStats_SteamGameServerStats001_GetUserAchievement_params params = { @@ -68,7 +68,7 @@ bool __thiscall winISteamGameServerStats_SteamGameServerStats001_GetUserAchievem return params._ret; } -bool __thiscall winISteamGameServerStats_SteamGameServerStats001_SetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t nData) +int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_SetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t nData) { struct ISteamGameServerStats_SteamGameServerStats001_SetUserStat_params params = { @@ -82,7 +82,7 @@ bool __thiscall winISteamGameServerStats_SteamGameServerStats001_SetUserStat(str return params._ret; } -bool __thiscall winISteamGameServerStats_SteamGameServerStats001_SetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float fData) +int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_SetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float fData) { struct ISteamGameServerStats_SteamGameServerStats001_SetUserStat_2_params params = { @@ -96,7 +96,7 @@ bool __thiscall winISteamGameServerStats_SteamGameServerStats001_SetUserStat_2(s return params._ret; } -bool __thiscall winISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float flCountThisSession, double dSessionLength) +int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float flCountThisSession, double dSessionLength) { struct ISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat_params params = { @@ -111,7 +111,7 @@ bool __thiscall winISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRa return params._ret; } -bool __thiscall winISteamGameServerStats_SteamGameServerStats001_SetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName) +int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_SetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName) { struct ISteamGameServerStats_SteamGameServerStats001_SetUserAchievement_params params = { @@ -124,7 +124,7 @@ bool __thiscall winISteamGameServerStats_SteamGameServerStats001_SetUserAchievem return params._ret; } -bool __thiscall winISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName) +int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName) { struct ISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement_params params = { diff --git a/lsteamclient/winISteamHTMLSurface.c b/lsteamclient/winISteamHTMLSurface.c index b596cecc..a45a0205 100644 --- a/lsteamclient/winISteamHTMLSurface.c +++ b/lsteamclient/winISteamHTMLSurface.c @@ -40,7 +40,7 @@ DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_destructor(struct w_steam_iface *_this) {/* never called */} -bool __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Init(struct w_steam_iface *_this) +int8_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Init(struct w_steam_iface *_this) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Init_params params = { @@ -51,7 +51,7 @@ bool __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Init return params._ret; } -bool __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Shutdown(struct w_steam_iface *_this) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Shutdown_params params = { @@ -305,7 +305,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetV STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetVerticalScroll, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetKeyFocus(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bHasKeyFocus) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetKeyFocus(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bHasKeyFocus) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetKeyFocus_params params = { @@ -350,7 +350,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Past STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_PasteFromClipboard, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchSearchStr, bool bCurrentlyInFind, bool bReverse) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchSearchStr, int8_t bCurrentlyInFind, int8_t bReverse) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find_params params = { @@ -388,7 +388,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GetL STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GetLinkAtPosition, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AllowStartRequest(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bAllowed) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AllowStartRequest(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bAllowed) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AllowStartRequest_params params = { @@ -400,7 +400,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Allo STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AllowStartRequest, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_JSDialogResponse(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bResult) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_JSDialogResponse(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bResult) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_JSDialogResponse_params params = { @@ -514,7 +514,7 @@ DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_destructor(struct w_steam_iface *_this) {/* never called */} -bool __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Init(struct w_steam_iface *_this) +int8_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Init(struct w_steam_iface *_this) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Init_params params = { @@ -525,7 +525,7 @@ bool __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Init return params._ret; } -bool __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Shutdown(struct w_steam_iface *_this) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Shutdown_params params = { @@ -779,7 +779,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetV STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetVerticalScroll, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetKeyFocus(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bHasKeyFocus) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetKeyFocus(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bHasKeyFocus) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetKeyFocus_params params = { @@ -824,7 +824,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Past STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_PasteFromClipboard, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchSearchStr, bool bCurrentlyInFind, bool bReverse) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchSearchStr, int8_t bCurrentlyInFind, int8_t bReverse) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find_params params = { @@ -862,7 +862,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GetL STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GetLinkAtPosition, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetCookie(struct w_steam_iface *_this, const char *pchHostname, const char *pchKey, const char *pchValue, const char *pchPath, uint32_t nExpires, bool bSecure, bool bHTTPOnly) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetCookie(struct w_steam_iface *_this, const char *pchHostname, const char *pchKey, const char *pchValue, const char *pchPath, uint32_t nExpires, int8_t bSecure, int8_t bHTTPOnly) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetCookie_params params = { @@ -893,7 +893,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetP STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetPageScaleFactor, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AllowStartRequest(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bAllowed) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AllowStartRequest(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bAllowed) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AllowStartRequest_params params = { @@ -905,7 +905,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Allo STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AllowStartRequest, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_JSDialogResponse(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bResult) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_JSDialogResponse(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bResult) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_JSDialogResponse_params params = { @@ -1022,7 +1022,7 @@ DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_destructor(struct w_steam_iface *_this) {/* never called */} -bool __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Init(struct w_steam_iface *_this) +int8_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Init(struct w_steam_iface *_this) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Init_params params = { @@ -1033,7 +1033,7 @@ bool __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Init return params._ret; } -bool __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Shutdown(struct w_steam_iface *_this) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Shutdown_params params = { @@ -1287,7 +1287,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetV STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetVerticalScroll, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetKeyFocus(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bHasKeyFocus) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetKeyFocus(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bHasKeyFocus) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetKeyFocus_params params = { @@ -1332,7 +1332,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Past STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_PasteFromClipboard, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchSearchStr, bool bCurrentlyInFind, bool bReverse) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchSearchStr, int8_t bCurrentlyInFind, int8_t bReverse) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find_params params = { @@ -1370,7 +1370,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GetL STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GetLinkAtPosition, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetCookie(struct w_steam_iface *_this, const char *pchHostname, const char *pchKey, const char *pchValue, const char *pchPath, uint32_t nExpires, bool bSecure, bool bHTTPOnly) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetCookie(struct w_steam_iface *_this, const char *pchHostname, const char *pchKey, const char *pchValue, const char *pchPath, uint32_t nExpires, int8_t bSecure, int8_t bHTTPOnly) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetCookie_params params = { @@ -1401,7 +1401,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetP STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetPageScaleFactor, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetBackgroundMode(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bBackgroundMode) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetBackgroundMode(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bBackgroundMode) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetBackgroundMode_params params = { @@ -1413,7 +1413,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetB STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetBackgroundMode, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AllowStartRequest(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bAllowed) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AllowStartRequest(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bAllowed) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AllowStartRequest_params params = { @@ -1425,7 +1425,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Allo STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AllowStartRequest, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_JSDialogResponse(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bResult) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_JSDialogResponse(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bResult) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_JSDialogResponse_params params = { @@ -1544,7 +1544,7 @@ DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_destructor(struct w_steam_iface *_this) {/* never called */} -bool __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Init(struct w_steam_iface *_this) +int8_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Init(struct w_steam_iface *_this) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Init_params params = { @@ -1555,7 +1555,7 @@ bool __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Init return params._ret; } -bool __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Shutdown(struct w_steam_iface *_this) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Shutdown_params params = { @@ -1809,7 +1809,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetV STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetVerticalScroll, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetKeyFocus(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bHasKeyFocus) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetKeyFocus(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bHasKeyFocus) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetKeyFocus_params params = { @@ -1854,7 +1854,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Past STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_PasteFromClipboard, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchSearchStr, bool bCurrentlyInFind, bool bReverse) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchSearchStr, int8_t bCurrentlyInFind, int8_t bReverse) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find_params params = { @@ -1892,7 +1892,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GetL STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GetLinkAtPosition, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetCookie(struct w_steam_iface *_this, const char *pchHostname, const char *pchKey, const char *pchValue, const char *pchPath, uint32_t nExpires, bool bSecure, bool bHTTPOnly) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetCookie(struct w_steam_iface *_this, const char *pchHostname, const char *pchKey, const char *pchValue, const char *pchPath, uint32_t nExpires, int8_t bSecure, int8_t bHTTPOnly) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetCookie_params params = { @@ -1923,7 +1923,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetP STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetPageScaleFactor, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetBackgroundMode(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bBackgroundMode) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetBackgroundMode(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bBackgroundMode) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetBackgroundMode_params params = { @@ -1947,7 +1947,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetD STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetDPIScalingFactor, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AllowStartRequest(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bAllowed) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AllowStartRequest(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bAllowed) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AllowStartRequest_params params = { @@ -1959,7 +1959,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Allo STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AllowStartRequest, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_JSDialogResponse(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bResult) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_JSDialogResponse(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bResult) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_JSDialogResponse_params params = { @@ -2080,7 +2080,7 @@ DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_destructor(struct w_steam_iface *_this) {/* never called */} -bool __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Init(struct w_steam_iface *_this) +int8_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Init(struct w_steam_iface *_this) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Init_params params = { @@ -2091,7 +2091,7 @@ bool __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Init return params._ret; } -bool __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Shutdown(struct w_steam_iface *_this) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Shutdown_params params = { @@ -2282,7 +2282,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Mous STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseWheel, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyDown(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t nNativeKeyCode, uint32_t eHTMLKeyModifiers, bool bIsSystemKey) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyDown(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t nNativeKeyCode, uint32_t eHTMLKeyModifiers, int8_t bIsSystemKey) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyDown_params params = { @@ -2346,7 +2346,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetV STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetVerticalScroll, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetKeyFocus(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bHasKeyFocus) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetKeyFocus(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bHasKeyFocus) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetKeyFocus_params params = { @@ -2391,7 +2391,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Past STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_PasteFromClipboard, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchSearchStr, bool bCurrentlyInFind, bool bReverse) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchSearchStr, int8_t bCurrentlyInFind, int8_t bReverse) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find_params params = { @@ -2429,7 +2429,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GetL STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GetLinkAtPosition, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetCookie(struct w_steam_iface *_this, const char *pchHostname, const char *pchKey, const char *pchValue, const char *pchPath, uint32_t nExpires, bool bSecure, bool bHTTPOnly) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetCookie(struct w_steam_iface *_this, const char *pchHostname, const char *pchKey, const char *pchValue, const char *pchPath, uint32_t nExpires, int8_t bSecure, int8_t bHTTPOnly) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetCookie_params params = { @@ -2460,7 +2460,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetP STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetPageScaleFactor, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetBackgroundMode(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bBackgroundMode) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetBackgroundMode(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bBackgroundMode) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetBackgroundMode_params params = { @@ -2495,7 +2495,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Open STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_OpenDeveloperTools, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AllowStartRequest(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bAllowed) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AllowStartRequest(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bAllowed) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AllowStartRequest_params params = { @@ -2507,7 +2507,7 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Allo STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AllowStartRequest, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_JSDialogResponse(struct w_steam_iface *_this, uint32_t unBrowserHandle, bool bResult) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_JSDialogResponse(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bResult) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_JSDialogResponse_params params = { diff --git a/lsteamclient/winISteamHTTP.c b/lsteamclient/winISteamHTTP.c index 2d7ede21..76e4156c 100644 --- a/lsteamclient/winISteamHTTP.c +++ b/lsteamclient/winISteamHTTP.c @@ -32,7 +32,7 @@ uint32_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_CreateHTTPReque return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue(struct w_steam_iface *_this, uint32_t hRequest, uint64_t ulContextValue) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue(struct w_steam_iface *_this, uint32_t hRequest, uint64_t ulContextValue) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue_params params = { @@ -45,7 +45,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestConte return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivityTimeout(struct w_steam_iface *_this, uint32_t hRequest, uint32_t unTimeoutSeconds) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivityTimeout(struct w_steam_iface *_this, uint32_t hRequest, uint32_t unTimeoutSeconds) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivityTimeout_params params = { @@ -58,7 +58,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetwo return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeaderValue(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, const char *pchHeaderValue) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeaderValue(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, const char *pchHeaderValue) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeaderValue_params params = { @@ -72,7 +72,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeade return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOrPostParameter(struct w_steam_iface *_this, uint32_t hRequest, const char *pchParamName, const char *pchParamValue) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOrPostParameter(struct w_steam_iface *_this, uint32_t hRequest, const char *pchParamName, const char *pchParamValue) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOrPostParameter_params params = { @@ -86,7 +86,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOr return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest, uint64_t *pCallHandle) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest, uint64_t *pCallHandle) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest_params params = { @@ -99,7 +99,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest(str return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_DeferHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_DeferHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_DeferHTTPRequest_params params = { @@ -111,7 +111,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_DeferHTTPRequest(st return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_PrioritizeHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_PrioritizeHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_PrioritizeHTTPRequest_params params = { @@ -123,7 +123,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_PrioritizeHTTPReque return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderSize(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, uint32_t *unResponseHeaderSize) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderSize(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, uint32_t *unResponseHeaderSize) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderSize_params params = { @@ -137,7 +137,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHead return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderValue(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, uint8_t *pHeaderValueBuffer, uint32_t unBufferSize) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderValue(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, uint8_t *pHeaderValueBuffer, uint32_t unBufferSize) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderValue_params params = { @@ -152,7 +152,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHead return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodySize(struct w_steam_iface *_this, uint32_t hRequest, uint32_t *unBodySize) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodySize(struct w_steam_iface *_this, uint32_t hRequest, uint32_t *unBodySize) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodySize_params params = { @@ -165,7 +165,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBody return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodyData(struct w_steam_iface *_this, uint32_t hRequest, uint8_t *pBodyDataBuffer, uint32_t unBufferSize) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodyData(struct w_steam_iface *_this, uint32_t hRequest, uint8_t *pBodyDataBuffer, uint32_t unBufferSize) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodyData_params params = { @@ -179,7 +179,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBody return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_ReleaseHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_ReleaseHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_ReleaseHTTPRequest_params params = { @@ -191,7 +191,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_ReleaseHTTPRequest( return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct(struct w_steam_iface *_this, uint32_t hRequest, float *pflPercentOut) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct(struct w_steam_iface *_this, uint32_t hRequest, float *pflPercentOut) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct_params params = { @@ -204,7 +204,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProg return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestRawPostBody(struct w_steam_iface *_this, uint32_t hRequest, const char *pchContentType, uint8_t *pubBody, uint32_t unBodyLen) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestRawPostBody(struct w_steam_iface *_this, uint32_t hRequest, const char *pchContentType, uint8_t *pubBody, uint32_t unBodyLen) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestRawPostBody_params params = { @@ -291,7 +291,7 @@ uint32_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateHTTPReque return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue(struct w_steam_iface *_this, uint32_t hRequest, uint64_t ulContextValue) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue(struct w_steam_iface *_this, uint32_t hRequest, uint64_t ulContextValue) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue_params params = { @@ -304,7 +304,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestConte return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivityTimeout(struct w_steam_iface *_this, uint32_t hRequest, uint32_t unTimeoutSeconds) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivityTimeout(struct w_steam_iface *_this, uint32_t hRequest, uint32_t unTimeoutSeconds) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivityTimeout_params params = { @@ -317,7 +317,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetwo return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeaderValue(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, const char *pchHeaderValue) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeaderValue(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, const char *pchHeaderValue) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeaderValue_params params = { @@ -331,7 +331,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeade return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOrPostParameter(struct w_steam_iface *_this, uint32_t hRequest, const char *pchParamName, const char *pchParamValue) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOrPostParameter(struct w_steam_iface *_this, uint32_t hRequest, const char *pchParamName, const char *pchParamValue) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOrPostParameter_params params = { @@ -345,7 +345,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOr return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest, uint64_t *pCallHandle) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest, uint64_t *pCallHandle) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest_params params = { @@ -358,7 +358,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest(str return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndStreamResponse(struct w_steam_iface *_this, uint32_t hRequest, uint64_t *pCallHandle) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndStreamResponse(struct w_steam_iface *_this, uint32_t hRequest, uint64_t *pCallHandle) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndStreamResponse_params params = { @@ -371,7 +371,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndS return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_DeferHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_DeferHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_DeferHTTPRequest_params params = { @@ -383,7 +383,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_DeferHTTPRequest(st return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_PrioritizeHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_PrioritizeHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_PrioritizeHTTPRequest_params params = { @@ -395,7 +395,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_PrioritizeHTTPReque return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderSize(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, uint32_t *unResponseHeaderSize) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderSize(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, uint32_t *unResponseHeaderSize) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderSize_params params = { @@ -409,7 +409,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHead return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderValue(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, uint8_t *pHeaderValueBuffer, uint32_t unBufferSize) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderValue(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, uint8_t *pHeaderValueBuffer, uint32_t unBufferSize) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderValue_params params = { @@ -424,7 +424,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHead return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodySize(struct w_steam_iface *_this, uint32_t hRequest, uint32_t *unBodySize) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodySize(struct w_steam_iface *_this, uint32_t hRequest, uint32_t *unBodySize) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodySize_params params = { @@ -437,7 +437,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBody return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodyData(struct w_steam_iface *_this, uint32_t hRequest, uint8_t *pBodyDataBuffer, uint32_t unBufferSize) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodyData(struct w_steam_iface *_this, uint32_t hRequest, uint8_t *pBodyDataBuffer, uint32_t unBufferSize) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodyData_params params = { @@ -451,7 +451,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBody return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingResponseBodyData(struct w_steam_iface *_this, uint32_t hRequest, uint32_t cOffset, uint8_t *pBodyDataBuffer, uint32_t unBufferSize) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingResponseBodyData(struct w_steam_iface *_this, uint32_t hRequest, uint32_t cOffset, uint8_t *pBodyDataBuffer, uint32_t unBufferSize) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingResponseBodyData_params params = { @@ -466,7 +466,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingRes return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseHTTPRequest_params params = { @@ -478,7 +478,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseHTTPRequest( return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProgressPct(struct w_steam_iface *_this, uint32_t hRequest, float *pflPercentOut) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProgressPct(struct w_steam_iface *_this, uint32_t hRequest, float *pflPercentOut) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProgressPct_params params = { @@ -491,7 +491,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProg return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPostBody(struct w_steam_iface *_this, uint32_t hRequest, const char *pchContentType, uint8_t *pubBody, uint32_t unBodyLen) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPostBody(struct w_steam_iface *_this, uint32_t hRequest, const char *pchContentType, uint8_t *pubBody, uint32_t unBodyLen) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPostBody_params params = { @@ -506,7 +506,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPo return params._ret; } -uint32_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateCookieContainer(struct w_steam_iface *_this, bool bAllowResponsesToModify) +uint32_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateCookieContainer(struct w_steam_iface *_this, int8_t bAllowResponsesToModify) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateCookieContainer_params params = { @@ -518,7 +518,7 @@ uint32_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateCookieCon return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseCookieContainer(struct w_steam_iface *_this, uint32_t hCookieContainer) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseCookieContainer(struct w_steam_iface *_this, uint32_t hCookieContainer) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseCookieContainer_params params = { @@ -530,7 +530,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseCookieContai return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie(struct w_steam_iface *_this, uint32_t hCookieContainer, const char *pchHost, const char *pchUrl, const char *pchCookie) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie(struct w_steam_iface *_this, uint32_t hCookieContainer, const char *pchHost, const char *pchUrl, const char *pchCookie) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie_params params = { @@ -545,7 +545,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie(struct w_ return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCookieContainer(struct w_steam_iface *_this, uint32_t hRequest, uint32_t hCookieContainer) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCookieContainer(struct w_steam_iface *_this, uint32_t hRequest, uint32_t hCookieContainer) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCookieContainer_params params = { @@ -558,7 +558,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCooki return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserAgentInfo(struct w_steam_iface *_this, uint32_t hRequest, const char *pchUserAgentInfo) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserAgentInfo(struct w_steam_iface *_this, uint32_t hRequest, const char *pchUserAgentInfo) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserAgentInfo_params params = { @@ -571,7 +571,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserA return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRequiresVerifiedCertificate(struct w_steam_iface *_this, uint32_t hRequest, bool bRequireVerifiedCertificate) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRequiresVerifiedCertificate(struct w_steam_iface *_this, uint32_t hRequest, int8_t bRequireVerifiedCertificate) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRequiresVerifiedCertificate_params params = { @@ -584,7 +584,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRequi return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeoutMS(struct w_steam_iface *_this, uint32_t hRequest, uint32_t unMilliseconds) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeoutMS(struct w_steam_iface *_this, uint32_t hRequest, uint32_t unMilliseconds) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeoutMS_params params = { @@ -597,7 +597,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsol return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPRequestWasTimedOut(struct w_steam_iface *_this, uint32_t hRequest, bool *pbWasTimedOut) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPRequestWasTimedOut(struct w_steam_iface *_this, uint32_t hRequest, int8_t *pbWasTimedOut) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPRequestWasTimedOut_params params = { @@ -692,7 +692,7 @@ uint32_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateHTTPReque return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue(struct w_steam_iface *_this, uint32_t hRequest, uint64_t ulContextValue) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue(struct w_steam_iface *_this, uint32_t hRequest, uint64_t ulContextValue) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue_params params = { @@ -705,7 +705,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestConte return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivityTimeout(struct w_steam_iface *_this, uint32_t hRequest, uint32_t unTimeoutSeconds) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivityTimeout(struct w_steam_iface *_this, uint32_t hRequest, uint32_t unTimeoutSeconds) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivityTimeout_params params = { @@ -718,7 +718,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetwo return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeaderValue(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, const char *pchHeaderValue) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeaderValue(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, const char *pchHeaderValue) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeaderValue_params params = { @@ -732,7 +732,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeade return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOrPostParameter(struct w_steam_iface *_this, uint32_t hRequest, const char *pchParamName, const char *pchParamValue) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOrPostParameter(struct w_steam_iface *_this, uint32_t hRequest, const char *pchParamName, const char *pchParamValue) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOrPostParameter_params params = { @@ -746,7 +746,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOr return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest, uint64_t *pCallHandle) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest, uint64_t *pCallHandle) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest_params params = { @@ -759,7 +759,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest(str return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndStreamResponse(struct w_steam_iface *_this, uint32_t hRequest, uint64_t *pCallHandle) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndStreamResponse(struct w_steam_iface *_this, uint32_t hRequest, uint64_t *pCallHandle) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndStreamResponse_params params = { @@ -772,7 +772,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndS return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_DeferHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_DeferHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_DeferHTTPRequest_params params = { @@ -784,7 +784,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_DeferHTTPRequest(st return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_PrioritizeHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_PrioritizeHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_PrioritizeHTTPRequest_params params = { @@ -796,7 +796,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_PrioritizeHTTPReque return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderSize(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, uint32_t *unResponseHeaderSize) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderSize(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, uint32_t *unResponseHeaderSize) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderSize_params params = { @@ -810,7 +810,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHead return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderValue(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, uint8_t *pHeaderValueBuffer, uint32_t unBufferSize) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderValue(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, uint8_t *pHeaderValueBuffer, uint32_t unBufferSize) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderValue_params params = { @@ -825,7 +825,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHead return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodySize(struct w_steam_iface *_this, uint32_t hRequest, uint32_t *unBodySize) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodySize(struct w_steam_iface *_this, uint32_t hRequest, uint32_t *unBodySize) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodySize_params params = { @@ -838,7 +838,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBody return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodyData(struct w_steam_iface *_this, uint32_t hRequest, uint8_t *pBodyDataBuffer, uint32_t unBufferSize) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodyData(struct w_steam_iface *_this, uint32_t hRequest, uint8_t *pBodyDataBuffer, uint32_t unBufferSize) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodyData_params params = { @@ -852,7 +852,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBody return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingResponseBodyData(struct w_steam_iface *_this, uint32_t hRequest, uint32_t cOffset, uint8_t *pBodyDataBuffer, uint32_t unBufferSize) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingResponseBodyData(struct w_steam_iface *_this, uint32_t hRequest, uint32_t cOffset, uint8_t *pBodyDataBuffer, uint32_t unBufferSize) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingResponseBodyData_params params = { @@ -867,7 +867,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingRes return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseHTTPRequest_params params = { @@ -879,7 +879,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseHTTPRequest( return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProgressPct(struct w_steam_iface *_this, uint32_t hRequest, float *pflPercentOut) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProgressPct(struct w_steam_iface *_this, uint32_t hRequest, float *pflPercentOut) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProgressPct_params params = { @@ -892,7 +892,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProg return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPostBody(struct w_steam_iface *_this, uint32_t hRequest, const char *pchContentType, uint8_t *pubBody, uint32_t unBodyLen) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPostBody(struct w_steam_iface *_this, uint32_t hRequest, const char *pchContentType, uint8_t *pubBody, uint32_t unBodyLen) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPostBody_params params = { @@ -907,7 +907,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPo return params._ret; } -uint32_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateCookieContainer(struct w_steam_iface *_this, bool bAllowResponsesToModify) +uint32_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateCookieContainer(struct w_steam_iface *_this, int8_t bAllowResponsesToModify) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateCookieContainer_params params = { @@ -919,7 +919,7 @@ uint32_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateCookieCon return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseCookieContainer(struct w_steam_iface *_this, uint32_t hCookieContainer) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseCookieContainer(struct w_steam_iface *_this, uint32_t hCookieContainer) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseCookieContainer_params params = { @@ -931,7 +931,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseCookieContai return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie(struct w_steam_iface *_this, uint32_t hCookieContainer, const char *pchHost, const char *pchUrl, const char *pchCookie) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie(struct w_steam_iface *_this, uint32_t hCookieContainer, const char *pchHost, const char *pchUrl, const char *pchCookie) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie_params params = { @@ -946,7 +946,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie(struct w_ return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCookieContainer(struct w_steam_iface *_this, uint32_t hRequest, uint32_t hCookieContainer) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCookieContainer(struct w_steam_iface *_this, uint32_t hRequest, uint32_t hCookieContainer) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCookieContainer_params params = { @@ -959,7 +959,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCooki return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserAgentInfo(struct w_steam_iface *_this, uint32_t hRequest, const char *pchUserAgentInfo) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserAgentInfo(struct w_steam_iface *_this, uint32_t hRequest, const char *pchUserAgentInfo) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserAgentInfo_params params = { @@ -972,7 +972,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserA return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRequiresVerifiedCertificate(struct w_steam_iface *_this, uint32_t hRequest, bool bRequireVerifiedCertificate) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRequiresVerifiedCertificate(struct w_steam_iface *_this, uint32_t hRequest, int8_t bRequireVerifiedCertificate) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRequiresVerifiedCertificate_params params = { @@ -985,7 +985,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRequi return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeoutMS(struct w_steam_iface *_this, uint32_t hRequest, uint32_t unMilliseconds) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeoutMS(struct w_steam_iface *_this, uint32_t hRequest, uint32_t unMilliseconds) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeoutMS_params params = { @@ -998,7 +998,7 @@ bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsol return params._ret; } -bool __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPRequestWasTimedOut(struct w_steam_iface *_this, uint32_t hRequest, bool *pbWasTimedOut) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPRequestWasTimedOut(struct w_steam_iface *_this, uint32_t hRequest, int8_t *pbWasTimedOut) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPRequestWasTimedOut_params params = { diff --git a/lsteamclient/winISteamInput.c b/lsteamclient/winISteamInput.c index 499318d0..a3d7235e 100644 --- a/lsteamclient/winISteamInput.c +++ b/lsteamclient/winISteamInput.c @@ -39,7 +39,7 @@ DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput001_TranslateActionOrigin, 12) DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput001_GetDeviceBindingRevision, 20) DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput001_GetRemotePlaySessionID, 12) -bool __thiscall winISteamInput_SteamInput001_Init(struct w_steam_iface *_this) +int8_t __thiscall winISteamInput_SteamInput001_Init(struct w_steam_iface *_this) { struct ISteamInput_SteamInput001_Init_params params = { @@ -50,7 +50,7 @@ bool __thiscall winISteamInput_SteamInput001_Init(struct w_steam_iface *_this) return params._ret; } -bool __thiscall winISteamInput_SteamInput001_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamInput_SteamInput001_Shutdown(struct w_steam_iface *_this) { struct ISteamInput_SteamInput001_Shutdown_params params = { @@ -343,7 +343,7 @@ void __thiscall winISteamInput_SteamInput001_TriggerRepeatedHapticPulse(struct w STEAMCLIENT_CALL( ISteamInput_SteamInput001_TriggerRepeatedHapticPulse, ¶ms ); } -bool __thiscall winISteamInput_SteamInput001_ShowBindingPanel(struct w_steam_iface *_this, uint64_t inputHandle) +int8_t __thiscall winISteamInput_SteamInput001_ShowBindingPanel(struct w_steam_iface *_this, uint64_t inputHandle) { struct ISteamInput_SteamInput001_ShowBindingPanel_params params = { @@ -429,7 +429,7 @@ uint32_t __thiscall winISteamInput_SteamInput001_TranslateActionOrigin(struct w_ return params._ret; } -bool __thiscall winISteamInput_SteamInput001_GetDeviceBindingRevision(struct w_steam_iface *_this, uint64_t inputHandle, int32_t *pMajor, int32_t *pMinor) +int8_t __thiscall winISteamInput_SteamInput001_GetDeviceBindingRevision(struct w_steam_iface *_this, uint64_t inputHandle, int32_t *pMajor, int32_t *pMinor) { struct ISteamInput_SteamInput001_GetDeviceBindingRevision_params params = { @@ -544,7 +544,7 @@ DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput002_TranslateActionOrigin, 12) DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput002_GetDeviceBindingRevision, 20) DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput002_GetRemotePlaySessionID, 12) -bool __thiscall winISteamInput_SteamInput002_Init(struct w_steam_iface *_this) +int8_t __thiscall winISteamInput_SteamInput002_Init(struct w_steam_iface *_this) { struct ISteamInput_SteamInput002_Init_params params = { @@ -555,7 +555,7 @@ bool __thiscall winISteamInput_SteamInput002_Init(struct w_steam_iface *_this) return params._ret; } -bool __thiscall winISteamInput_SteamInput002_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamInput_SteamInput002_Shutdown(struct w_steam_iface *_this) { struct ISteamInput_SteamInput002_Shutdown_params params = { @@ -848,7 +848,7 @@ void __thiscall winISteamInput_SteamInput002_TriggerRepeatedHapticPulse(struct w STEAMCLIENT_CALL( ISteamInput_SteamInput002_TriggerRepeatedHapticPulse, ¶ms ); } -bool __thiscall winISteamInput_SteamInput002_ShowBindingPanel(struct w_steam_iface *_this, uint64_t inputHandle) +int8_t __thiscall winISteamInput_SteamInput002_ShowBindingPanel(struct w_steam_iface *_this, uint64_t inputHandle) { struct ISteamInput_SteamInput002_ShowBindingPanel_params params = { @@ -934,7 +934,7 @@ uint32_t __thiscall winISteamInput_SteamInput002_TranslateActionOrigin(struct w_ return params._ret; } -bool __thiscall winISteamInput_SteamInput002_GetDeviceBindingRevision(struct w_steam_iface *_this, uint64_t inputHandle, int32_t *pMajor, int32_t *pMinor) +int8_t __thiscall winISteamInput_SteamInput002_GetDeviceBindingRevision(struct w_steam_iface *_this, uint64_t inputHandle, int32_t *pMajor, int32_t *pMinor) { struct ISteamInput_SteamInput002_GetDeviceBindingRevision_params params = { @@ -1061,7 +1061,7 @@ DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput005_GetDeviceBindingRevision, 2 DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput005_GetRemotePlaySessionID, 12) DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput005_GetSessionInputConfigurationSettings, 4) -bool __thiscall winISteamInput_SteamInput005_Init(struct w_steam_iface *_this, bool bExplicitlyCallRunFrame) +int8_t __thiscall winISteamInput_SteamInput005_Init(struct w_steam_iface *_this, int8_t bExplicitlyCallRunFrame) { struct ISteamInput_SteamInput005_Init_params params = { @@ -1073,7 +1073,7 @@ bool __thiscall winISteamInput_SteamInput005_Init(struct w_steam_iface *_this, b return params._ret; } -bool __thiscall winISteamInput_SteamInput005_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamInput_SteamInput005_Shutdown(struct w_steam_iface *_this) { struct ISteamInput_SteamInput005_Shutdown_params params = { @@ -1084,7 +1084,7 @@ bool __thiscall winISteamInput_SteamInput005_Shutdown(struct w_steam_iface *_thi return params._ret; } -bool __thiscall winISteamInput_SteamInput005_SetInputActionManifestFilePath(struct w_steam_iface *_this, const char *pchInputActionManifestAbsolutePath) +int8_t __thiscall winISteamInput_SteamInput005_SetInputActionManifestFilePath(struct w_steam_iface *_this, const char *pchInputActionManifestAbsolutePath) { struct ISteamInput_SteamInput005_SetInputActionManifestFilePath_params params = { @@ -1096,7 +1096,7 @@ bool __thiscall winISteamInput_SteamInput005_SetInputActionManifestFilePath(stru return params._ret; } -void __thiscall winISteamInput_SteamInput005_RunFrame(struct w_steam_iface *_this, bool bReservedValue) +void __thiscall winISteamInput_SteamInput005_RunFrame(struct w_steam_iface *_this, int8_t bReservedValue) { struct ISteamInput_SteamInput005_RunFrame_params params = { @@ -1107,7 +1107,7 @@ void __thiscall winISteamInput_SteamInput005_RunFrame(struct w_steam_iface *_thi STEAMCLIENT_CALL( ISteamInput_SteamInput005_RunFrame, ¶ms ); } -bool __thiscall winISteamInput_SteamInput005_BWaitForData(struct w_steam_iface *_this, bool bWaitForever, uint32_t unTimeout) +int8_t __thiscall winISteamInput_SteamInput005_BWaitForData(struct w_steam_iface *_this, int8_t bWaitForever, uint32_t unTimeout) { struct ISteamInput_SteamInput005_BWaitForData_params params = { @@ -1120,7 +1120,7 @@ bool __thiscall winISteamInput_SteamInput005_BWaitForData(struct w_steam_iface * return params._ret; } -bool __thiscall winISteamInput_SteamInput005_BNewDataAvailable(struct w_steam_iface *_this) +int8_t __thiscall winISteamInput_SteamInput005_BNewDataAvailable(struct w_steam_iface *_this) { struct ISteamInput_SteamInput005_BNewDataAvailable_params params = { @@ -1479,7 +1479,7 @@ void __thiscall winISteamInput_SteamInput005_Legacy_TriggerRepeatedHapticPulse(s STEAMCLIENT_CALL( ISteamInput_SteamInput005_Legacy_TriggerRepeatedHapticPulse, ¶ms ); } -bool __thiscall winISteamInput_SteamInput005_ShowBindingPanel(struct w_steam_iface *_this, uint64_t inputHandle) +int8_t __thiscall winISteamInput_SteamInput005_ShowBindingPanel(struct w_steam_iface *_this, uint64_t inputHandle) { struct ISteamInput_SteamInput005_ShowBindingPanel_params params = { @@ -1565,7 +1565,7 @@ uint32_t __thiscall winISteamInput_SteamInput005_TranslateActionOrigin(struct w_ return params._ret; } -bool __thiscall winISteamInput_SteamInput005_GetDeviceBindingRevision(struct w_steam_iface *_this, uint64_t inputHandle, int32_t *pMajor, int32_t *pMinor) +int8_t __thiscall winISteamInput_SteamInput005_GetDeviceBindingRevision(struct w_steam_iface *_this, uint64_t inputHandle, int32_t *pMajor, int32_t *pMinor) { struct ISteamInput_SteamInput005_GetDeviceBindingRevision_params params = { @@ -1716,7 +1716,7 @@ DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput006_GetRemotePlaySessionID, 12) DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput006_GetSessionInputConfigurationSettings, 4) DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput006_SetDualSenseTriggerEffect, 16) -bool __thiscall winISteamInput_SteamInput006_Init(struct w_steam_iface *_this, bool bExplicitlyCallRunFrame) +int8_t __thiscall winISteamInput_SteamInput006_Init(struct w_steam_iface *_this, int8_t bExplicitlyCallRunFrame) { struct ISteamInput_SteamInput006_Init_params params = { @@ -1728,7 +1728,7 @@ bool __thiscall winISteamInput_SteamInput006_Init(struct w_steam_iface *_this, b return params._ret; } -bool __thiscall winISteamInput_SteamInput006_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamInput_SteamInput006_Shutdown(struct w_steam_iface *_this) { struct ISteamInput_SteamInput006_Shutdown_params params = { @@ -1739,7 +1739,7 @@ bool __thiscall winISteamInput_SteamInput006_Shutdown(struct w_steam_iface *_thi return params._ret; } -bool __thiscall winISteamInput_SteamInput006_SetInputActionManifestFilePath(struct w_steam_iface *_this, const char *pchInputActionManifestAbsolutePath) +int8_t __thiscall winISteamInput_SteamInput006_SetInputActionManifestFilePath(struct w_steam_iface *_this, const char *pchInputActionManifestAbsolutePath) { struct ISteamInput_SteamInput006_SetInputActionManifestFilePath_params params = { @@ -1751,7 +1751,7 @@ bool __thiscall winISteamInput_SteamInput006_SetInputActionManifestFilePath(stru return params._ret; } -void __thiscall winISteamInput_SteamInput006_RunFrame(struct w_steam_iface *_this, bool bReservedValue) +void __thiscall winISteamInput_SteamInput006_RunFrame(struct w_steam_iface *_this, int8_t bReservedValue) { struct ISteamInput_SteamInput006_RunFrame_params params = { @@ -1762,7 +1762,7 @@ void __thiscall winISteamInput_SteamInput006_RunFrame(struct w_steam_iface *_thi STEAMCLIENT_CALL( ISteamInput_SteamInput006_RunFrame, ¶ms ); } -bool __thiscall winISteamInput_SteamInput006_BWaitForData(struct w_steam_iface *_this, bool bWaitForever, uint32_t unTimeout) +int8_t __thiscall winISteamInput_SteamInput006_BWaitForData(struct w_steam_iface *_this, int8_t bWaitForever, uint32_t unTimeout) { struct ISteamInput_SteamInput006_BWaitForData_params params = { @@ -1775,7 +1775,7 @@ bool __thiscall winISteamInput_SteamInput006_BWaitForData(struct w_steam_iface * return params._ret; } -bool __thiscall winISteamInput_SteamInput006_BNewDataAvailable(struct w_steam_iface *_this) +int8_t __thiscall winISteamInput_SteamInput006_BNewDataAvailable(struct w_steam_iface *_this) { struct ISteamInput_SteamInput006_BNewDataAvailable_params params = { @@ -2134,7 +2134,7 @@ void __thiscall winISteamInput_SteamInput006_Legacy_TriggerRepeatedHapticPulse(s STEAMCLIENT_CALL( ISteamInput_SteamInput006_Legacy_TriggerRepeatedHapticPulse, ¶ms ); } -bool __thiscall winISteamInput_SteamInput006_ShowBindingPanel(struct w_steam_iface *_this, uint64_t inputHandle) +int8_t __thiscall winISteamInput_SteamInput006_ShowBindingPanel(struct w_steam_iface *_this, uint64_t inputHandle) { struct ISteamInput_SteamInput006_ShowBindingPanel_params params = { @@ -2220,7 +2220,7 @@ uint32_t __thiscall winISteamInput_SteamInput006_TranslateActionOrigin(struct w_ return params._ret; } -bool __thiscall winISteamInput_SteamInput006_GetDeviceBindingRevision(struct w_steam_iface *_this, uint64_t inputHandle, int32_t *pMajor, int32_t *pMinor) +int8_t __thiscall winISteamInput_SteamInput006_GetDeviceBindingRevision(struct w_steam_iface *_this, uint64_t inputHandle, int32_t *pMajor, int32_t *pMinor) { struct ISteamInput_SteamInput006_GetDeviceBindingRevision_params params = { diff --git a/lsteamclient/winISteamInventory.c b/lsteamclient/winISteamInventory.c index ffd08028..dc725d27 100644 --- a/lsteamclient/winISteamInventory.c +++ b/lsteamclient/winISteamInventory.c @@ -40,7 +40,7 @@ uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultSt return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems(struct w_steam_iface *_this, int32_t resultHandle, SteamItemDetails_t *pOutItemsArray, uint32_t *punOutItemsArraySize) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems(struct w_steam_iface *_this, int32_t resultHandle, SteamItemDetails_t *pOutItemsArray, uint32_t *punOutItemsArraySize) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems_params params = { @@ -66,7 +66,7 @@ uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultTi return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_CheckResultSteamID(struct w_steam_iface *_this, int32_t resultHandle, CSteamID steamIDExpected) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_CheckResultSteamID(struct w_steam_iface *_this, int32_t resultHandle, CSteamID steamIDExpected) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_CheckResultSteamID_params params = { @@ -90,7 +90,7 @@ void __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_DestroyResult(s STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DestroyResult, ¶ms ); } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetAllItems(struct w_steam_iface *_this, int32_t *pResultHandle) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetAllItems(struct w_steam_iface *_this, int32_t *pResultHandle) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetAllItems_params params = { @@ -102,7 +102,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetAllItems(str return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID(struct w_steam_iface *_this, int32_t *pResultHandle, const uint64_t *pInstanceIDs, uint32_t unCountInstanceIDs) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID(struct w_steam_iface *_this, int32_t *pResultHandle, const uint64_t *pInstanceIDs, uint32_t unCountInstanceIDs) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID_params params = { @@ -116,7 +116,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID(st return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult(struct w_steam_iface *_this, int32_t resultHandle, void *pOutBuffer, uint32_t *punOutBufferSize) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult(struct w_steam_iface *_this, int32_t resultHandle, void *pOutBuffer, uint32_t *punOutBufferSize) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult_params params = { @@ -130,7 +130,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResult(struct w_steam_iface *_this, int32_t *pOutResultHandle, const void *pBuffer, uint32_t unBufferSize, bool bRESERVED_MUST_BE_FALSE) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResult(struct w_steam_iface *_this, int32_t *pOutResultHandle, const void *pBuffer, uint32_t unBufferSize, int8_t bRESERVED_MUST_BE_FALSE) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResult_params params = { @@ -145,7 +145,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResu return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayItemDefs, const uint32_t *punArrayQuantity, uint32_t unArrayLength) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayItemDefs, const uint32_t *punArrayQuantity, uint32_t unArrayLength) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems_params params = { @@ -160,7 +160,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems(s return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GrantPromoItems(struct w_steam_iface *_this, int32_t *pResultHandle) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GrantPromoItems(struct w_steam_iface *_this, int32_t *pResultHandle) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GrantPromoItems_params params = { @@ -172,7 +172,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GrantPromoItems return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem(struct w_steam_iface *_this, int32_t *pResultHandle, int32_t itemDef) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem(struct w_steam_iface *_this, int32_t *pResultHandle, int32_t itemDef) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem_params params = { @@ -185,7 +185,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem(st return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayItemDefs, uint32_t unArrayLength) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayItemDefs, uint32_t unArrayLength) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems_params params = { @@ -199,7 +199,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems(s return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem(struct w_steam_iface *_this, int32_t *pResultHandle, uint64_t itemConsume, uint32_t unQuantity) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem(struct w_steam_iface *_this, int32_t *pResultHandle, uint64_t itemConsume, uint32_t unQuantity) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem_params params = { @@ -213,7 +213,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem(str return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayGenerate, const uint32_t *punArrayGenerateQuantity, uint32_t unArrayGenerateLength, const uint64_t *pArrayDestroy, const uint32_t *punArrayDestroyQuantity, uint32_t unArrayDestroyLength) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayGenerate, const uint32_t *punArrayGenerateQuantity, uint32_t unArrayGenerateLength, const uint64_t *pArrayDestroy, const uint32_t *punArrayDestroyQuantity, uint32_t unArrayDestroyLength) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems_params params = { @@ -231,7 +231,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems(s return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_TransferItemQuantity(struct w_steam_iface *_this, int32_t *pResultHandle, uint64_t itemIdSource, uint32_t unQuantity, uint64_t itemIdDest) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_TransferItemQuantity(struct w_steam_iface *_this, int32_t *pResultHandle, uint64_t itemIdSource, uint32_t unQuantity, uint64_t itemIdDest) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TransferItemQuantity_params params = { @@ -256,7 +256,7 @@ void __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_SendItemDropHea STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SendItemDropHeartbeat, ¶ms ); } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop(struct w_steam_iface *_this, int32_t *pResultHandle, int32_t dropListDefinition) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop(struct w_steam_iface *_this, int32_t *pResultHandle, int32_t dropListDefinition) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop_params params = { @@ -269,7 +269,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems(struct w_steam_iface *_this, int32_t *pResultHandle, CSteamID steamIDTradePartner, const uint64_t *pArrayGive, const uint32_t *pArrayGiveQuantity, uint32_t nArrayGiveLength, const uint64_t *pArrayGet, const uint32_t *pArrayGetQuantity, uint32_t nArrayGetLength) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems(struct w_steam_iface *_this, int32_t *pResultHandle, CSteamID steamIDTradePartner, const uint64_t *pArrayGive, const uint32_t *pArrayGiveQuantity, uint32_t nArrayGiveLength, const uint64_t *pArrayGet, const uint32_t *pArrayGetQuantity, uint32_t nArrayGetLength) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems_params params = { @@ -288,7 +288,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems(stru return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_LoadItemDefinitions(struct w_steam_iface *_this) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_LoadItemDefinitions(struct w_steam_iface *_this) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_LoadItemDefinitions_params params = { @@ -299,7 +299,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_LoadItemDefinit return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionIDs(struct w_steam_iface *_this, int32_t *pItemDefIDs, uint32_t *punItemDefIDsArraySize) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionIDs(struct w_steam_iface *_this, int32_t *pItemDefIDs, uint32_t *punItemDefIDsArraySize) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionIDs_params params = { @@ -312,7 +312,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefiniti return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionProperty(struct w_steam_iface *_this, int32_t iDefinition, const char *pchPropertyName, char *pchValueBuffer, uint32_t *punValueBufferSizeOut) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionProperty(struct w_steam_iface *_this, int32_t iDefinition, const char *pchPropertyName, char *pchValueBuffer, uint32_t *punValueBufferSizeOut) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionProperty_params params = { @@ -339,7 +339,7 @@ uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_RequestElig return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetEligiblePromoItemDefinitionIDs(struct w_steam_iface *_this, CSteamID steamID, int32_t *pItemDefIDs, uint32_t *punItemDefIDsArraySize) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetEligiblePromoItemDefinitionIDs(struct w_steam_iface *_this, CSteamID steamID, int32_t *pItemDefIDs, uint32_t *punItemDefIDsArraySize) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetEligiblePromoItemDefinitionIDs_params params = { @@ -445,7 +445,7 @@ uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultSt return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems(struct w_steam_iface *_this, int32_t resultHandle, SteamItemDetails_t *pOutItemsArray, uint32_t *punOutItemsArraySize) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems(struct w_steam_iface *_this, int32_t resultHandle, SteamItemDetails_t *pOutItemsArray, uint32_t *punOutItemsArraySize) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems_params params = { @@ -459,7 +459,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems( return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemProperty(struct w_steam_iface *_this, int32_t resultHandle, uint32_t unItemIndex, const char *pchPropertyName, char *pchValueBuffer, uint32_t *punValueBufferSizeOut) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemProperty(struct w_steam_iface *_this, int32_t resultHandle, uint32_t unItemIndex, const char *pchPropertyName, char *pchValueBuffer, uint32_t *punValueBufferSizeOut) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemProperty_params params = { @@ -487,7 +487,7 @@ uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultTi return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_CheckResultSteamID(struct w_steam_iface *_this, int32_t resultHandle, CSteamID steamIDExpected) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_CheckResultSteamID(struct w_steam_iface *_this, int32_t resultHandle, CSteamID steamIDExpected) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_CheckResultSteamID_params params = { @@ -511,7 +511,7 @@ void __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_DestroyResult(s STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DestroyResult, ¶ms ); } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetAllItems(struct w_steam_iface *_this, int32_t *pResultHandle) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetAllItems(struct w_steam_iface *_this, int32_t *pResultHandle) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetAllItems_params params = { @@ -523,7 +523,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetAllItems(str return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID(struct w_steam_iface *_this, int32_t *pResultHandle, const uint64_t *pInstanceIDs, uint32_t unCountInstanceIDs) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID(struct w_steam_iface *_this, int32_t *pResultHandle, const uint64_t *pInstanceIDs, uint32_t unCountInstanceIDs) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID_params params = { @@ -537,7 +537,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID(st return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult(struct w_steam_iface *_this, int32_t resultHandle, void *pOutBuffer, uint32_t *punOutBufferSize) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult(struct w_steam_iface *_this, int32_t resultHandle, void *pOutBuffer, uint32_t *punOutBufferSize) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult_params params = { @@ -551,7 +551,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResult(struct w_steam_iface *_this, int32_t *pOutResultHandle, const void *pBuffer, uint32_t unBufferSize, bool bRESERVED_MUST_BE_FALSE) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResult(struct w_steam_iface *_this, int32_t *pOutResultHandle, const void *pBuffer, uint32_t unBufferSize, int8_t bRESERVED_MUST_BE_FALSE) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResult_params params = { @@ -566,7 +566,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResu return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayItemDefs, const uint32_t *punArrayQuantity, uint32_t unArrayLength) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayItemDefs, const uint32_t *punArrayQuantity, uint32_t unArrayLength) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems_params params = { @@ -581,7 +581,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems(s return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GrantPromoItems(struct w_steam_iface *_this, int32_t *pResultHandle) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GrantPromoItems(struct w_steam_iface *_this, int32_t *pResultHandle) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GrantPromoItems_params params = { @@ -593,7 +593,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GrantPromoItems return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem(struct w_steam_iface *_this, int32_t *pResultHandle, int32_t itemDef) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem(struct w_steam_iface *_this, int32_t *pResultHandle, int32_t itemDef) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem_params params = { @@ -606,7 +606,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem(st return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayItemDefs, uint32_t unArrayLength) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayItemDefs, uint32_t unArrayLength) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems_params params = { @@ -620,7 +620,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems(s return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem(struct w_steam_iface *_this, int32_t *pResultHandle, uint64_t itemConsume, uint32_t unQuantity) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem(struct w_steam_iface *_this, int32_t *pResultHandle, uint64_t itemConsume, uint32_t unQuantity) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem_params params = { @@ -634,7 +634,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem(str return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayGenerate, const uint32_t *punArrayGenerateQuantity, uint32_t unArrayGenerateLength, const uint64_t *pArrayDestroy, const uint32_t *punArrayDestroyQuantity, uint32_t unArrayDestroyLength) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayGenerate, const uint32_t *punArrayGenerateQuantity, uint32_t unArrayGenerateLength, const uint64_t *pArrayDestroy, const uint32_t *punArrayDestroyQuantity, uint32_t unArrayDestroyLength) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems_params params = { @@ -652,7 +652,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems(s return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_TransferItemQuantity(struct w_steam_iface *_this, int32_t *pResultHandle, uint64_t itemIdSource, uint32_t unQuantity, uint64_t itemIdDest) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_TransferItemQuantity(struct w_steam_iface *_this, int32_t *pResultHandle, uint64_t itemIdSource, uint32_t unQuantity, uint64_t itemIdDest) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TransferItemQuantity_params params = { @@ -677,7 +677,7 @@ void __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SendItemDropHea STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SendItemDropHeartbeat, ¶ms ); } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop(struct w_steam_iface *_this, int32_t *pResultHandle, int32_t dropListDefinition) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop(struct w_steam_iface *_this, int32_t *pResultHandle, int32_t dropListDefinition) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop_params params = { @@ -690,7 +690,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems(struct w_steam_iface *_this, int32_t *pResultHandle, CSteamID steamIDTradePartner, const uint64_t *pArrayGive, const uint32_t *pArrayGiveQuantity, uint32_t nArrayGiveLength, const uint64_t *pArrayGet, const uint32_t *pArrayGetQuantity, uint32_t nArrayGetLength) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems(struct w_steam_iface *_this, int32_t *pResultHandle, CSteamID steamIDTradePartner, const uint64_t *pArrayGive, const uint32_t *pArrayGiveQuantity, uint32_t nArrayGiveLength, const uint64_t *pArrayGet, const uint32_t *pArrayGetQuantity, uint32_t nArrayGetLength) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems_params params = { @@ -709,7 +709,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems(stru return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_LoadItemDefinitions(struct w_steam_iface *_this) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_LoadItemDefinitions(struct w_steam_iface *_this) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_LoadItemDefinitions_params params = { @@ -720,7 +720,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_LoadItemDefinit return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionIDs(struct w_steam_iface *_this, int32_t *pItemDefIDs, uint32_t *punItemDefIDsArraySize) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionIDs(struct w_steam_iface *_this, int32_t *pItemDefIDs, uint32_t *punItemDefIDsArraySize) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionIDs_params params = { @@ -733,7 +733,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefiniti return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionProperty(struct w_steam_iface *_this, int32_t iDefinition, const char *pchPropertyName, char *pchValueBuffer, uint32_t *punValueBufferSizeOut) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionProperty(struct w_steam_iface *_this, int32_t iDefinition, const char *pchPropertyName, char *pchValueBuffer, uint32_t *punValueBufferSizeOut) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionProperty_params params = { @@ -760,7 +760,7 @@ uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestElig return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligiblePromoItemDefinitionIDs(struct w_steam_iface *_this, CSteamID steamID, int32_t *pItemDefIDs, uint32_t *punItemDefIDsArraySize) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligiblePromoItemDefinitionIDs(struct w_steam_iface *_this, CSteamID steamID, int32_t *pItemDefIDs, uint32_t *punItemDefIDsArraySize) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligiblePromoItemDefinitionIDs_params params = { @@ -810,7 +810,7 @@ uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetNumItems return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPrices(struct w_steam_iface *_this, int32_t *pArrayItemDefs, uint64_t *pPrices, uint32_t unArrayLength) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPrices(struct w_steam_iface *_this, int32_t *pArrayItemDefs, uint64_t *pPrices, uint32_t unArrayLength) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPrices_params params = { @@ -824,7 +824,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPri return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemPrice(struct w_steam_iface *_this, int32_t iDefinition, uint64_t *pPrice) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemPrice(struct w_steam_iface *_this, int32_t iDefinition, uint64_t *pPrice) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemPrice_params params = { @@ -848,7 +848,7 @@ uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartUpdate return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty_params params = { @@ -862,7 +862,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty( return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, const char *pchPropertyValue) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, const char *pchPropertyValue) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_params params = { @@ -877,7 +877,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty(str return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, bool bValue) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, int8_t bValue) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2_params params = { @@ -892,7 +892,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2(s return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, int64_t nValue) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, int64_t nValue) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3_params params = { @@ -907,7 +907,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3(s return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, float flValue) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, float flValue) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4_params params = { @@ -922,7 +922,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4(s return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SubmitUpdateProperties(struct w_steam_iface *_this, uint64_t handle, int32_t *pResultHandle) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SubmitUpdateProperties(struct w_steam_iface *_this, uint64_t handle, int32_t *pResultHandle) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SubmitUpdateProperties_params params = { @@ -1041,7 +1041,7 @@ uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultSt return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems(struct w_steam_iface *_this, int32_t resultHandle, SteamItemDetails_t *pOutItemsArray, uint32_t *punOutItemsArraySize) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems(struct w_steam_iface *_this, int32_t resultHandle, SteamItemDetails_t *pOutItemsArray, uint32_t *punOutItemsArraySize) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems_params params = { @@ -1055,7 +1055,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems( return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemProperty(struct w_steam_iface *_this, int32_t resultHandle, uint32_t unItemIndex, const char *pchPropertyName, char *pchValueBuffer, uint32_t *punValueBufferSizeOut) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemProperty(struct w_steam_iface *_this, int32_t resultHandle, uint32_t unItemIndex, const char *pchPropertyName, char *pchValueBuffer, uint32_t *punValueBufferSizeOut) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemProperty_params params = { @@ -1083,7 +1083,7 @@ uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultTi return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_CheckResultSteamID(struct w_steam_iface *_this, int32_t resultHandle, CSteamID steamIDExpected) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_CheckResultSteamID(struct w_steam_iface *_this, int32_t resultHandle, CSteamID steamIDExpected) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_CheckResultSteamID_params params = { @@ -1107,7 +1107,7 @@ void __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_DestroyResult(s STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DestroyResult, ¶ms ); } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetAllItems(struct w_steam_iface *_this, int32_t *pResultHandle) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetAllItems(struct w_steam_iface *_this, int32_t *pResultHandle) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetAllItems_params params = { @@ -1119,7 +1119,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetAllItems(str return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID(struct w_steam_iface *_this, int32_t *pResultHandle, const uint64_t *pInstanceIDs, uint32_t unCountInstanceIDs) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID(struct w_steam_iface *_this, int32_t *pResultHandle, const uint64_t *pInstanceIDs, uint32_t unCountInstanceIDs) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID_params params = { @@ -1133,7 +1133,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID(st return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult(struct w_steam_iface *_this, int32_t resultHandle, void *pOutBuffer, uint32_t *punOutBufferSize) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult(struct w_steam_iface *_this, int32_t resultHandle, void *pOutBuffer, uint32_t *punOutBufferSize) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult_params params = { @@ -1147,7 +1147,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResult(struct w_steam_iface *_this, int32_t *pOutResultHandle, const void *pBuffer, uint32_t unBufferSize, bool bRESERVED_MUST_BE_FALSE) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResult(struct w_steam_iface *_this, int32_t *pOutResultHandle, const void *pBuffer, uint32_t unBufferSize, int8_t bRESERVED_MUST_BE_FALSE) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResult_params params = { @@ -1162,7 +1162,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResu return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayItemDefs, const uint32_t *punArrayQuantity, uint32_t unArrayLength) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayItemDefs, const uint32_t *punArrayQuantity, uint32_t unArrayLength) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems_params params = { @@ -1177,7 +1177,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems(s return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GrantPromoItems(struct w_steam_iface *_this, int32_t *pResultHandle) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GrantPromoItems(struct w_steam_iface *_this, int32_t *pResultHandle) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GrantPromoItems_params params = { @@ -1189,7 +1189,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GrantPromoItems return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem(struct w_steam_iface *_this, int32_t *pResultHandle, int32_t itemDef) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem(struct w_steam_iface *_this, int32_t *pResultHandle, int32_t itemDef) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem_params params = { @@ -1202,7 +1202,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem(st return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayItemDefs, uint32_t unArrayLength) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayItemDefs, uint32_t unArrayLength) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems_params params = { @@ -1216,7 +1216,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems(s return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem(struct w_steam_iface *_this, int32_t *pResultHandle, uint64_t itemConsume, uint32_t unQuantity) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem(struct w_steam_iface *_this, int32_t *pResultHandle, uint64_t itemConsume, uint32_t unQuantity) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem_params params = { @@ -1230,7 +1230,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem(str return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayGenerate, const uint32_t *punArrayGenerateQuantity, uint32_t unArrayGenerateLength, const uint64_t *pArrayDestroy, const uint32_t *punArrayDestroyQuantity, uint32_t unArrayDestroyLength) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayGenerate, const uint32_t *punArrayGenerateQuantity, uint32_t unArrayGenerateLength, const uint64_t *pArrayDestroy, const uint32_t *punArrayDestroyQuantity, uint32_t unArrayDestroyLength) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems_params params = { @@ -1248,7 +1248,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems(s return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_TransferItemQuantity(struct w_steam_iface *_this, int32_t *pResultHandle, uint64_t itemIdSource, uint32_t unQuantity, uint64_t itemIdDest) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_TransferItemQuantity(struct w_steam_iface *_this, int32_t *pResultHandle, uint64_t itemIdSource, uint32_t unQuantity, uint64_t itemIdDest) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TransferItemQuantity_params params = { @@ -1273,7 +1273,7 @@ void __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SendItemDropHea STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SendItemDropHeartbeat, ¶ms ); } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop(struct w_steam_iface *_this, int32_t *pResultHandle, int32_t dropListDefinition) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop(struct w_steam_iface *_this, int32_t *pResultHandle, int32_t dropListDefinition) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop_params params = { @@ -1286,7 +1286,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems(struct w_steam_iface *_this, int32_t *pResultHandle, CSteamID steamIDTradePartner, const uint64_t *pArrayGive, const uint32_t *pArrayGiveQuantity, uint32_t nArrayGiveLength, const uint64_t *pArrayGet, const uint32_t *pArrayGetQuantity, uint32_t nArrayGetLength) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems(struct w_steam_iface *_this, int32_t *pResultHandle, CSteamID steamIDTradePartner, const uint64_t *pArrayGive, const uint32_t *pArrayGiveQuantity, uint32_t nArrayGiveLength, const uint64_t *pArrayGet, const uint32_t *pArrayGetQuantity, uint32_t nArrayGetLength) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems_params params = { @@ -1305,7 +1305,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems(stru return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_LoadItemDefinitions(struct w_steam_iface *_this) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_LoadItemDefinitions(struct w_steam_iface *_this) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_LoadItemDefinitions_params params = { @@ -1316,7 +1316,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_LoadItemDefinit return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionIDs(struct w_steam_iface *_this, int32_t *pItemDefIDs, uint32_t *punItemDefIDsArraySize) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionIDs(struct w_steam_iface *_this, int32_t *pItemDefIDs, uint32_t *punItemDefIDsArraySize) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionIDs_params params = { @@ -1329,7 +1329,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefiniti return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionProperty(struct w_steam_iface *_this, int32_t iDefinition, const char *pchPropertyName, char *pchValueBuffer, uint32_t *punValueBufferSizeOut) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionProperty(struct w_steam_iface *_this, int32_t iDefinition, const char *pchPropertyName, char *pchValueBuffer, uint32_t *punValueBufferSizeOut) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionProperty_params params = { @@ -1356,7 +1356,7 @@ uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestElig return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligiblePromoItemDefinitionIDs(struct w_steam_iface *_this, CSteamID steamID, int32_t *pItemDefIDs, uint32_t *punItemDefIDsArraySize) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligiblePromoItemDefinitionIDs(struct w_steam_iface *_this, CSteamID steamID, int32_t *pItemDefIDs, uint32_t *punItemDefIDsArraySize) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligiblePromoItemDefinitionIDs_params params = { @@ -1406,7 +1406,7 @@ uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetNumItems return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPrices(struct w_steam_iface *_this, int32_t *pArrayItemDefs, uint64_t *pCurrentPrices, uint64_t *pBasePrices, uint32_t unArrayLength) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPrices(struct w_steam_iface *_this, int32_t *pArrayItemDefs, uint64_t *pCurrentPrices, uint64_t *pBasePrices, uint32_t unArrayLength) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPrices_params params = { @@ -1421,7 +1421,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPri return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice(struct w_steam_iface *_this, int32_t iDefinition, uint64_t *pCurrentPrice, uint64_t *pBasePrice) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice(struct w_steam_iface *_this, int32_t iDefinition, uint64_t *pCurrentPrice, uint64_t *pBasePrice) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice_params params = { @@ -1446,7 +1446,7 @@ uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartUpdate return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty_params params = { @@ -1460,7 +1460,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty( return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, const char *pchPropertyValue) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, const char *pchPropertyValue) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_params params = { @@ -1475,7 +1475,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty(str return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, bool bValue) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, int8_t bValue) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2_params params = { @@ -1490,7 +1490,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2(s return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, int64_t nValue) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, int64_t nValue) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3_params params = { @@ -1505,7 +1505,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3(s return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, float flValue) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, float flValue) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4_params params = { @@ -1520,7 +1520,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4(s return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties(struct w_steam_iface *_this, uint64_t handle, int32_t *pResultHandle) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties(struct w_steam_iface *_this, uint64_t handle, int32_t *pResultHandle) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties_params params = { @@ -1533,7 +1533,7 @@ bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdatePro return params._ret; } -bool __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_InspectItem(struct w_steam_iface *_this, int32_t *pResultHandle, const char *pchItemToken) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_InspectItem(struct w_steam_iface *_this, int32_t *pResultHandle, const char *pchItemToken) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_InspectItem_params params = { diff --git a/lsteamclient/winISteamMasterServerUpdater.c b/lsteamclient/winISteamMasterServerUpdater.c index b793d966..dbb57af1 100644 --- a/lsteamclient/winISteamMasterServerUpdater.c +++ b/lsteamclient/winISteamMasterServerUpdater.c @@ -18,7 +18,7 @@ DEFINE_THISCALL_WRAPPER(winISteamMasterServerUpdater_SteamMasterServerUpdater001 DEFINE_THISCALL_WRAPPER(winISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNumMasterServers, 4) DEFINE_THISCALL_WRAPPER(winISteamMasterServerUpdater_SteamMasterServerUpdater001_GetMasterServerAddress, 16) -void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_SetActive(struct w_steam_iface *_this, bool bActive) +void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_SetActive(struct w_steam_iface *_this, int8_t bActive) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetActive_params params = { @@ -40,7 +40,7 @@ void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_SetHear STEAMCLIENT_CALL( ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetHeartbeatInterval, ¶ms ); } -bool __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleIncomingPacket(struct w_steam_iface *_this, const void *pData, int32_t cbData, uint32_t srcIP, uint16_t srcPort) +int8_t __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleIncomingPacket(struct w_steam_iface *_this, const void *pData, int32_t cbData, uint32_t srcIP, uint16_t srcPort) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleIncomingPacket_params params = { @@ -70,7 +70,7 @@ int32_t __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_GetN return params._ret; } -void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasicServerData(struct w_steam_iface *_this, uint16_t nProtocolVersion, bool bDedicatedServer, const char *pRegionName, const char *pProductName, uint16_t nMaxReportedClients, bool bPasswordProtected, const char *pGameDescription) +void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasicServerData(struct w_steam_iface *_this, uint16_t nProtocolVersion, int8_t bDedicatedServer, const char *pRegionName, const char *pProductName, uint16_t nMaxReportedClients, int8_t bPasswordProtected, const char *pGameDescription) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasicServerData_params params = { @@ -119,7 +119,7 @@ void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_NotifyS STEAMCLIENT_CALL( ISteamMasterServerUpdater_SteamMasterServerUpdater001_NotifyShutdown, ¶ms ); } -bool __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_WasRestartRequested(struct w_steam_iface *_this) +int8_t __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_WasRestartRequested(struct w_steam_iface *_this) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_WasRestartRequested_params params = { @@ -140,7 +140,7 @@ void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_ForceHe STEAMCLIENT_CALL( ISteamMasterServerUpdater_SteamMasterServerUpdater001_ForceHeartbeat, ¶ms ); } -bool __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_AddMasterServer(struct w_steam_iface *_this, const char *pServerAddress) +int8_t __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_AddMasterServer(struct w_steam_iface *_this, const char *pServerAddress) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_AddMasterServer_params params = { @@ -152,7 +152,7 @@ bool __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_AddMast return params._ret; } -bool __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_RemoveMasterServer(struct w_steam_iface *_this, const char *pServerAddress) +int8_t __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_RemoveMasterServer(struct w_steam_iface *_this, const char *pServerAddress) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_RemoveMasterServer_params params = { diff --git a/lsteamclient/winISteamMatchmaking.c b/lsteamclient/winISteamMatchmaking.c index 13a4d04f..dcf569d8 100644 --- a/lsteamclient/winISteamMatchmaking.c +++ b/lsteamclient/winISteamMatchmaking.c @@ -37,7 +37,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking001_GetFavoriteGameCount return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) { struct ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame_params params = { @@ -70,7 +70,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame(stru return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint32_t unFlags) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint32_t unFlags) { struct ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame_params params = { @@ -85,7 +85,7 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame(stru return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) { struct ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2_params params = { @@ -120,7 +120,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame2(str return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) { struct ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2_params params = { @@ -162,7 +162,7 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking001_GetLobbyByIndex(s return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking001_CreateLobby(struct w_steam_iface *_this, uint64_t ulGameID, bool bPrivate) +void __thiscall winISteamMatchmaking_SteamMatchMaking001_CreateLobby(struct w_steam_iface *_this, uint64_t ulGameID, int8_t bPrivate) { struct ISteamMatchmaking_SteamMatchMaking001_CreateLobby_params params = { @@ -196,7 +196,7 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking001_LeaveLobby(struct w_ste STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking001_LeaveLobby, ¶ms ); } -bool __thiscall winISteamMatchmaking_SteamMatchMaking001_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) { struct ISteamMatchmaking_SteamMatchMaking001_InviteUserToLobby_params params = { @@ -248,7 +248,7 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking001_GetLobbyData(st return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking001_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { struct ISteamMatchmaking_SteamMatchMaking001_SetLobbyData_params params = { @@ -276,7 +276,7 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberD return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { struct ISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData_params params = { @@ -290,7 +290,7 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData(stru return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) { struct ISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg_params params = { @@ -321,7 +321,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking001_GetLobbyChatEntry(st return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking001_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking001_RequestLobbyData_params params = { @@ -405,7 +405,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking002_GetFavoriteGameCount return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) { struct ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame_params params = { @@ -440,7 +440,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking002_AddFavoriteGame(stru return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) { struct ISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame_params params = { @@ -479,7 +479,7 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking002_GetLobbyByIndex(s return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking002_CreateLobby(struct w_steam_iface *_this, bool bPrivate) +void __thiscall winISteamMatchmaking_SteamMatchMaking002_CreateLobby(struct w_steam_iface *_this, int8_t bPrivate) { struct ISteamMatchmaking_SteamMatchMaking002_CreateLobby_params params = { @@ -512,7 +512,7 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking002_LeaveLobby(struct w_ste STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking002_LeaveLobby, ¶ms ); } -bool __thiscall winISteamMatchmaking_SteamMatchMaking002_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking002_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) { struct ISteamMatchmaking_SteamMatchMaking002_InviteUserToLobby_params params = { @@ -564,7 +564,7 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking002_GetLobbyData(st return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking002_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking002_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { struct ISteamMatchmaking_SteamMatchMaking002_SetLobbyData_params params = { @@ -605,7 +605,7 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData(stru STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData, ¶ms ); } -bool __thiscall winISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) { struct ISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg_params params = { @@ -636,7 +636,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking002_GetLobbyChatEntry(st return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking002_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking002_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking002_RequestLobbyData_params params = { @@ -740,7 +740,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking003_GetFavoriteGameCount return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) { struct ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame_params params = { @@ -775,7 +775,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking003_AddFavoriteGame(stru return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) { struct ISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame_params params = { @@ -849,7 +849,7 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyByIndex(s return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking003_CreateLobby(struct w_steam_iface *_this, bool bPrivate) +void __thiscall winISteamMatchmaking_SteamMatchMaking003_CreateLobby(struct w_steam_iface *_this, int8_t bPrivate) { struct ISteamMatchmaking_SteamMatchMaking003_CreateLobby_params params = { @@ -882,7 +882,7 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking003_LeaveLobby(struct w_ste STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_LeaveLobby, ¶ms ); } -bool __thiscall winISteamMatchmaking_SteamMatchMaking003_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) { struct ISteamMatchmaking_SteamMatchMaking003_InviteUserToLobby_params params = { @@ -934,7 +934,7 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyData(st return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyData_params params = { @@ -975,7 +975,7 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData(stru STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData, ¶ms ); } -bool __thiscall winISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) { struct ISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg_params params = { @@ -1006,7 +1006,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyChatEntry(st return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking003_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking003_RequestLobbyData_params params = { @@ -1032,7 +1032,7 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer(stru STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer, ¶ms ); } -bool __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) { struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer_params params = { @@ -1047,7 +1047,7 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer(stru return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) { struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberLimit_params params = { @@ -1072,7 +1072,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberLimit( return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled(struct w_steam_iface *_this, CSteamID steamIDLobby, bool bVoiceEnabled) +void __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled(struct w_steam_iface *_this, CSteamID steamIDLobby, int8_t bVoiceEnabled) { struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled_params params = { @@ -1084,7 +1084,7 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled(st STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled, ¶ms ); } -bool __thiscall winISteamMatchmaking_SteamMatchMaking003_RequestFriendsLobbies(struct w_steam_iface *_this) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_RequestFriendsLobbies(struct w_steam_iface *_this) { struct ISteamMatchmaking_SteamMatchMaking003_RequestFriendsLobbies_params params = { @@ -1180,7 +1180,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking004_GetFavoriteGameCount return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) { struct ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame_params params = { @@ -1215,7 +1215,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking004_AddFavoriteGame(stru return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) { struct ISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame_params params = { @@ -1289,7 +1289,7 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyByIndex(s return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking004_CreateLobby(struct w_steam_iface *_this, bool bPrivate) +void __thiscall winISteamMatchmaking_SteamMatchMaking004_CreateLobby(struct w_steam_iface *_this, int8_t bPrivate) { struct ISteamMatchmaking_SteamMatchMaking004_CreateLobby_params params = { @@ -1322,7 +1322,7 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking004_LeaveLobby(struct w_ste STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_LeaveLobby, ¶ms ); } -bool __thiscall winISteamMatchmaking_SteamMatchMaking004_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) { struct ISteamMatchmaking_SteamMatchMaking004_InviteUserToLobby_params params = { @@ -1374,7 +1374,7 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyData(st return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking004_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyData_params params = { @@ -1415,7 +1415,7 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData(stru STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData, ¶ms ); } -bool __thiscall winISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) { struct ISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg_params params = { @@ -1446,7 +1446,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyChatEntry(st return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking004_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking004_RequestLobbyData_params params = { @@ -1472,7 +1472,7 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer(stru STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer, ¶ms ); } -bool __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) { struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer_params params = { @@ -1487,7 +1487,7 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer(stru return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) { struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberLimit_params params = { @@ -1512,7 +1512,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberLimit( return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking004_RequestFriendsLobbies(struct w_steam_iface *_this) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_RequestFriendsLobbies(struct w_steam_iface *_this) { struct ISteamMatchmaking_SteamMatchMaking004_RequestFriendsLobbies_params params = { @@ -1611,7 +1611,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking005_GetFavoriteGameCount return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) { struct ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame_params params = { @@ -1646,7 +1646,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking005_AddFavoriteGame(stru return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) { struct ISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame_params params = { @@ -1765,7 +1765,7 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking005_LeaveLobby(struct w_ste STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_LeaveLobby, ¶ms ); } -bool __thiscall winISteamMatchmaking_SteamMatchMaking005_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) { struct ISteamMatchmaking_SteamMatchMaking005_InviteUserToLobby_params params = { @@ -1817,7 +1817,7 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyData(st return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyData_params params = { @@ -1858,7 +1858,7 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData(stru STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData, ¶ms ); } -bool __thiscall winISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) { struct ISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg_params params = { @@ -1889,7 +1889,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyChatEntry(st return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking005_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking005_RequestLobbyData_params params = { @@ -1915,7 +1915,7 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer(stru STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer, ¶ms ); } -bool __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) { struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer_params params = { @@ -1930,7 +1930,7 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer(stru return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) { struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberLimit_params params = { @@ -1955,7 +1955,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberLimit( return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking005_RequestFriendsLobbies(struct w_steam_iface *_this) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_RequestFriendsLobbies(struct w_steam_iface *_this) { struct ISteamMatchmaking_SteamMatchMaking005_RequestFriendsLobbies_params params = { @@ -1966,7 +1966,7 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking005_RequestFriendsLobbies(s return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyType(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t eLobbyType) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyType(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t eLobbyType) { struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyType_params params = { @@ -2093,7 +2093,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking006_GetFavoriteGameCount return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) { struct ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame_params params = { @@ -2128,7 +2128,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking006_AddFavoriteGame(stru return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) { struct ISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame_params params = { @@ -2240,7 +2240,7 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking006_LeaveLobby(struct w_ste STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_LeaveLobby, ¶ms ); } -bool __thiscall winISteamMatchmaking_SteamMatchMaking006_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) { struct ISteamMatchmaking_SteamMatchMaking006_InviteUserToLobby_params params = { @@ -2292,7 +2292,7 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyData(st return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyData_params params = { @@ -2333,7 +2333,7 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData(stru STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData, ¶ms ); } -bool __thiscall winISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) { struct ISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg_params params = { @@ -2364,7 +2364,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyChatEntry(st return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking006_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking006_RequestLobbyData_params params = { @@ -2390,7 +2390,7 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer(stru STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer, ¶ms ); } -bool __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) { struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer_params params = { @@ -2405,7 +2405,7 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer(stru return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) { struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberLimit_params params = { @@ -2430,7 +2430,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberLimit( return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyType(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t eLobbyType) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyType(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t eLobbyType) { struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyType_params params = { @@ -2548,7 +2548,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetFavoriteGameCount return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) { struct ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame_params params = { @@ -2583,7 +2583,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking007_AddFavoriteGame(stru return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) { struct ISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame_params params = { @@ -2708,7 +2708,7 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking007_LeaveLobby(struct w_ste STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_LeaveLobby, ¶ms ); } -bool __thiscall winISteamMatchmaking_SteamMatchMaking007_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) { struct ISteamMatchmaking_SteamMatchMaking007_InviteUserToLobby_params params = { @@ -2760,7 +2760,7 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyData(st return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyData_params params = { @@ -2786,7 +2786,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyDataCount(st return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t iLobbyData, char *pchKey, int32_t cchKeyBufferSize, char *pchValue, int32_t cchValueBufferSize) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t iLobbyData, char *pchKey, int32_t cchKeyBufferSize, char *pchValue, int32_t cchValueBufferSize) { struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex_params params = { @@ -2803,7 +2803,7 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex(str return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking007_DeleteLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_DeleteLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey) { struct ISteamMatchmaking_SteamMatchMaking007_DeleteLobbyData_params params = { @@ -2843,7 +2843,7 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData(stru STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData, ¶ms ); } -bool __thiscall winISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) { struct ISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg_params params = { @@ -2874,7 +2874,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry(st return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking007_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking007_RequestLobbyData_params params = { @@ -2900,7 +2900,7 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer(stru STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer, ¶ms ); } -bool __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) { struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer_params params = { @@ -2915,7 +2915,7 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer(stru return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) { struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberLimit_params params = { @@ -2940,7 +2940,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberLimit( return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyType(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t eLobbyType) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyType(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t eLobbyType) { struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyType_params params = { @@ -2953,7 +2953,7 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyType(struct w_s return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinable(struct w_steam_iface *_this, CSteamID steamIDLobby, bool bLobbyJoinable) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinable(struct w_steam_iface *_this, CSteamID steamIDLobby, int8_t bLobbyJoinable) { struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinable_params params = { @@ -2979,7 +2979,7 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyOwner(str return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyOwner(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDNewOwner) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyOwner(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDNewOwner) { struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyOwner_params params = { @@ -3092,7 +3092,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetFavoriteGameCount return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) { struct ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame_params params = { @@ -3127,7 +3127,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking008_AddFavoriteGame(stru return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) { struct ISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame_params params = { @@ -3274,7 +3274,7 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking008_LeaveLobby(struct w_ste STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_LeaveLobby, ¶ms ); } -bool __thiscall winISteamMatchmaking_SteamMatchMaking008_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) { struct ISteamMatchmaking_SteamMatchMaking008_InviteUserToLobby_params params = { @@ -3326,7 +3326,7 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyData(st return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyData_params params = { @@ -3352,7 +3352,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyDataCount(st return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t iLobbyData, char *pchKey, int32_t cchKeyBufferSize, char *pchValue, int32_t cchValueBufferSize) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t iLobbyData, char *pchKey, int32_t cchKeyBufferSize, char *pchValue, int32_t cchValueBufferSize) { struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex_params params = { @@ -3369,7 +3369,7 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex(str return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking008_DeleteLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_DeleteLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey) { struct ISteamMatchmaking_SteamMatchMaking008_DeleteLobbyData_params params = { @@ -3409,7 +3409,7 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData(stru STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData, ¶ms ); } -bool __thiscall winISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) { struct ISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg_params params = { @@ -3440,7 +3440,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyChatEntry(st return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking008_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking008_RequestLobbyData_params params = { @@ -3466,7 +3466,7 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer(stru STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer, ¶ms ); } -bool __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) { struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer_params params = { @@ -3481,7 +3481,7 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer(stru return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) { struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberLimit_params params = { @@ -3506,7 +3506,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberLimit( return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyType(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t eLobbyType) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyType(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t eLobbyType) { struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyType_params params = { @@ -3519,7 +3519,7 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyType(struct w_s return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinable(struct w_steam_iface *_this, CSteamID steamIDLobby, bool bLobbyJoinable) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinable(struct w_steam_iface *_this, CSteamID steamIDLobby, int8_t bLobbyJoinable) { struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinable_params params = { @@ -3545,7 +3545,7 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyOwner(str return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyOwner(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDNewOwner) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyOwner(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDNewOwner) { struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyOwner_params params = { @@ -3662,7 +3662,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetFavoriteGameCount return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) { struct ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame_params params = { @@ -3697,7 +3697,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking009_AddFavoriteGame(stru return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) { struct ISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame_params params = { @@ -3855,7 +3855,7 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking009_LeaveLobby(struct w_ste STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_LeaveLobby, ¶ms ); } -bool __thiscall winISteamMatchmaking_SteamMatchMaking009_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) { struct ISteamMatchmaking_SteamMatchMaking009_InviteUserToLobby_params params = { @@ -3907,7 +3907,7 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyData(st return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyData_params params = { @@ -3933,7 +3933,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyDataCount(st return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t iLobbyData, char *pchKey, int32_t cchKeyBufferSize, char *pchValue, int32_t cchValueBufferSize) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t iLobbyData, char *pchKey, int32_t cchKeyBufferSize, char *pchValue, int32_t cchValueBufferSize) { struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex_params params = { @@ -3950,7 +3950,7 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex(str return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking009_DeleteLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_DeleteLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey) { struct ISteamMatchmaking_SteamMatchMaking009_DeleteLobbyData_params params = { @@ -3990,7 +3990,7 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData(stru STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData, ¶ms ); } -bool __thiscall winISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) { struct ISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg_params params = { @@ -4021,7 +4021,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyChatEntry(st return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking009_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking009_RequestLobbyData_params params = { @@ -4047,7 +4047,7 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer(stru STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer, ¶ms ); } -bool __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) { struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer_params params = { @@ -4062,7 +4062,7 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer(stru return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) { struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberLimit_params params = { @@ -4087,7 +4087,7 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberLimit( return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyType(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t eLobbyType) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyType(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t eLobbyType) { struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyType_params params = { @@ -4100,7 +4100,7 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyType(struct w_s return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyJoinable(struct w_steam_iface *_this, CSteamID steamIDLobby, bool bLobbyJoinable) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyJoinable(struct w_steam_iface *_this, CSteamID steamIDLobby, int8_t bLobbyJoinable) { struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyJoinable_params params = { @@ -4126,7 +4126,7 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyOwner(str return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDNewOwner) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDNewOwner) { struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner_params params = { @@ -4139,7 +4139,7 @@ bool __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner(struct w_ return params._ret; } -bool __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLinkedLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDLobbyDependent) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLinkedLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDLobbyDependent) { struct ISteamMatchmaking_SteamMatchMaking009_SetLinkedLobby_params params = { diff --git a/lsteamclient/winISteamMatchmakingServers.c b/lsteamclient/winISteamMatchmakingServers.c index 804d9853..46882a94 100644 --- a/lsteamclient/winISteamMatchmakingServers.c +++ b/lsteamclient/winISteamMatchmakingServers.c @@ -137,7 +137,7 @@ void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RefreshQu STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers001_RefreshQuery, ¶ms ); } -bool __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_IsRefreshing(struct w_steam_iface *_this, uint32_t eType) +int8_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_IsRefreshing(struct w_steam_iface *_this, uint32_t eType) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_IsRefreshing_params params = { @@ -412,7 +412,7 @@ void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_RefreshQu STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers002_RefreshQuery, ¶ms ); } -bool __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_IsRefreshing(struct w_steam_iface *_this, void *hRequest) +int8_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_IsRefreshing(struct w_steam_iface *_this, void *hRequest) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_IsRefreshing_params params = { diff --git a/lsteamclient/winISteamMusic.c b/lsteamclient/winISteamMusic.c index a2fa834e..f9f97b5d 100644 --- a/lsteamclient/winISteamMusic.c +++ b/lsteamclient/winISteamMusic.c @@ -13,7 +13,7 @@ DEFINE_THISCALL_WRAPPER(winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayNext, DEFINE_THISCALL_WRAPPER(winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_SetVolume, 8) DEFINE_THISCALL_WRAPPER(winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetVolume, 4) -bool __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsEnabled(struct w_steam_iface *_this) { struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsEnabled_params params = { @@ -24,7 +24,7 @@ bool __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsEnabled(struct return params._ret; } -bool __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsPlaying(struct w_steam_iface *_this) +int8_t __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsPlaying(struct w_steam_iface *_this) { struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsPlaying_params params = { diff --git a/lsteamclient/winISteamMusicRemote.c b/lsteamclient/winISteamMusicRemote.c index 883c7b68..2fee9815 100644 --- a/lsteamclient/winISteamMusicRemote.c +++ b/lsteamclient/winISteamMusicRemote.c @@ -36,7 +36,7 @@ DEFINE_THISCALL_WRAPPER(winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION0 DEFINE_THISCALL_WRAPPER(winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentPlaylistEntry, 8) DEFINE_THISCALL_WRAPPER(winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistDidChange, 4) -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_RegisterSteamMusicRemote(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_RegisterSteamMusicRemote(struct w_steam_iface *_this, const char *pchName) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_RegisterSteamMusicRemote_params params = { @@ -48,7 +48,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Regis return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_DeregisterSteamMusicRemote(struct w_steam_iface *_this) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_DeregisterSteamMusicRemote(struct w_steam_iface *_this) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_DeregisterSteamMusicRemote_params params = { @@ -59,7 +59,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Dereg return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BIsCurrentMusicRemote(struct w_steam_iface *_this) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BIsCurrentMusicRemote(struct w_steam_iface *_this) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BIsCurrentMusicRemote_params params = { @@ -70,7 +70,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BIsCu return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BActivationSuccess(struct w_steam_iface *_this, bool bValue) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BActivationSuccess(struct w_steam_iface *_this, int8_t bValue) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BActivationSuccess_params params = { @@ -82,7 +82,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BActi return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetDisplayName(struct w_steam_iface *_this, const char *pchDisplayName) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetDisplayName(struct w_steam_iface *_this, const char *pchDisplayName) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetDisplayName_params params = { @@ -94,7 +94,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetDi return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPNGIcon_64x64(struct w_steam_iface *_this, void *pvBuffer, uint32_t cbBufferLength) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPNGIcon_64x64(struct w_steam_iface *_this, void *pvBuffer, uint32_t cbBufferLength) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPNGIcon_64x64_params params = { @@ -107,7 +107,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPN return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayPrevious(struct w_steam_iface *_this, bool bValue) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayPrevious(struct w_steam_iface *_this, int8_t bValue) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayPrevious_params params = { @@ -119,7 +119,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Enabl return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayNext(struct w_steam_iface *_this, bool bValue) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayNext(struct w_steam_iface *_this, int8_t bValue) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayNext_params params = { @@ -131,7 +131,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Enabl return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableShuffled(struct w_steam_iface *_this, bool bValue) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableShuffled(struct w_steam_iface *_this, int8_t bValue) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableShuffled_params params = { @@ -143,7 +143,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Enabl return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableLooped(struct w_steam_iface *_this, bool bValue) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableLooped(struct w_steam_iface *_this, int8_t bValue) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableLooped_params params = { @@ -155,7 +155,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Enabl return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableQueue(struct w_steam_iface *_this, bool bValue) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableQueue(struct w_steam_iface *_this, int8_t bValue) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableQueue_params params = { @@ -167,7 +167,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Enabl return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlaylists(struct w_steam_iface *_this, bool bValue) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlaylists(struct w_steam_iface *_this, int8_t bValue) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlaylists_params params = { @@ -179,7 +179,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Enabl return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdatePlaybackStatus(struct w_steam_iface *_this, uint32_t nStatus) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdatePlaybackStatus(struct w_steam_iface *_this, uint32_t nStatus) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdatePlaybackStatus_params params = { @@ -191,7 +191,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Updat return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateShuffled(struct w_steam_iface *_this, bool bValue) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateShuffled(struct w_steam_iface *_this, int8_t bValue) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateShuffled_params params = { @@ -203,7 +203,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Updat return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateLooped(struct w_steam_iface *_this, bool bValue) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateLooped(struct w_steam_iface *_this, int8_t bValue) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateLooped_params params = { @@ -215,7 +215,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Updat return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateVolume(struct w_steam_iface *_this, float flValue) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateVolume(struct w_steam_iface *_this, float flValue) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateVolume_params params = { @@ -227,7 +227,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Updat return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryWillChange(struct w_steam_iface *_this) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryWillChange(struct w_steam_iface *_this) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryWillChange_params params = { @@ -238,7 +238,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Curre return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryIsAvailable(struct w_steam_iface *_this, bool bAvailable) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryIsAvailable(struct w_steam_iface *_this, int8_t bAvailable) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryIsAvailable_params params = { @@ -250,7 +250,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Curre return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryText(struct w_steam_iface *_this, const char *pchText) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryText(struct w_steam_iface *_this, const char *pchText) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryText_params params = { @@ -262,7 +262,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Updat return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryElapsedSeconds(struct w_steam_iface *_this, int32_t nValue) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryElapsedSeconds(struct w_steam_iface *_this, int32_t nValue) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryElapsedSeconds_params params = { @@ -274,7 +274,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Updat return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryCoverArt(struct w_steam_iface *_this, void *pvBuffer, uint32_t cbBufferLength) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryCoverArt(struct w_steam_iface *_this, void *pvBuffer, uint32_t cbBufferLength) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryCoverArt_params params = { @@ -287,7 +287,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Updat return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryDidChange(struct w_steam_iface *_this) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryDidChange(struct w_steam_iface *_this) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryDidChange_params params = { @@ -298,7 +298,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Curre return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueWillChange(struct w_steam_iface *_this) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueWillChange(struct w_steam_iface *_this) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueWillChange_params params = { @@ -309,7 +309,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Queue return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetQueueEntries(struct w_steam_iface *_this) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetQueueEntries(struct w_steam_iface *_this) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetQueueEntries_params params = { @@ -320,7 +320,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Reset return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQueueEntry(struct w_steam_iface *_this, int32_t nID, int32_t nPosition, const char *pchEntryText) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQueueEntry(struct w_steam_iface *_this, int32_t nID, int32_t nPosition, const char *pchEntryText) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQueueEntry_params params = { @@ -334,7 +334,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQu return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentQueueEntry(struct w_steam_iface *_this, int32_t nID) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentQueueEntry(struct w_steam_iface *_this, int32_t nID) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentQueueEntry_params params = { @@ -346,7 +346,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCu return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueDidChange(struct w_steam_iface *_this) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueDidChange(struct w_steam_iface *_this) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueDidChange_params params = { @@ -357,7 +357,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Queue return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistWillChange(struct w_steam_iface *_this) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistWillChange(struct w_steam_iface *_this) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistWillChange_params params = { @@ -368,7 +368,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Playl return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetPlaylistEntries(struct w_steam_iface *_this) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetPlaylistEntries(struct w_steam_iface *_this) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetPlaylistEntries_params params = { @@ -379,7 +379,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Reset return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPlaylistEntry(struct w_steam_iface *_this, int32_t nID, int32_t nPosition, const char *pchEntryText) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPlaylistEntry(struct w_steam_iface *_this, int32_t nID, int32_t nPosition, const char *pchEntryText) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPlaylistEntry_params params = { @@ -393,7 +393,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPl return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentPlaylistEntry(struct w_steam_iface *_this, int32_t nID) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentPlaylistEntry(struct w_steam_iface *_this, int32_t nID) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentPlaylistEntry_params params = { @@ -405,7 +405,7 @@ bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCu return params._ret; } -bool __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistDidChange(struct w_steam_iface *_this) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistDidChange(struct w_steam_iface *_this) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistDidChange_params params = { diff --git a/lsteamclient/winISteamNetworking.c b/lsteamclient/winISteamNetworking.c index 440deb85..d51171eb 100644 --- a/lsteamclient/winISteamNetworking.c +++ b/lsteamclient/winISteamNetworking.c @@ -58,7 +58,7 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking001_CreateConnectionSocke return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking001_DestroySocket(struct w_steam_iface *_this, uint32_t hSocket, bool bNotifyRemoteEnd) +int8_t __thiscall winISteamNetworking_SteamNetworking001_DestroySocket(struct w_steam_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) { struct ISteamNetworking_SteamNetworking001_DestroySocket_params params = { @@ -71,7 +71,7 @@ bool __thiscall winISteamNetworking_SteamNetworking001_DestroySocket(struct w_st return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking001_DestroyListenSocket(struct w_steam_iface *_this, uint32_t hSocket, bool bNotifyRemoteEnd) +int8_t __thiscall winISteamNetworking_SteamNetworking001_DestroyListenSocket(struct w_steam_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) { struct ISteamNetworking_SteamNetworking001_DestroyListenSocket_params params = { @@ -84,7 +84,7 @@ bool __thiscall winISteamNetworking_SteamNetworking001_DestroyListenSocket(struc return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking001_SendDataOnSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubData, uint32_t cubData, bool bReliable) +int8_t __thiscall winISteamNetworking_SteamNetworking001_SendDataOnSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubData, uint32_t cubData, int8_t bReliable) { struct ISteamNetworking_SteamNetworking001_SendDataOnSocket_params params = { @@ -99,7 +99,7 @@ bool __thiscall winISteamNetworking_SteamNetworking001_SendDataOnSocket(struct w return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket(struct w_steam_iface *_this, uint32_t hSocket, uint32_t *pcubMsgSize) +int8_t __thiscall winISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket(struct w_steam_iface *_this, uint32_t hSocket, uint32_t *pcubMsgSize) { struct ISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket_params params = { @@ -112,7 +112,7 @@ bool __thiscall winISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket(s return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking001_RetrieveDataFromSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) +int8_t __thiscall winISteamNetworking_SteamNetworking001_RetrieveDataFromSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) { struct ISteamNetworking_SteamNetworking001_RetrieveDataFromSocket_params params = { @@ -127,7 +127,7 @@ bool __thiscall winISteamNetworking_SteamNetworking001_RetrieveDataFromSocket(st return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking001_IsDataAvailable(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pcubMsgSize, uint32_t *phSocket) +int8_t __thiscall winISteamNetworking_SteamNetworking001_IsDataAvailable(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pcubMsgSize, uint32_t *phSocket) { struct ISteamNetworking_SteamNetworking001_IsDataAvailable_params params = { @@ -141,7 +141,7 @@ bool __thiscall winISteamNetworking_SteamNetworking001_IsDataAvailable(struct w_ return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking001_RetrieveData(struct w_steam_iface *_this, uint32_t hListenSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, uint32_t *phSocket) +int8_t __thiscall winISteamNetworking_SteamNetworking001_RetrieveData(struct w_steam_iface *_this, uint32_t hListenSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, uint32_t *phSocket) { struct ISteamNetworking_SteamNetworking001_RetrieveData_params params = { @@ -157,7 +157,7 @@ bool __thiscall winISteamNetworking_SteamNetworking001_RetrieveData(struct w_ste return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking001_GetSocketInfo(struct w_steam_iface *_this, uint32_t hSocket, CSteamID *pSteamIDRemote, int32_t *peSocketStatus, uint32_t *punIPRemote, uint16_t *punPortRemote) +int8_t __thiscall winISteamNetworking_SteamNetworking001_GetSocketInfo(struct w_steam_iface *_this, uint32_t hSocket, CSteamID *pSteamIDRemote, int32_t *peSocketStatus, uint32_t *punIPRemote, uint16_t *punPortRemote) { struct ISteamNetworking_SteamNetworking001_GetSocketInfo_params params = { @@ -173,7 +173,7 @@ bool __thiscall winISteamNetworking_SteamNetworking001_GetSocketInfo(struct w_st return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking001_GetListenSocketInfo(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pnIP, uint16_t *pnPort) +int8_t __thiscall winISteamNetworking_SteamNetworking001_GetListenSocketInfo(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pnIP, uint16_t *pnPort) { struct ISteamNetworking_SteamNetworking001_GetListenSocketInfo_params params = { @@ -232,7 +232,7 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking002_GetListenSocketIn DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking002_GetSocketConnectionType, 8) DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking002_GetMaxPacketSize, 8) -uint32_t __thiscall winISteamNetworking_SteamNetworking002_CreateListenSocket(struct w_steam_iface *_this, int32_t nVirtualP2PPort, uint32_t nIP, uint16_t nPort, bool bAllowUseOfPacketRelay) +uint32_t __thiscall winISteamNetworking_SteamNetworking002_CreateListenSocket(struct w_steam_iface *_this, int32_t nVirtualP2PPort, uint32_t nIP, uint16_t nPort, int8_t bAllowUseOfPacketRelay) { struct ISteamNetworking_SteamNetworking002_CreateListenSocket_params params = { @@ -247,7 +247,7 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking002_CreateListenSocket(st return params._ret; } -uint32_t __thiscall winISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket(struct w_steam_iface *_this, CSteamID steamIDTarget, int32_t nVirtualPort, int32_t nTimeoutSec, bool bAllowUseOfPacketRelay) +uint32_t __thiscall winISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket(struct w_steam_iface *_this, CSteamID steamIDTarget, int32_t nVirtualPort, int32_t nTimeoutSec, int8_t bAllowUseOfPacketRelay) { struct ISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket_params params = { @@ -276,7 +276,7 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking002_CreateConnectionSocke return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking002_DestroySocket(struct w_steam_iface *_this, uint32_t hSocket, bool bNotifyRemoteEnd) +int8_t __thiscall winISteamNetworking_SteamNetworking002_DestroySocket(struct w_steam_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) { struct ISteamNetworking_SteamNetworking002_DestroySocket_params params = { @@ -289,7 +289,7 @@ bool __thiscall winISteamNetworking_SteamNetworking002_DestroySocket(struct w_st return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking002_DestroyListenSocket(struct w_steam_iface *_this, uint32_t hSocket, bool bNotifyRemoteEnd) +int8_t __thiscall winISteamNetworking_SteamNetworking002_DestroyListenSocket(struct w_steam_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) { struct ISteamNetworking_SteamNetworking002_DestroyListenSocket_params params = { @@ -302,7 +302,7 @@ bool __thiscall winISteamNetworking_SteamNetworking002_DestroyListenSocket(struc return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking002_SendDataOnSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubData, uint32_t cubData, bool bReliable) +int8_t __thiscall winISteamNetworking_SteamNetworking002_SendDataOnSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubData, uint32_t cubData, int8_t bReliable) { struct ISteamNetworking_SteamNetworking002_SendDataOnSocket_params params = { @@ -317,7 +317,7 @@ bool __thiscall winISteamNetworking_SteamNetworking002_SendDataOnSocket(struct w return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket(struct w_steam_iface *_this, uint32_t hSocket, uint32_t *pcubMsgSize) +int8_t __thiscall winISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket(struct w_steam_iface *_this, uint32_t hSocket, uint32_t *pcubMsgSize) { struct ISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket_params params = { @@ -330,7 +330,7 @@ bool __thiscall winISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket(s return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking002_RetrieveDataFromSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) +int8_t __thiscall winISteamNetworking_SteamNetworking002_RetrieveDataFromSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) { struct ISteamNetworking_SteamNetworking002_RetrieveDataFromSocket_params params = { @@ -345,7 +345,7 @@ bool __thiscall winISteamNetworking_SteamNetworking002_RetrieveDataFromSocket(st return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking002_IsDataAvailable(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pcubMsgSize, uint32_t *phSocket) +int8_t __thiscall winISteamNetworking_SteamNetworking002_IsDataAvailable(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pcubMsgSize, uint32_t *phSocket) { struct ISteamNetworking_SteamNetworking002_IsDataAvailable_params params = { @@ -359,7 +359,7 @@ bool __thiscall winISteamNetworking_SteamNetworking002_IsDataAvailable(struct w_ return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking002_RetrieveData(struct w_steam_iface *_this, uint32_t hListenSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, uint32_t *phSocket) +int8_t __thiscall winISteamNetworking_SteamNetworking002_RetrieveData(struct w_steam_iface *_this, uint32_t hListenSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, uint32_t *phSocket) { struct ISteamNetworking_SteamNetworking002_RetrieveData_params params = { @@ -375,7 +375,7 @@ bool __thiscall winISteamNetworking_SteamNetworking002_RetrieveData(struct w_ste return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking002_GetSocketInfo(struct w_steam_iface *_this, uint32_t hSocket, CSteamID *pSteamIDRemote, int32_t *peSocketStatus, uint32_t *punIPRemote, uint16_t *punPortRemote) +int8_t __thiscall winISteamNetworking_SteamNetworking002_GetSocketInfo(struct w_steam_iface *_this, uint32_t hSocket, CSteamID *pSteamIDRemote, int32_t *peSocketStatus, uint32_t *punIPRemote, uint16_t *punPortRemote) { struct ISteamNetworking_SteamNetworking002_GetSocketInfo_params params = { @@ -391,7 +391,7 @@ bool __thiscall winISteamNetworking_SteamNetworking002_GetSocketInfo(struct w_st return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking002_GetListenSocketInfo(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pnIP, uint16_t *pnPort) +int8_t __thiscall winISteamNetworking_SteamNetworking002_GetListenSocketInfo(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pnIP, uint16_t *pnPort) { struct ISteamNetworking_SteamNetworking002_GetListenSocketInfo_params params = { @@ -482,7 +482,7 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking003_GetListenSocketIn DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking003_GetSocketConnectionType, 8) DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking003_GetMaxPacketSize, 8) -bool __thiscall winISteamNetworking_SteamNetworking003_SendP2PPacket(struct w_steam_iface *_this, CSteamID steamIDRemote, const void *pubData, uint32_t cubData, uint32_t eP2PSendType) +int8_t __thiscall winISteamNetworking_SteamNetworking003_SendP2PPacket(struct w_steam_iface *_this, CSteamID steamIDRemote, const void *pubData, uint32_t cubData, uint32_t eP2PSendType) { struct ISteamNetworking_SteamNetworking003_SendP2PPacket_params params = { @@ -497,7 +497,7 @@ bool __thiscall winISteamNetworking_SteamNetworking003_SendP2PPacket(struct w_st return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking003_IsP2PPacketAvailable(struct w_steam_iface *_this, uint32_t *pcubMsgSize) +int8_t __thiscall winISteamNetworking_SteamNetworking003_IsP2PPacketAvailable(struct w_steam_iface *_this, uint32_t *pcubMsgSize) { struct ISteamNetworking_SteamNetworking003_IsP2PPacketAvailable_params params = { @@ -509,7 +509,7 @@ bool __thiscall winISteamNetworking_SteamNetworking003_IsP2PPacketAvailable(stru return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking003_ReadP2PPacket(struct w_steam_iface *_this, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, CSteamID *psteamIDRemote) +int8_t __thiscall winISteamNetworking_SteamNetworking003_ReadP2PPacket(struct w_steam_iface *_this, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, CSteamID *psteamIDRemote) { struct ISteamNetworking_SteamNetworking003_ReadP2PPacket_params params = { @@ -524,7 +524,7 @@ bool __thiscall winISteamNetworking_SteamNetworking003_ReadP2PPacket(struct w_st return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking003_AcceptP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) +int8_t __thiscall winISteamNetworking_SteamNetworking003_AcceptP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) { struct ISteamNetworking_SteamNetworking003_AcceptP2PSessionWithUser_params params = { @@ -536,7 +536,7 @@ bool __thiscall winISteamNetworking_SteamNetworking003_AcceptP2PSessionWithUser( return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking003_CloseP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) +int8_t __thiscall winISteamNetworking_SteamNetworking003_CloseP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) { struct ISteamNetworking_SteamNetworking003_CloseP2PSessionWithUser_params params = { @@ -548,7 +548,7 @@ bool __thiscall winISteamNetworking_SteamNetworking003_CloseP2PSessionWithUser(s return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking003_GetP2PSessionState(struct w_steam_iface *_this, CSteamID steamIDRemote, P2PSessionState_t *pConnectionState) +int8_t __thiscall winISteamNetworking_SteamNetworking003_GetP2PSessionState(struct w_steam_iface *_this, CSteamID steamIDRemote, P2PSessionState_t *pConnectionState) { struct ISteamNetworking_SteamNetworking003_GetP2PSessionState_params params = { @@ -561,7 +561,7 @@ bool __thiscall winISteamNetworking_SteamNetworking003_GetP2PSessionState(struct return params._ret; } -uint32_t __thiscall winISteamNetworking_SteamNetworking003_CreateListenSocket(struct w_steam_iface *_this, int32_t nVirtualP2PPort, uint32_t nIP, uint16_t nPort, bool bAllowUseOfPacketRelay) +uint32_t __thiscall winISteamNetworking_SteamNetworking003_CreateListenSocket(struct w_steam_iface *_this, int32_t nVirtualP2PPort, uint32_t nIP, uint16_t nPort, int8_t bAllowUseOfPacketRelay) { struct ISteamNetworking_SteamNetworking003_CreateListenSocket_params params = { @@ -576,7 +576,7 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking003_CreateListenSocket(st return params._ret; } -uint32_t __thiscall winISteamNetworking_SteamNetworking003_CreateP2PConnectionSocket(struct w_steam_iface *_this, CSteamID steamIDTarget, int32_t nVirtualPort, int32_t nTimeoutSec, bool bAllowUseOfPacketRelay) +uint32_t __thiscall winISteamNetworking_SteamNetworking003_CreateP2PConnectionSocket(struct w_steam_iface *_this, CSteamID steamIDTarget, int32_t nVirtualPort, int32_t nTimeoutSec, int8_t bAllowUseOfPacketRelay) { struct ISteamNetworking_SteamNetworking003_CreateP2PConnectionSocket_params params = { @@ -605,7 +605,7 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking003_CreateConnectionSocke return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking003_DestroySocket(struct w_steam_iface *_this, uint32_t hSocket, bool bNotifyRemoteEnd) +int8_t __thiscall winISteamNetworking_SteamNetworking003_DestroySocket(struct w_steam_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) { struct ISteamNetworking_SteamNetworking003_DestroySocket_params params = { @@ -618,7 +618,7 @@ bool __thiscall winISteamNetworking_SteamNetworking003_DestroySocket(struct w_st return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking003_DestroyListenSocket(struct w_steam_iface *_this, uint32_t hSocket, bool bNotifyRemoteEnd) +int8_t __thiscall winISteamNetworking_SteamNetworking003_DestroyListenSocket(struct w_steam_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) { struct ISteamNetworking_SteamNetworking003_DestroyListenSocket_params params = { @@ -631,7 +631,7 @@ bool __thiscall winISteamNetworking_SteamNetworking003_DestroyListenSocket(struc return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking003_SendDataOnSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubData, uint32_t cubData, bool bReliable) +int8_t __thiscall winISteamNetworking_SteamNetworking003_SendDataOnSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubData, uint32_t cubData, int8_t bReliable) { struct ISteamNetworking_SteamNetworking003_SendDataOnSocket_params params = { @@ -646,7 +646,7 @@ bool __thiscall winISteamNetworking_SteamNetworking003_SendDataOnSocket(struct w return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket(struct w_steam_iface *_this, uint32_t hSocket, uint32_t *pcubMsgSize) +int8_t __thiscall winISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket(struct w_steam_iface *_this, uint32_t hSocket, uint32_t *pcubMsgSize) { struct ISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket_params params = { @@ -659,7 +659,7 @@ bool __thiscall winISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket(s return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking003_RetrieveDataFromSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) +int8_t __thiscall winISteamNetworking_SteamNetworking003_RetrieveDataFromSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) { struct ISteamNetworking_SteamNetworking003_RetrieveDataFromSocket_params params = { @@ -674,7 +674,7 @@ bool __thiscall winISteamNetworking_SteamNetworking003_RetrieveDataFromSocket(st return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking003_IsDataAvailable(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pcubMsgSize, uint32_t *phSocket) +int8_t __thiscall winISteamNetworking_SteamNetworking003_IsDataAvailable(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pcubMsgSize, uint32_t *phSocket) { struct ISteamNetworking_SteamNetworking003_IsDataAvailable_params params = { @@ -688,7 +688,7 @@ bool __thiscall winISteamNetworking_SteamNetworking003_IsDataAvailable(struct w_ return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking003_RetrieveData(struct w_steam_iface *_this, uint32_t hListenSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, uint32_t *phSocket) +int8_t __thiscall winISteamNetworking_SteamNetworking003_RetrieveData(struct w_steam_iface *_this, uint32_t hListenSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, uint32_t *phSocket) { struct ISteamNetworking_SteamNetworking003_RetrieveData_params params = { @@ -704,7 +704,7 @@ bool __thiscall winISteamNetworking_SteamNetworking003_RetrieveData(struct w_ste return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking003_GetSocketInfo(struct w_steam_iface *_this, uint32_t hSocket, CSteamID *pSteamIDRemote, int32_t *peSocketStatus, uint32_t *punIPRemote, uint16_t *punPortRemote) +int8_t __thiscall winISteamNetworking_SteamNetworking003_GetSocketInfo(struct w_steam_iface *_this, uint32_t hSocket, CSteamID *pSteamIDRemote, int32_t *peSocketStatus, uint32_t *punIPRemote, uint16_t *punPortRemote) { struct ISteamNetworking_SteamNetworking003_GetSocketInfo_params params = { @@ -720,7 +720,7 @@ bool __thiscall winISteamNetworking_SteamNetworking003_GetSocketInfo(struct w_st return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking003_GetListenSocketInfo(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pnIP, uint16_t *pnPort) +int8_t __thiscall winISteamNetworking_SteamNetworking003_GetListenSocketInfo(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pnIP, uint16_t *pnPort) { struct ISteamNetworking_SteamNetworking003_GetListenSocketInfo_params params = { @@ -817,7 +817,7 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking004_GetListenSocketIn DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking004_GetSocketConnectionType, 8) DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking004_GetMaxPacketSize, 8) -bool __thiscall winISteamNetworking_SteamNetworking004_SendP2PPacket(struct w_steam_iface *_this, CSteamID steamIDRemote, const void *pubData, uint32_t cubData, uint32_t eP2PSendType, int32_t nVirtualPort) +int8_t __thiscall winISteamNetworking_SteamNetworking004_SendP2PPacket(struct w_steam_iface *_this, CSteamID steamIDRemote, const void *pubData, uint32_t cubData, uint32_t eP2PSendType, int32_t nVirtualPort) { struct ISteamNetworking_SteamNetworking004_SendP2PPacket_params params = { @@ -833,7 +833,7 @@ bool __thiscall winISteamNetworking_SteamNetworking004_SendP2PPacket(struct w_st return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking004_IsP2PPacketAvailable(struct w_steam_iface *_this, uint32_t *pcubMsgSize, int32_t nVirtualPort) +int8_t __thiscall winISteamNetworking_SteamNetworking004_IsP2PPacketAvailable(struct w_steam_iface *_this, uint32_t *pcubMsgSize, int32_t nVirtualPort) { struct ISteamNetworking_SteamNetworking004_IsP2PPacketAvailable_params params = { @@ -846,7 +846,7 @@ bool __thiscall winISteamNetworking_SteamNetworking004_IsP2PPacketAvailable(stru return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking004_ReadP2PPacket(struct w_steam_iface *_this, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, CSteamID *psteamIDRemote, int32_t nVirtualPort) +int8_t __thiscall winISteamNetworking_SteamNetworking004_ReadP2PPacket(struct w_steam_iface *_this, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, CSteamID *psteamIDRemote, int32_t nVirtualPort) { struct ISteamNetworking_SteamNetworking004_ReadP2PPacket_params params = { @@ -862,7 +862,7 @@ bool __thiscall winISteamNetworking_SteamNetworking004_ReadP2PPacket(struct w_st return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking004_AcceptP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) +int8_t __thiscall winISteamNetworking_SteamNetworking004_AcceptP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) { struct ISteamNetworking_SteamNetworking004_AcceptP2PSessionWithUser_params params = { @@ -874,7 +874,7 @@ bool __thiscall winISteamNetworking_SteamNetworking004_AcceptP2PSessionWithUser( return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking004_CloseP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) +int8_t __thiscall winISteamNetworking_SteamNetworking004_CloseP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) { struct ISteamNetworking_SteamNetworking004_CloseP2PSessionWithUser_params params = { @@ -886,7 +886,7 @@ bool __thiscall winISteamNetworking_SteamNetworking004_CloseP2PSessionWithUser(s return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking004_GetP2PSessionState(struct w_steam_iface *_this, CSteamID steamIDRemote, P2PSessionState_t *pConnectionState) +int8_t __thiscall winISteamNetworking_SteamNetworking004_GetP2PSessionState(struct w_steam_iface *_this, CSteamID steamIDRemote, P2PSessionState_t *pConnectionState) { struct ISteamNetworking_SteamNetworking004_GetP2PSessionState_params params = { @@ -899,7 +899,7 @@ bool __thiscall winISteamNetworking_SteamNetworking004_GetP2PSessionState(struct return params._ret; } -uint32_t __thiscall winISteamNetworking_SteamNetworking004_CreateListenSocket(struct w_steam_iface *_this, int32_t nVirtualP2PPort, uint32_t nIP, uint16_t nPort, bool bAllowUseOfPacketRelay) +uint32_t __thiscall winISteamNetworking_SteamNetworking004_CreateListenSocket(struct w_steam_iface *_this, int32_t nVirtualP2PPort, uint32_t nIP, uint16_t nPort, int8_t bAllowUseOfPacketRelay) { struct ISteamNetworking_SteamNetworking004_CreateListenSocket_params params = { @@ -914,7 +914,7 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking004_CreateListenSocket(st return params._ret; } -uint32_t __thiscall winISteamNetworking_SteamNetworking004_CreateP2PConnectionSocket(struct w_steam_iface *_this, CSteamID steamIDTarget, int32_t nVirtualPort, int32_t nTimeoutSec, bool bAllowUseOfPacketRelay) +uint32_t __thiscall winISteamNetworking_SteamNetworking004_CreateP2PConnectionSocket(struct w_steam_iface *_this, CSteamID steamIDTarget, int32_t nVirtualPort, int32_t nTimeoutSec, int8_t bAllowUseOfPacketRelay) { struct ISteamNetworking_SteamNetworking004_CreateP2PConnectionSocket_params params = { @@ -943,7 +943,7 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking004_CreateConnectionSocke return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking004_DestroySocket(struct w_steam_iface *_this, uint32_t hSocket, bool bNotifyRemoteEnd) +int8_t __thiscall winISteamNetworking_SteamNetworking004_DestroySocket(struct w_steam_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) { struct ISteamNetworking_SteamNetworking004_DestroySocket_params params = { @@ -956,7 +956,7 @@ bool __thiscall winISteamNetworking_SteamNetworking004_DestroySocket(struct w_st return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking004_DestroyListenSocket(struct w_steam_iface *_this, uint32_t hSocket, bool bNotifyRemoteEnd) +int8_t __thiscall winISteamNetworking_SteamNetworking004_DestroyListenSocket(struct w_steam_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) { struct ISteamNetworking_SteamNetworking004_DestroyListenSocket_params params = { @@ -969,7 +969,7 @@ bool __thiscall winISteamNetworking_SteamNetworking004_DestroyListenSocket(struc return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking004_SendDataOnSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubData, uint32_t cubData, bool bReliable) +int8_t __thiscall winISteamNetworking_SteamNetworking004_SendDataOnSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubData, uint32_t cubData, int8_t bReliable) { struct ISteamNetworking_SteamNetworking004_SendDataOnSocket_params params = { @@ -984,7 +984,7 @@ bool __thiscall winISteamNetworking_SteamNetworking004_SendDataOnSocket(struct w return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket(struct w_steam_iface *_this, uint32_t hSocket, uint32_t *pcubMsgSize) +int8_t __thiscall winISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket(struct w_steam_iface *_this, uint32_t hSocket, uint32_t *pcubMsgSize) { struct ISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket_params params = { @@ -997,7 +997,7 @@ bool __thiscall winISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket(s return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking004_RetrieveDataFromSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) +int8_t __thiscall winISteamNetworking_SteamNetworking004_RetrieveDataFromSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) { struct ISteamNetworking_SteamNetworking004_RetrieveDataFromSocket_params params = { @@ -1012,7 +1012,7 @@ bool __thiscall winISteamNetworking_SteamNetworking004_RetrieveDataFromSocket(st return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking004_IsDataAvailable(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pcubMsgSize, uint32_t *phSocket) +int8_t __thiscall winISteamNetworking_SteamNetworking004_IsDataAvailable(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pcubMsgSize, uint32_t *phSocket) { struct ISteamNetworking_SteamNetworking004_IsDataAvailable_params params = { @@ -1026,7 +1026,7 @@ bool __thiscall winISteamNetworking_SteamNetworking004_IsDataAvailable(struct w_ return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking004_RetrieveData(struct w_steam_iface *_this, uint32_t hListenSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, uint32_t *phSocket) +int8_t __thiscall winISteamNetworking_SteamNetworking004_RetrieveData(struct w_steam_iface *_this, uint32_t hListenSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, uint32_t *phSocket) { struct ISteamNetworking_SteamNetworking004_RetrieveData_params params = { @@ -1042,7 +1042,7 @@ bool __thiscall winISteamNetworking_SteamNetworking004_RetrieveData(struct w_ste return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking004_GetSocketInfo(struct w_steam_iface *_this, uint32_t hSocket, CSteamID *pSteamIDRemote, int32_t *peSocketStatus, uint32_t *punIPRemote, uint16_t *punPortRemote) +int8_t __thiscall winISteamNetworking_SteamNetworking004_GetSocketInfo(struct w_steam_iface *_this, uint32_t hSocket, CSteamID *pSteamIDRemote, int32_t *peSocketStatus, uint32_t *punIPRemote, uint16_t *punPortRemote) { struct ISteamNetworking_SteamNetworking004_GetSocketInfo_params params = { @@ -1058,7 +1058,7 @@ bool __thiscall winISteamNetworking_SteamNetworking004_GetSocketInfo(struct w_st return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking004_GetListenSocketInfo(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pnIP, uint16_t *pnPort) +int8_t __thiscall winISteamNetworking_SteamNetworking004_GetListenSocketInfo(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pnIP, uint16_t *pnPort) { struct ISteamNetworking_SteamNetworking004_GetListenSocketInfo_params params = { @@ -1157,7 +1157,7 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking005_GetListenSocketIn DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking005_GetSocketConnectionType, 8) DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking005_GetMaxPacketSize, 8) -bool __thiscall winISteamNetworking_SteamNetworking005_SendP2PPacket(struct w_steam_iface *_this, CSteamID steamIDRemote, const void *pubData, uint32_t cubData, uint32_t eP2PSendType, int32_t nChannel) +int8_t __thiscall winISteamNetworking_SteamNetworking005_SendP2PPacket(struct w_steam_iface *_this, CSteamID steamIDRemote, const void *pubData, uint32_t cubData, uint32_t eP2PSendType, int32_t nChannel) { struct ISteamNetworking_SteamNetworking005_SendP2PPacket_params params = { @@ -1173,7 +1173,7 @@ bool __thiscall winISteamNetworking_SteamNetworking005_SendP2PPacket(struct w_st return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking005_IsP2PPacketAvailable(struct w_steam_iface *_this, uint32_t *pcubMsgSize, int32_t nChannel) +int8_t __thiscall winISteamNetworking_SteamNetworking005_IsP2PPacketAvailable(struct w_steam_iface *_this, uint32_t *pcubMsgSize, int32_t nChannel) { struct ISteamNetworking_SteamNetworking005_IsP2PPacketAvailable_params params = { @@ -1186,7 +1186,7 @@ bool __thiscall winISteamNetworking_SteamNetworking005_IsP2PPacketAvailable(stru return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking005_ReadP2PPacket(struct w_steam_iface *_this, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, CSteamID *psteamIDRemote, int32_t nChannel) +int8_t __thiscall winISteamNetworking_SteamNetworking005_ReadP2PPacket(struct w_steam_iface *_this, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, CSteamID *psteamIDRemote, int32_t nChannel) { struct ISteamNetworking_SteamNetworking005_ReadP2PPacket_params params = { @@ -1202,7 +1202,7 @@ bool __thiscall winISteamNetworking_SteamNetworking005_ReadP2PPacket(struct w_st return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking005_AcceptP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) +int8_t __thiscall winISteamNetworking_SteamNetworking005_AcceptP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) { struct ISteamNetworking_SteamNetworking005_AcceptP2PSessionWithUser_params params = { @@ -1214,7 +1214,7 @@ bool __thiscall winISteamNetworking_SteamNetworking005_AcceptP2PSessionWithUser( return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking005_CloseP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) +int8_t __thiscall winISteamNetworking_SteamNetworking005_CloseP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) { struct ISteamNetworking_SteamNetworking005_CloseP2PSessionWithUser_params params = { @@ -1226,7 +1226,7 @@ bool __thiscall winISteamNetworking_SteamNetworking005_CloseP2PSessionWithUser(s return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote, int32_t nChannel) +int8_t __thiscall winISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote, int32_t nChannel) { struct ISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser_params params = { @@ -1239,7 +1239,7 @@ bool __thiscall winISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser(s return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking005_GetP2PSessionState(struct w_steam_iface *_this, CSteamID steamIDRemote, P2PSessionState_t *pConnectionState) +int8_t __thiscall winISteamNetworking_SteamNetworking005_GetP2PSessionState(struct w_steam_iface *_this, CSteamID steamIDRemote, P2PSessionState_t *pConnectionState) { struct ISteamNetworking_SteamNetworking005_GetP2PSessionState_params params = { @@ -1252,7 +1252,7 @@ bool __thiscall winISteamNetworking_SteamNetworking005_GetP2PSessionState(struct return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking005_AllowP2PPacketRelay(struct w_steam_iface *_this, bool bAllow) +int8_t __thiscall winISteamNetworking_SteamNetworking005_AllowP2PPacketRelay(struct w_steam_iface *_this, int8_t bAllow) { struct ISteamNetworking_SteamNetworking005_AllowP2PPacketRelay_params params = { @@ -1264,7 +1264,7 @@ bool __thiscall winISteamNetworking_SteamNetworking005_AllowP2PPacketRelay(struc return params._ret; } -uint32_t __thiscall winISteamNetworking_SteamNetworking005_CreateListenSocket(struct w_steam_iface *_this, int32_t nVirtualP2PPort, uint32_t nIP, uint16_t nPort, bool bAllowUseOfPacketRelay) +uint32_t __thiscall winISteamNetworking_SteamNetworking005_CreateListenSocket(struct w_steam_iface *_this, int32_t nVirtualP2PPort, uint32_t nIP, uint16_t nPort, int8_t bAllowUseOfPacketRelay) { struct ISteamNetworking_SteamNetworking005_CreateListenSocket_params params = { @@ -1279,7 +1279,7 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking005_CreateListenSocket(st return params._ret; } -uint32_t __thiscall winISteamNetworking_SteamNetworking005_CreateP2PConnectionSocket(struct w_steam_iface *_this, CSteamID steamIDTarget, int32_t nVirtualPort, int32_t nTimeoutSec, bool bAllowUseOfPacketRelay) +uint32_t __thiscall winISteamNetworking_SteamNetworking005_CreateP2PConnectionSocket(struct w_steam_iface *_this, CSteamID steamIDTarget, int32_t nVirtualPort, int32_t nTimeoutSec, int8_t bAllowUseOfPacketRelay) { struct ISteamNetworking_SteamNetworking005_CreateP2PConnectionSocket_params params = { @@ -1308,7 +1308,7 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking005_CreateConnectionSocke return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking005_DestroySocket(struct w_steam_iface *_this, uint32_t hSocket, bool bNotifyRemoteEnd) +int8_t __thiscall winISteamNetworking_SteamNetworking005_DestroySocket(struct w_steam_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) { struct ISteamNetworking_SteamNetworking005_DestroySocket_params params = { @@ -1321,7 +1321,7 @@ bool __thiscall winISteamNetworking_SteamNetworking005_DestroySocket(struct w_st return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking005_DestroyListenSocket(struct w_steam_iface *_this, uint32_t hSocket, bool bNotifyRemoteEnd) +int8_t __thiscall winISteamNetworking_SteamNetworking005_DestroyListenSocket(struct w_steam_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) { struct ISteamNetworking_SteamNetworking005_DestroyListenSocket_params params = { @@ -1334,7 +1334,7 @@ bool __thiscall winISteamNetworking_SteamNetworking005_DestroyListenSocket(struc return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking005_SendDataOnSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubData, uint32_t cubData, bool bReliable) +int8_t __thiscall winISteamNetworking_SteamNetworking005_SendDataOnSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubData, uint32_t cubData, int8_t bReliable) { struct ISteamNetworking_SteamNetworking005_SendDataOnSocket_params params = { @@ -1349,7 +1349,7 @@ bool __thiscall winISteamNetworking_SteamNetworking005_SendDataOnSocket(struct w return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket(struct w_steam_iface *_this, uint32_t hSocket, uint32_t *pcubMsgSize) +int8_t __thiscall winISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket(struct w_steam_iface *_this, uint32_t hSocket, uint32_t *pcubMsgSize) { struct ISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket_params params = { @@ -1362,7 +1362,7 @@ bool __thiscall winISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket(s return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking005_RetrieveDataFromSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) +int8_t __thiscall winISteamNetworking_SteamNetworking005_RetrieveDataFromSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) { struct ISteamNetworking_SteamNetworking005_RetrieveDataFromSocket_params params = { @@ -1377,7 +1377,7 @@ bool __thiscall winISteamNetworking_SteamNetworking005_RetrieveDataFromSocket(st return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking005_IsDataAvailable(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pcubMsgSize, uint32_t *phSocket) +int8_t __thiscall winISteamNetworking_SteamNetworking005_IsDataAvailable(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pcubMsgSize, uint32_t *phSocket) { struct ISteamNetworking_SteamNetworking005_IsDataAvailable_params params = { @@ -1391,7 +1391,7 @@ bool __thiscall winISteamNetworking_SteamNetworking005_IsDataAvailable(struct w_ return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking005_RetrieveData(struct w_steam_iface *_this, uint32_t hListenSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, uint32_t *phSocket) +int8_t __thiscall winISteamNetworking_SteamNetworking005_RetrieveData(struct w_steam_iface *_this, uint32_t hListenSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, uint32_t *phSocket) { struct ISteamNetworking_SteamNetworking005_RetrieveData_params params = { @@ -1407,7 +1407,7 @@ bool __thiscall winISteamNetworking_SteamNetworking005_RetrieveData(struct w_ste return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking005_GetSocketInfo(struct w_steam_iface *_this, uint32_t hSocket, CSteamID *pSteamIDRemote, int32_t *peSocketStatus, uint32_t *punIPRemote, uint16_t *punPortRemote) +int8_t __thiscall winISteamNetworking_SteamNetworking005_GetSocketInfo(struct w_steam_iface *_this, uint32_t hSocket, CSteamID *pSteamIDRemote, int32_t *peSocketStatus, uint32_t *punIPRemote, uint16_t *punPortRemote) { struct ISteamNetworking_SteamNetworking005_GetSocketInfo_params params = { @@ -1423,7 +1423,7 @@ bool __thiscall winISteamNetworking_SteamNetworking005_GetSocketInfo(struct w_st return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking005_GetListenSocketInfo(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pnIP, uint16_t *pnPort) +int8_t __thiscall winISteamNetworking_SteamNetworking005_GetListenSocketInfo(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pnIP, uint16_t *pnPort) { struct ISteamNetworking_SteamNetworking005_GetListenSocketInfo_params params = { @@ -1524,7 +1524,7 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking006_GetListenSocketIn DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking006_GetSocketConnectionType, 8) DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking006_GetMaxPacketSize, 8) -bool __thiscall winISteamNetworking_SteamNetworking006_SendP2PPacket(struct w_steam_iface *_this, CSteamID steamIDRemote, const void *pubData, uint32_t cubData, uint32_t eP2PSendType, int32_t nChannel) +int8_t __thiscall winISteamNetworking_SteamNetworking006_SendP2PPacket(struct w_steam_iface *_this, CSteamID steamIDRemote, const void *pubData, uint32_t cubData, uint32_t eP2PSendType, int32_t nChannel) { struct ISteamNetworking_SteamNetworking006_SendP2PPacket_params params = { @@ -1540,7 +1540,7 @@ bool __thiscall winISteamNetworking_SteamNetworking006_SendP2PPacket(struct w_st return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking006_IsP2PPacketAvailable(struct w_steam_iface *_this, uint32_t *pcubMsgSize, int32_t nChannel) +int8_t __thiscall winISteamNetworking_SteamNetworking006_IsP2PPacketAvailable(struct w_steam_iface *_this, uint32_t *pcubMsgSize, int32_t nChannel) { struct ISteamNetworking_SteamNetworking006_IsP2PPacketAvailable_params params = { @@ -1553,7 +1553,7 @@ bool __thiscall winISteamNetworking_SteamNetworking006_IsP2PPacketAvailable(stru return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking006_ReadP2PPacket(struct w_steam_iface *_this, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, CSteamID *psteamIDRemote, int32_t nChannel) +int8_t __thiscall winISteamNetworking_SteamNetworking006_ReadP2PPacket(struct w_steam_iface *_this, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, CSteamID *psteamIDRemote, int32_t nChannel) { struct ISteamNetworking_SteamNetworking006_ReadP2PPacket_params params = { @@ -1569,7 +1569,7 @@ bool __thiscall winISteamNetworking_SteamNetworking006_ReadP2PPacket(struct w_st return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking006_AcceptP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) +int8_t __thiscall winISteamNetworking_SteamNetworking006_AcceptP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) { struct ISteamNetworking_SteamNetworking006_AcceptP2PSessionWithUser_params params = { @@ -1581,7 +1581,7 @@ bool __thiscall winISteamNetworking_SteamNetworking006_AcceptP2PSessionWithUser( return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking006_CloseP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) +int8_t __thiscall winISteamNetworking_SteamNetworking006_CloseP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) { struct ISteamNetworking_SteamNetworking006_CloseP2PSessionWithUser_params params = { @@ -1593,7 +1593,7 @@ bool __thiscall winISteamNetworking_SteamNetworking006_CloseP2PSessionWithUser(s return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote, int32_t nChannel) +int8_t __thiscall winISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote, int32_t nChannel) { struct ISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser_params params = { @@ -1606,7 +1606,7 @@ bool __thiscall winISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser(s return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking006_GetP2PSessionState(struct w_steam_iface *_this, CSteamID steamIDRemote, P2PSessionState_t *pConnectionState) +int8_t __thiscall winISteamNetworking_SteamNetworking006_GetP2PSessionState(struct w_steam_iface *_this, CSteamID steamIDRemote, P2PSessionState_t *pConnectionState) { struct ISteamNetworking_SteamNetworking006_GetP2PSessionState_params params = { @@ -1619,7 +1619,7 @@ bool __thiscall winISteamNetworking_SteamNetworking006_GetP2PSessionState(struct return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking006_AllowP2PPacketRelay(struct w_steam_iface *_this, bool bAllow) +int8_t __thiscall winISteamNetworking_SteamNetworking006_AllowP2PPacketRelay(struct w_steam_iface *_this, int8_t bAllow) { struct ISteamNetworking_SteamNetworking006_AllowP2PPacketRelay_params params = { @@ -1631,7 +1631,7 @@ bool __thiscall winISteamNetworking_SteamNetworking006_AllowP2PPacketRelay(struc return params._ret; } -uint32_t __thiscall winISteamNetworking_SteamNetworking006_CreateListenSocket(struct w_steam_iface *_this, int32_t nVirtualP2PPort, SteamIPAddress_t nIP, uint16_t nPort, bool bAllowUseOfPacketRelay) +uint32_t __thiscall winISteamNetworking_SteamNetworking006_CreateListenSocket(struct w_steam_iface *_this, int32_t nVirtualP2PPort, SteamIPAddress_t nIP, uint16_t nPort, int8_t bAllowUseOfPacketRelay) { struct ISteamNetworking_SteamNetworking006_CreateListenSocket_params params = { @@ -1646,7 +1646,7 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking006_CreateListenSocket(st return params._ret; } -uint32_t __thiscall winISteamNetworking_SteamNetworking006_CreateP2PConnectionSocket(struct w_steam_iface *_this, CSteamID steamIDTarget, int32_t nVirtualPort, int32_t nTimeoutSec, bool bAllowUseOfPacketRelay) +uint32_t __thiscall winISteamNetworking_SteamNetworking006_CreateP2PConnectionSocket(struct w_steam_iface *_this, CSteamID steamIDTarget, int32_t nVirtualPort, int32_t nTimeoutSec, int8_t bAllowUseOfPacketRelay) { struct ISteamNetworking_SteamNetworking006_CreateP2PConnectionSocket_params params = { @@ -1675,7 +1675,7 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking006_CreateConnectionSocke return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking006_DestroySocket(struct w_steam_iface *_this, uint32_t hSocket, bool bNotifyRemoteEnd) +int8_t __thiscall winISteamNetworking_SteamNetworking006_DestroySocket(struct w_steam_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) { struct ISteamNetworking_SteamNetworking006_DestroySocket_params params = { @@ -1688,7 +1688,7 @@ bool __thiscall winISteamNetworking_SteamNetworking006_DestroySocket(struct w_st return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking006_DestroyListenSocket(struct w_steam_iface *_this, uint32_t hSocket, bool bNotifyRemoteEnd) +int8_t __thiscall winISteamNetworking_SteamNetworking006_DestroyListenSocket(struct w_steam_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) { struct ISteamNetworking_SteamNetworking006_DestroyListenSocket_params params = { @@ -1701,7 +1701,7 @@ bool __thiscall winISteamNetworking_SteamNetworking006_DestroyListenSocket(struc return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking006_SendDataOnSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubData, uint32_t cubData, bool bReliable) +int8_t __thiscall winISteamNetworking_SteamNetworking006_SendDataOnSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubData, uint32_t cubData, int8_t bReliable) { struct ISteamNetworking_SteamNetworking006_SendDataOnSocket_params params = { @@ -1716,7 +1716,7 @@ bool __thiscall winISteamNetworking_SteamNetworking006_SendDataOnSocket(struct w return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket(struct w_steam_iface *_this, uint32_t hSocket, uint32_t *pcubMsgSize) +int8_t __thiscall winISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket(struct w_steam_iface *_this, uint32_t hSocket, uint32_t *pcubMsgSize) { struct ISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket_params params = { @@ -1729,7 +1729,7 @@ bool __thiscall winISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket(s return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking006_RetrieveDataFromSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) +int8_t __thiscall winISteamNetworking_SteamNetworking006_RetrieveDataFromSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) { struct ISteamNetworking_SteamNetworking006_RetrieveDataFromSocket_params params = { @@ -1744,7 +1744,7 @@ bool __thiscall winISteamNetworking_SteamNetworking006_RetrieveDataFromSocket(st return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking006_IsDataAvailable(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pcubMsgSize, uint32_t *phSocket) +int8_t __thiscall winISteamNetworking_SteamNetworking006_IsDataAvailable(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pcubMsgSize, uint32_t *phSocket) { struct ISteamNetworking_SteamNetworking006_IsDataAvailable_params params = { @@ -1758,7 +1758,7 @@ bool __thiscall winISteamNetworking_SteamNetworking006_IsDataAvailable(struct w_ return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking006_RetrieveData(struct w_steam_iface *_this, uint32_t hListenSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, uint32_t *phSocket) +int8_t __thiscall winISteamNetworking_SteamNetworking006_RetrieveData(struct w_steam_iface *_this, uint32_t hListenSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, uint32_t *phSocket) { struct ISteamNetworking_SteamNetworking006_RetrieveData_params params = { @@ -1774,7 +1774,7 @@ bool __thiscall winISteamNetworking_SteamNetworking006_RetrieveData(struct w_ste return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking006_GetSocketInfo(struct w_steam_iface *_this, uint32_t hSocket, CSteamID *pSteamIDRemote, int32_t *peSocketStatus, SteamIPAddress_t *punIPRemote, uint16_t *punPortRemote) +int8_t __thiscall winISteamNetworking_SteamNetworking006_GetSocketInfo(struct w_steam_iface *_this, uint32_t hSocket, CSteamID *pSteamIDRemote, int32_t *peSocketStatus, SteamIPAddress_t *punIPRemote, uint16_t *punPortRemote) { struct ISteamNetworking_SteamNetworking006_GetSocketInfo_params params = { @@ -1790,7 +1790,7 @@ bool __thiscall winISteamNetworking_SteamNetworking006_GetSocketInfo(struct w_st return params._ret; } -bool __thiscall winISteamNetworking_SteamNetworking006_GetListenSocketInfo(struct w_steam_iface *_this, uint32_t hListenSocket, SteamIPAddress_t *pnIP, uint16_t *pnPort) +int8_t __thiscall winISteamNetworking_SteamNetworking006_GetListenSocketInfo(struct w_steam_iface *_this, uint32_t hListenSocket, SteamIPAddress_t *pnIP, uint16_t *pnPort) { struct ISteamNetworking_SteamNetworking006_GetListenSocketInfo_params params = { diff --git a/lsteamclient/winISteamNetworkingMessages.c b/lsteamclient/winISteamNetworkingMessages.c index 48c399df..97c374f9 100644 --- a/lsteamclient/winISteamNetworkingMessages.c +++ b/lsteamclient/winISteamNetworkingMessages.c @@ -26,7 +26,7 @@ uint32_t __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_SendM return params._ret; } -bool __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_AcceptSessionWithUser(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityRemote) +int8_t __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_AcceptSessionWithUser(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityRemote) { struct ISteamNetworkingMessages_SteamNetworkingMessages002_AcceptSessionWithUser_params params = { @@ -38,7 +38,7 @@ bool __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_AcceptSes return params._ret; } -bool __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_CloseSessionWithUser(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityRemote) +int8_t __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_CloseSessionWithUser(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityRemote) { struct ISteamNetworkingMessages_SteamNetworkingMessages002_CloseSessionWithUser_params params = { @@ -50,7 +50,7 @@ bool __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_CloseSess return params._ret; } -bool __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_CloseChannelWithUser(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityRemote, int32_t nLocalChannel) +int8_t __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_CloseChannelWithUser(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityRemote, int32_t nLocalChannel) { struct ISteamNetworkingMessages_SteamNetworkingMessages002_CloseChannelWithUser_params params = { diff --git a/lsteamclient/winISteamNetworkingSockets.c b/lsteamclient/winISteamNetworkingSockets.c index 0c1f2136..bab1da46 100644 --- a/lsteamclient/winISteamNetworkingSockets.c +++ b/lsteamclient/winISteamNetworkingSockets.c @@ -94,7 +94,7 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_AcceptC return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnection(struct w_steam_iface *_this, uint32_t hPeer, int32_t nReason, const char *pszDebug, bool bEnableLinger) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnection(struct w_steam_iface *_this, uint32_t hPeer, int32_t nReason, const char *pszDebug, int8_t bEnableLinger) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnection_params params = { @@ -109,7 +109,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnec return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CloseListenSocket(struct w_steam_iface *_this, uint32_t hSocket) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CloseListenSocket(struct w_steam_iface *_this, uint32_t hSocket) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_CloseListenSocket_params params = { @@ -121,7 +121,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CloseListen return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer, int64_t nUserData) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer, int64_t nUserData) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionUserData_params params = { @@ -158,7 +158,7 @@ void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_SetConnecti STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionName, ¶ms ); } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, char *pszName, int32_t nMaxLen) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, char *pszName, int32_t nMaxLen) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionName_params params = { @@ -199,7 +199,7 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_FlushMe return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionInfo(struct w_steam_iface *_this, uint32_t hConn, SteamNetConnectionInfo_t_144 *pInfo) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionInfo(struct w_steam_iface *_this, uint32_t hConn, SteamNetConnectionInfo_t_144 *pInfo) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionInfo_params params = { @@ -212,7 +212,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetConnecti return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetQuickConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, SteamNetworkingQuickConnectionStatus *pStats) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetQuickConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, SteamNetworkingQuickConnectionStatus *pStats) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetQuickConnectionStatus_params params = { @@ -239,7 +239,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetDetai return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSocketAddress(struct w_steam_iface *_this, uint32_t hSocket, SteamNetworkingIPAddr *address) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSocketAddress(struct w_steam_iface *_this, uint32_t hSocket, SteamNetworkingIPAddr *address) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSocketAddress_params params = { @@ -252,7 +252,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSo return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocketPair(struct w_steam_iface *_this, uint32_t *pOutConnection1, uint32_t *pOutConnection2, bool bUseNetworkLoopback, const SteamNetworkingIdentity_144 *pIdentity1, const SteamNetworkingIdentity_144 *pIdentity2) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocketPair(struct w_steam_iface *_this, uint32_t *pOutConnection1, uint32_t *pOutConnection2, int8_t bUseNetworkLoopback, const SteamNetworkingIdentity_144 *pIdentity1, const SteamNetworkingIdentity_144 *pIdentity2) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocketPair_params params = { @@ -268,7 +268,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocke return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetIdentity(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetIdentity(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetIdentity_params params = { @@ -280,7 +280,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetIdentity return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedRelayAuthTicket(struct w_steam_iface *_this, const void *pvTicket, int32_t cbTicket, SteamDatagramRelayAuthTicket *pOutParsedTicket) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedRelayAuthTicket(struct w_steam_iface *_this, const void *pvTicket, int32_t cbTicket, SteamDatagramRelayAuthTicket *pOutParsedTicket) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedRelayAuthTicket_params params = { @@ -343,7 +343,7 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetHost return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerAddress(struct w_steam_iface *_this, SteamDatagramHostedAddress *pRouting) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerAddress(struct w_steam_iface *_this, SteamDatagramHostedAddress *pRouting) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerAddress_params params = { @@ -511,7 +511,7 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_AcceptC return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnection(struct w_steam_iface *_this, uint32_t hPeer, int32_t nReason, const char *pszDebug, bool bEnableLinger) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnection(struct w_steam_iface *_this, uint32_t hPeer, int32_t nReason, const char *pszDebug, int8_t bEnableLinger) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnection_params params = { @@ -526,7 +526,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnec return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CloseListenSocket(struct w_steam_iface *_this, uint32_t hSocket) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CloseListenSocket(struct w_steam_iface *_this, uint32_t hSocket) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_CloseListenSocket_params params = { @@ -538,7 +538,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CloseListen return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer, int64_t nUserData) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer, int64_t nUserData) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionUserData_params params = { @@ -575,7 +575,7 @@ void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_SetConnecti STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionName, ¶ms ); } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, char *pszName, int32_t nMaxLen) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, char *pszName, int32_t nMaxLen) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionName_params params = { @@ -616,7 +616,7 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_FlushMe return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionInfo(struct w_steam_iface *_this, uint32_t hConn, SteamNetConnectionInfo_t_144 *pInfo) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionInfo(struct w_steam_iface *_this, uint32_t hConn, SteamNetConnectionInfo_t_144 *pInfo) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionInfo_params params = { @@ -629,7 +629,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetConnecti return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetQuickConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, SteamNetworkingQuickConnectionStatus *pStats) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetQuickConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, SteamNetworkingQuickConnectionStatus *pStats) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetQuickConnectionStatus_params params = { @@ -656,7 +656,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetDetai return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSocketAddress(struct w_steam_iface *_this, uint32_t hSocket, SteamNetworkingIPAddr *address) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSocketAddress(struct w_steam_iface *_this, uint32_t hSocket, SteamNetworkingIPAddr *address) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSocketAddress_params params = { @@ -669,7 +669,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSo return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocketPair(struct w_steam_iface *_this, uint32_t *pOutConnection1, uint32_t *pOutConnection2, bool bUseNetworkLoopback, const SteamNetworkingIdentity_144 *pIdentity1, const SteamNetworkingIdentity_144 *pIdentity2) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocketPair(struct w_steam_iface *_this, uint32_t *pOutConnection1, uint32_t *pOutConnection2, int8_t bUseNetworkLoopback, const SteamNetworkingIdentity_144 *pIdentity1, const SteamNetworkingIdentity_144 *pIdentity2) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocketPair_params params = { @@ -685,7 +685,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocke return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetIdentity(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetIdentity(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetIdentity_params params = { @@ -720,7 +720,7 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetAuth return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedRelayAuthTicket(struct w_steam_iface *_this, const void *pvTicket, int32_t cbTicket, SteamDatagramRelayAuthTicket *pOutParsedTicket) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedRelayAuthTicket(struct w_steam_iface *_this, const void *pvTicket, int32_t cbTicket, SteamDatagramRelayAuthTicket *pOutParsedTicket) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedRelayAuthTicket_params params = { @@ -979,7 +979,7 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_AcceptC return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnection(struct w_steam_iface *_this, uint32_t hPeer, int32_t nReason, const char *pszDebug, bool bEnableLinger) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnection(struct w_steam_iface *_this, uint32_t hPeer, int32_t nReason, const char *pszDebug, int8_t bEnableLinger) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnection_params params = { @@ -994,7 +994,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnec return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CloseListenSocket(struct w_steam_iface *_this, uint32_t hSocket) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CloseListenSocket(struct w_steam_iface *_this, uint32_t hSocket) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_CloseListenSocket_params params = { @@ -1006,7 +1006,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CloseListen return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer, int64_t nUserData) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer, int64_t nUserData) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionUserData_params params = { @@ -1043,7 +1043,7 @@ void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_SetConnecti STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionName, ¶ms ); } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, char *pszName, int32_t nMaxLen) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, char *pszName, int32_t nMaxLen) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionName_params params = { @@ -1085,7 +1085,7 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_FlushMe return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionInfo(struct w_steam_iface *_this, uint32_t hConn, SteamNetConnectionInfo_t_144 *pInfo) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionInfo(struct w_steam_iface *_this, uint32_t hConn, SteamNetConnectionInfo_t_144 *pInfo) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionInfo_params params = { @@ -1098,7 +1098,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetConnecti return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetQuickConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, SteamNetworkingQuickConnectionStatus *pStats) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetQuickConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, SteamNetworkingQuickConnectionStatus *pStats) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetQuickConnectionStatus_params params = { @@ -1125,7 +1125,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetDetai return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSocketAddress(struct w_steam_iface *_this, uint32_t hSocket, SteamNetworkingIPAddr *address) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSocketAddress(struct w_steam_iface *_this, uint32_t hSocket, SteamNetworkingIPAddr *address) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSocketAddress_params params = { @@ -1138,7 +1138,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSo return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocketPair(struct w_steam_iface *_this, uint32_t *pOutConnection1, uint32_t *pOutConnection2, bool bUseNetworkLoopback, const SteamNetworkingIdentity_144 *pIdentity1, const SteamNetworkingIdentity_144 *pIdentity2) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocketPair(struct w_steam_iface *_this, uint32_t *pOutConnection1, uint32_t *pOutConnection2, int8_t bUseNetworkLoopback, const SteamNetworkingIdentity_144 *pIdentity1, const SteamNetworkingIdentity_144 *pIdentity2) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocketPair_params params = { @@ -1154,7 +1154,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocke return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetIdentity(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetIdentity(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetIdentity_params params = { @@ -1189,7 +1189,7 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetAuth return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedRelayAuthTicket(struct w_steam_iface *_this, const void *pvTicket, int32_t cbTicket, SteamDatagramRelayAuthTicket *pOutParsedTicket) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedRelayAuthTicket(struct w_steam_iface *_this, const void *pvTicket, int32_t cbTicket, SteamDatagramRelayAuthTicket *pOutParsedTicket) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedRelayAuthTicket_params params = { @@ -1309,7 +1309,7 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_Connect return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2PCustomSignal(struct w_steam_iface *_this, const void *pMsg, int32_t cbMsg, w_ISteamNetworkingCustomSignalingRecvContext *pContext) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2PCustomSignal(struct w_steam_iface *_this, const void *pMsg, int32_t cbMsg, w_ISteamNetworkingCustomSignalingRecvContext *pContext) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2PCustomSignal_params params = { @@ -1489,7 +1489,7 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_AcceptC return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnection(struct w_steam_iface *_this, uint32_t hPeer, int32_t nReason, const char *pszDebug, bool bEnableLinger) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnection(struct w_steam_iface *_this, uint32_t hPeer, int32_t nReason, const char *pszDebug, int8_t bEnableLinger) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnection_params params = { @@ -1504,7 +1504,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnec return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CloseListenSocket(struct w_steam_iface *_this, uint32_t hSocket) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CloseListenSocket(struct w_steam_iface *_this, uint32_t hSocket) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_CloseListenSocket_params params = { @@ -1516,7 +1516,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CloseListen return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer, int64_t nUserData) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer, int64_t nUserData) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionUserData_params params = { @@ -1553,7 +1553,7 @@ void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SetConnecti STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionName, ¶ms ); } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, char *pszName, int32_t nMaxLen) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, char *pszName, int32_t nMaxLen) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionName_params params = { @@ -1595,7 +1595,7 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_FlushMe return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionInfo(struct w_steam_iface *_this, uint32_t hConn, SteamNetConnectionInfo_t_144 *pInfo) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionInfo(struct w_steam_iface *_this, uint32_t hConn, SteamNetConnectionInfo_t_144 *pInfo) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionInfo_params params = { @@ -1608,7 +1608,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetConnecti return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetQuickConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, SteamNetworkingQuickConnectionStatus *pStats) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetQuickConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, SteamNetworkingQuickConnectionStatus *pStats) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetQuickConnectionStatus_params params = { @@ -1635,7 +1635,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetDetai return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSocketAddress(struct w_steam_iface *_this, uint32_t hSocket, SteamNetworkingIPAddr *address) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSocketAddress(struct w_steam_iface *_this, uint32_t hSocket, SteamNetworkingIPAddr *address) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSocketAddress_params params = { @@ -1648,7 +1648,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSo return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocketPair(struct w_steam_iface *_this, uint32_t *pOutConnection1, uint32_t *pOutConnection2, bool bUseNetworkLoopback, const SteamNetworkingIdentity_144 *pIdentity1, const SteamNetworkingIdentity_144 *pIdentity2) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocketPair(struct w_steam_iface *_this, uint32_t *pOutConnection1, uint32_t *pOutConnection2, int8_t bUseNetworkLoopback, const SteamNetworkingIdentity_144 *pIdentity1, const SteamNetworkingIdentity_144 *pIdentity2) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocketPair_params params = { @@ -1664,7 +1664,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocke return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetIdentity(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetIdentity(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetIdentity_params params = { @@ -1710,7 +1710,7 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CreateP return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_DestroyPollGroup(struct w_steam_iface *_this, uint32_t hPollGroup) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_DestroyPollGroup(struct w_steam_iface *_this, uint32_t hPollGroup) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_DestroyPollGroup_params params = { @@ -1722,7 +1722,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_DestroyPoll return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionPollGroup(struct w_steam_iface *_this, uint32_t hConn, uint32_t hPollGroup) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionPollGroup(struct w_steam_iface *_this, uint32_t hConn, uint32_t hPollGroup) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionPollGroup_params params = { @@ -1735,7 +1735,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SetConnecti return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedRelayAuthTicket(struct w_steam_iface *_this, const void *pvTicket, int32_t cbTicket, SteamDatagramRelayAuthTicket *pOutParsedTicket) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedRelayAuthTicket(struct w_steam_iface *_this, const void *pvTicket, int32_t cbTicket, SteamDatagramRelayAuthTicket *pOutParsedTicket) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedRelayAuthTicket_params params = { @@ -1855,7 +1855,7 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_Connect return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2PCustomSignal(struct w_steam_iface *_this, const void *pMsg, int32_t cbMsg, w_ISteamNetworkingCustomSignalingRecvContext *pContext) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2PCustomSignal(struct w_steam_iface *_this, const void *pMsg, int32_t cbMsg, w_ISteamNetworkingCustomSignalingRecvContext *pContext) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2PCustomSignal_params params = { @@ -1869,7 +1869,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2P return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetCertificateRequest(struct w_steam_iface *_this, int32_t *pcbBlob, void *pBlob, char (*errMsg)[1024]) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetCertificateRequest(struct w_steam_iface *_this, int32_t *pcbBlob, void *pBlob, char (*errMsg)[1024]) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetCertificateRequest_params params = { @@ -1883,7 +1883,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetCertific return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SetCertificate(struct w_steam_iface *_this, const void *pCertificate, int32_t cbCertificate, char (*errMsg)[1024]) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SetCertificate(struct w_steam_iface *_this, const void *pCertificate, int32_t cbCertificate, char (*errMsg)[1024]) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetCertificate_params params = { @@ -2069,7 +2069,7 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_AcceptC return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnection(struct w_steam_iface *_this, uint32_t hPeer, int32_t nReason, const char *pszDebug, bool bEnableLinger) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnection(struct w_steam_iface *_this, uint32_t hPeer, int32_t nReason, const char *pszDebug, int8_t bEnableLinger) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnection_params params = { @@ -2084,7 +2084,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnec return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CloseListenSocket(struct w_steam_iface *_this, uint32_t hSocket) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CloseListenSocket(struct w_steam_iface *_this, uint32_t hSocket) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_CloseListenSocket_params params = { @@ -2096,7 +2096,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CloseListen return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer, int64_t nUserData) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer, int64_t nUserData) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionUserData_params params = { @@ -2133,7 +2133,7 @@ void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SetConnecti STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionName, ¶ms ); } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, char *pszName, int32_t nMaxLen) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, char *pszName, int32_t nMaxLen) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionName_params params = { @@ -2175,7 +2175,7 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_FlushMe return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionInfo(struct w_steam_iface *_this, uint32_t hConn, SteamNetConnectionInfo_t_144 *pInfo) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionInfo(struct w_steam_iface *_this, uint32_t hConn, SteamNetConnectionInfo_t_144 *pInfo) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionInfo_params params = { @@ -2188,7 +2188,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetConnecti return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetQuickConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, SteamNetworkingQuickConnectionStatus *pStats) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetQuickConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, SteamNetworkingQuickConnectionStatus *pStats) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetQuickConnectionStatus_params params = { @@ -2215,7 +2215,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetDetai return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSocketAddress(struct w_steam_iface *_this, uint32_t hSocket, SteamNetworkingIPAddr *address) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSocketAddress(struct w_steam_iface *_this, uint32_t hSocket, SteamNetworkingIPAddr *address) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSocketAddress_params params = { @@ -2228,7 +2228,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSo return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocketPair(struct w_steam_iface *_this, uint32_t *pOutConnection1, uint32_t *pOutConnection2, bool bUseNetworkLoopback, const SteamNetworkingIdentity_144 *pIdentity1, const SteamNetworkingIdentity_144 *pIdentity2) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocketPair(struct w_steam_iface *_this, uint32_t *pOutConnection1, uint32_t *pOutConnection2, int8_t bUseNetworkLoopback, const SteamNetworkingIdentity_144 *pIdentity1, const SteamNetworkingIdentity_144 *pIdentity2) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocketPair_params params = { @@ -2244,7 +2244,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocke return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetIdentity(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetIdentity(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetIdentity_params params = { @@ -2290,7 +2290,7 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CreateP return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_DestroyPollGroup(struct w_steam_iface *_this, uint32_t hPollGroup) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_DestroyPollGroup(struct w_steam_iface *_this, uint32_t hPollGroup) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_DestroyPollGroup_params params = { @@ -2302,7 +2302,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_DestroyPoll return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionPollGroup(struct w_steam_iface *_this, uint32_t hConn, uint32_t hPollGroup) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionPollGroup(struct w_steam_iface *_this, uint32_t hConn, uint32_t hPollGroup) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionPollGroup_params params = { @@ -2315,7 +2315,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SetConnecti return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedRelayAuthTicket(struct w_steam_iface *_this, const void *pvTicket, int32_t cbTicket, SteamDatagramRelayAuthTicket *pOutParsedTicket) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedRelayAuthTicket(struct w_steam_iface *_this, const void *pvTicket, int32_t cbTicket, SteamDatagramRelayAuthTicket *pOutParsedTicket) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedRelayAuthTicket_params params = { @@ -2436,7 +2436,7 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_Connect return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2PCustomSignal(struct w_steam_iface *_this, const void *pMsg, int32_t cbMsg, void /*ISteamNetworkingSignalingRecvContext*/ *pContext) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2PCustomSignal(struct w_steam_iface *_this, const void *pMsg, int32_t cbMsg, void /*ISteamNetworkingSignalingRecvContext*/ *pContext) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2PCustomSignal_params params = { @@ -2450,7 +2450,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2P return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetCertificateRequest(struct w_steam_iface *_this, int32_t *pcbBlob, void *pBlob, char (*errMsg)[1024]) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetCertificateRequest(struct w_steam_iface *_this, int32_t *pcbBlob, void *pBlob, char (*errMsg)[1024]) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetCertificateRequest_params params = { @@ -2464,7 +2464,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetCertific return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SetCertificate(struct w_steam_iface *_this, const void *pCertificate, int32_t cbCertificate, char (*errMsg)[1024]) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SetCertificate(struct w_steam_iface *_this, const void *pCertificate, int32_t cbCertificate, char (*errMsg)[1024]) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetCertificate_params params = { @@ -2668,7 +2668,7 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_AcceptC return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnection(struct w_steam_iface *_this, uint32_t hPeer, int32_t nReason, const char *pszDebug, bool bEnableLinger) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnection(struct w_steam_iface *_this, uint32_t hPeer, int32_t nReason, const char *pszDebug, int8_t bEnableLinger) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnection_params params = { @@ -2683,7 +2683,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnec return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CloseListenSocket(struct w_steam_iface *_this, uint32_t hSocket) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CloseListenSocket(struct w_steam_iface *_this, uint32_t hSocket) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_CloseListenSocket_params params = { @@ -2695,7 +2695,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CloseListen return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer, int64_t nUserData) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer, int64_t nUserData) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionUserData_params params = { @@ -2732,7 +2732,7 @@ void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SetConnecti STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionName, ¶ms ); } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, char *pszName, int32_t nMaxLen) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, char *pszName, int32_t nMaxLen) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionName_params params = { @@ -2774,7 +2774,7 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_FlushMe return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionInfo(struct w_steam_iface *_this, uint32_t hConn, SteamNetConnectionInfo_t_153a *pInfo) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionInfo(struct w_steam_iface *_this, uint32_t hConn, SteamNetConnectionInfo_t_153a *pInfo) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionInfo_params params = { @@ -2816,7 +2816,7 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetDetai return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSocketAddress(struct w_steam_iface *_this, uint32_t hSocket, SteamNetworkingIPAddr *address) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSocketAddress(struct w_steam_iface *_this, uint32_t hSocket, SteamNetworkingIPAddr *address) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSocketAddress_params params = { @@ -2829,7 +2829,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSo return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreateSocketPair(struct w_steam_iface *_this, uint32_t *pOutConnection1, uint32_t *pOutConnection2, bool bUseNetworkLoopback, const SteamNetworkingIdentity_144 *pIdentity1, const SteamNetworkingIdentity_144 *pIdentity2) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreateSocketPair(struct w_steam_iface *_this, uint32_t *pOutConnection1, uint32_t *pOutConnection2, int8_t bUseNetworkLoopback, const SteamNetworkingIdentity_144 *pIdentity1, const SteamNetworkingIdentity_144 *pIdentity2) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateSocketPair_params params = { @@ -2860,7 +2860,7 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_Configu return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetIdentity(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetIdentity(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetIdentity_params params = { @@ -2906,7 +2906,7 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreateP return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_DestroyPollGroup(struct w_steam_iface *_this, uint32_t hPollGroup) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_DestroyPollGroup(struct w_steam_iface *_this, uint32_t hPollGroup) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_DestroyPollGroup_params params = { @@ -2918,7 +2918,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_DestroyPoll return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionPollGroup(struct w_steam_iface *_this, uint32_t hConn, uint32_t hPollGroup) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionPollGroup(struct w_steam_iface *_this, uint32_t hConn, uint32_t hPollGroup) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionPollGroup_params params = { @@ -2931,7 +2931,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SetConnecti return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedRelayAuthTicket(struct w_steam_iface *_this, const void *pvTicket, int32_t cbTicket, SteamDatagramRelayAuthTicket *pOutParsedTicket) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedRelayAuthTicket(struct w_steam_iface *_this, const void *pvTicket, int32_t cbTicket, SteamDatagramRelayAuthTicket *pOutParsedTicket) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedRelayAuthTicket_params params = { @@ -3052,7 +3052,7 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_Connect return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2PCustomSignal(struct w_steam_iface *_this, const void *pMsg, int32_t cbMsg, void /*ISteamNetworkingSignalingRecvContext*/ *pContext) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2PCustomSignal(struct w_steam_iface *_this, const void *pMsg, int32_t cbMsg, void /*ISteamNetworkingSignalingRecvContext*/ *pContext) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2PCustomSignal_params params = { @@ -3066,7 +3066,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2P return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetCertificateRequest(struct w_steam_iface *_this, int32_t *pcbBlob, void *pBlob, char (*errMsg)[1024]) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetCertificateRequest(struct w_steam_iface *_this, int32_t *pcbBlob, void *pBlob, char (*errMsg)[1024]) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetCertificateRequest_params params = { @@ -3080,7 +3080,7 @@ bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetCertific return params._ret; } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SetCertificate(struct w_steam_iface *_this, const void *pCertificate, int32_t cbCertificate, char (*errMsg)[1024]) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SetCertificate(struct w_steam_iface *_this, const void *pCertificate, int32_t cbCertificate, char (*errMsg)[1024]) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetCertificate_params params = { @@ -3115,7 +3115,7 @@ void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_RunCallback STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_RunCallbacks, ¶ms ); } -bool __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_BeginAsyncRequestFakeIP(struct w_steam_iface *_this, int32_t nNumPorts) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_BeginAsyncRequestFakeIP(struct w_steam_iface *_this, int32_t nNumPorts) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_BeginAsyncRequestFakeIP_params params = { diff --git a/lsteamclient/winISteamNetworkingUtils.c b/lsteamclient/winISteamNetworkingUtils.c index 2a97e056..1cbc352a 100644 --- a/lsteamclient/winISteamNetworkingUtils.c +++ b/lsteamclient/winISteamNetworkingUtils.c @@ -76,7 +76,7 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLoca STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLocationToString, ¶ms ); } -bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocationString(struct w_steam_iface *_this, const char *pszString, SteamNetworkPingLocation_t *result) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocationString(struct w_steam_iface *_this, const char *pszString, SteamNetworkPingLocation_t *result) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocationString_params params = { @@ -89,7 +89,7 @@ bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocati return params._ret; } -bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_CheckPingDataUpToDate(struct w_steam_iface *_this, float flMaxAgeSeconds) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_CheckPingDataUpToDate(struct w_steam_iface *_this, float flMaxAgeSeconds) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_CheckPingDataUpToDate_params params = { @@ -101,7 +101,7 @@ bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_CheckPingDataUp return params._ret; } -bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_IsPingMeasurementInProgress(struct w_steam_iface *_this) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_IsPingMeasurementInProgress(struct w_steam_iface *_this) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_IsPingMeasurementInProgress_params params = { @@ -184,7 +184,7 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputF STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputFunction, ¶ms ); } -bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue(struct w_steam_iface *_this, uint32_t eValue, uint32_t eScopeType, int32_t scopeObj, uint32_t eDataType, const void *pArg) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue(struct w_steam_iface *_this, uint32_t eValue, uint32_t eScopeType, int32_t scopeObj, uint32_t eDataType, const void *pArg) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue_params params = { @@ -217,7 +217,7 @@ uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigVa return params._ret; } -bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo(struct w_steam_iface *_this, uint32_t eValue, const char **pOutName, uint32_t *pOutDataType, uint32_t *pOutScope, uint32_t *pOutNextValue) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo(struct w_steam_iface *_this, uint32_t eValue, const char **pOutName, uint32_t *pOutDataType, uint32_t *pOutScope, uint32_t *pOutNextValue) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo_params params = { @@ -244,7 +244,7 @@ uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetFirstCon return params._ret; } -void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ToString(struct w_steam_iface *_this, const SteamNetworkingIPAddr *addr, char *buf, uint32_t cbBuf, bool bWithPort) +void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ToString(struct w_steam_iface *_this, const SteamNetworkingIPAddr *addr, char *buf, uint32_t cbBuf, int8_t bWithPort) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ToString_params params = { @@ -258,7 +258,7 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworking STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ToString, ¶ms ); } -bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ParseString(struct w_steam_iface *_this, SteamNetworkingIPAddr *pAddr, const char *pszStr) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ParseString(struct w_steam_iface *_this, SteamNetworkingIPAddr *pAddr, const char *pszStr) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ParseString_params params = { @@ -284,7 +284,7 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworking STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ToString, ¶ms ); } -bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ParseString(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity, const char *pszStr) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ParseString(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity, const char *pszStr) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ParseString_params params = { @@ -425,7 +425,7 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLoca STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLocationToString, ¶ms ); } -bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocationString(struct w_steam_iface *_this, const char *pszString, SteamNetworkPingLocation_t *result) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocationString(struct w_steam_iface *_this, const char *pszString, SteamNetworkPingLocation_t *result) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocationString_params params = { @@ -438,7 +438,7 @@ bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocati return params._ret; } -bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_CheckPingDataUpToDate(struct w_steam_iface *_this, float flMaxAgeSeconds) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_CheckPingDataUpToDate(struct w_steam_iface *_this, float flMaxAgeSeconds) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_CheckPingDataUpToDate_params params = { @@ -522,7 +522,7 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SetDebugOutputF STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils002_SetDebugOutputFunction, ¶ms ); } -bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValue(struct w_steam_iface *_this, uint32_t eValue, uint32_t eScopeType, int32_t scopeObj, uint32_t eDataType, const void *pArg) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValue(struct w_steam_iface *_this, uint32_t eValue, uint32_t eScopeType, int32_t scopeObj, uint32_t eDataType, const void *pArg) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValue_params params = { @@ -555,7 +555,7 @@ uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigVa return params._ret; } -bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValueInfo(struct w_steam_iface *_this, uint32_t eValue, const char **pOutName, uint32_t *pOutDataType, uint32_t *pOutScope, uint32_t *pOutNextValue) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValueInfo(struct w_steam_iface *_this, uint32_t eValue, const char **pOutName, uint32_t *pOutDataType, uint32_t *pOutScope, uint32_t *pOutNextValue) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValueInfo_params params = { @@ -582,7 +582,7 @@ uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetFirstCon return params._ret; } -void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ToString(struct w_steam_iface *_this, const SteamNetworkingIPAddr *addr, char *buf, uint32_t cbBuf, bool bWithPort) +void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ToString(struct w_steam_iface *_this, const SteamNetworkingIPAddr *addr, char *buf, uint32_t cbBuf, int8_t bWithPort) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ToString_params params = { @@ -596,7 +596,7 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworking STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ToString, ¶ms ); } -bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ParseString(struct w_steam_iface *_this, SteamNetworkingIPAddr *pAddr, const char *pszStr) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ParseString(struct w_steam_iface *_this, SteamNetworkingIPAddr *pAddr, const char *pszStr) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ParseString_params params = { @@ -622,7 +622,7 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworking STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ToString, ¶ms ); } -bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ParseString(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity, const char *pszStr) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ParseString(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity, const char *pszStr) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ParseString_params params = { @@ -764,7 +764,7 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLoca STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLocationToString, ¶ms ); } -bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocationString(struct w_steam_iface *_this, const char *pszString, SteamNetworkPingLocation_t *result) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocationString(struct w_steam_iface *_this, const char *pszString, SteamNetworkPingLocation_t *result) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocationString_params params = { @@ -777,7 +777,7 @@ bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocati return params._ret; } -bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_CheckPingDataUpToDate(struct w_steam_iface *_this, float flMaxAgeSeconds) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_CheckPingDataUpToDate(struct w_steam_iface *_this, float flMaxAgeSeconds) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_CheckPingDataUpToDate_params params = { @@ -861,7 +861,7 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputF STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputFunction, ¶ms ); } -bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue(struct w_steam_iface *_this, uint32_t eValue, uint32_t eScopeType, int32_t scopeObj, uint32_t eDataType, const void *pArg) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue(struct w_steam_iface *_this, uint32_t eValue, uint32_t eScopeType, int32_t scopeObj, uint32_t eDataType, const void *pArg) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue_params params = { @@ -894,7 +894,7 @@ uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigVa return params._ret; } -bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueInfo(struct w_steam_iface *_this, uint32_t eValue, const char **pOutName, uint32_t *pOutDataType, uint32_t *pOutScope, uint32_t *pOutNextValue) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueInfo(struct w_steam_iface *_this, uint32_t eValue, const char **pOutName, uint32_t *pOutDataType, uint32_t *pOutScope, uint32_t *pOutNextValue) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueInfo_params params = { @@ -921,7 +921,7 @@ uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetFirstCon return params._ret; } -void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ToString(struct w_steam_iface *_this, const SteamNetworkingIPAddr *addr, char *buf, uint32_t cbBuf, bool bWithPort) +void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ToString(struct w_steam_iface *_this, const SteamNetworkingIPAddr *addr, char *buf, uint32_t cbBuf, int8_t bWithPort) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ToString_params params = { @@ -935,7 +935,7 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworking STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ToString, ¶ms ); } -bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ParseString(struct w_steam_iface *_this, SteamNetworkingIPAddr *pAddr, const char *pszStr) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ParseString(struct w_steam_iface *_this, SteamNetworkingIPAddr *pAddr, const char *pszStr) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ParseString_params params = { @@ -961,7 +961,7 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworking STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ToString, ¶ms ); } -bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ParseString(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity, const char *pszStr) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ParseString(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity, const char *pszStr) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ParseString_params params = { @@ -1107,7 +1107,7 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLoca STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLocationToString, ¶ms ); } -bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocationString(struct w_steam_iface *_this, const char *pszString, SteamNetworkPingLocation_t *result) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocationString(struct w_steam_iface *_this, const char *pszString, SteamNetworkPingLocation_t *result) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocationString_params params = { @@ -1120,7 +1120,7 @@ bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocati return params._ret; } -bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_CheckPingDataUpToDate(struct w_steam_iface *_this, float flMaxAgeSeconds) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_CheckPingDataUpToDate(struct w_steam_iface *_this, float flMaxAgeSeconds) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_CheckPingDataUpToDate_params params = { @@ -1229,7 +1229,7 @@ uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetRealIden return params._ret; } -bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue(struct w_steam_iface *_this, uint32_t eValue, uint32_t eScopeType, int32_t scopeObj, uint32_t eDataType, const void *pArg) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue(struct w_steam_iface *_this, uint32_t eValue, uint32_t eScopeType, int32_t scopeObj, uint32_t eDataType, const void *pArg) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue_params params = { @@ -1276,7 +1276,7 @@ const char * __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetConf return params._ret; } -uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_IterateGenericEditableConfigValues(struct w_steam_iface *_this, uint32_t eCurrent, bool bEnumerateDevVars) +uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_IterateGenericEditableConfigValues(struct w_steam_iface *_this, uint32_t eCurrent, int8_t bEnumerateDevVars) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_IterateGenericEditableConfigValues_params params = { @@ -1289,7 +1289,7 @@ uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_IterateGene return params._ret; } -void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToString(struct w_steam_iface *_this, const SteamNetworkingIPAddr *addr, char *buf, uint32_t cbBuf, bool bWithPort) +void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToString(struct w_steam_iface *_this, const SteamNetworkingIPAddr *addr, char *buf, uint32_t cbBuf, int8_t bWithPort) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToString_params params = { @@ -1303,7 +1303,7 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworking STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToString, ¶ms ); } -bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ParseString(struct w_steam_iface *_this, SteamNetworkingIPAddr *pAddr, const char *pszStr) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ParseString(struct w_steam_iface *_this, SteamNetworkingIPAddr *pAddr, const char *pszStr) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ParseString_params params = { @@ -1341,7 +1341,7 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworking STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ToString, ¶ms ); } -bool __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ParseString(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity, const char *pszStr) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ParseString(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity, const char *pszStr) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ParseString_params params = { diff --git a/lsteamclient/winISteamParentalSettings.c b/lsteamclient/winISteamParentalSettings.c index afdb12b7..cd399f4b 100644 --- a/lsteamclient/winISteamParentalSettings.c +++ b/lsteamclient/winISteamParentalSettings.c @@ -10,7 +10,7 @@ DEFINE_THISCALL_WRAPPER(winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFAC DEFINE_THISCALL_WRAPPER(winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked, 8) DEFINE_THISCALL_WRAPPER(winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList, 8) -bool __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled(struct w_steam_iface *_this) { struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled_params params = { @@ -21,7 +21,7 @@ bool __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSIO return params._ret; } -bool __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked(struct w_steam_iface *_this) +int8_t __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked(struct w_steam_iface *_this) { struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked_params params = { @@ -32,7 +32,7 @@ bool __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSIO return params._ret; } -bool __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppBlocked(struct w_steam_iface *_this, uint32_t nAppID) +int8_t __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppBlocked(struct w_steam_iface *_this, uint32_t nAppID) { struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppBlocked_params params = { @@ -44,7 +44,7 @@ bool __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSIO return params._ret; } -bool __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppInBlockList(struct w_steam_iface *_this, uint32_t nAppID) +int8_t __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppInBlockList(struct w_steam_iface *_this, uint32_t nAppID) { struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppInBlockList_params params = { @@ -56,7 +56,7 @@ bool __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSIO return params._ret; } -bool __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked(struct w_steam_iface *_this, uint32_t eFeature) +int8_t __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked(struct w_steam_iface *_this, uint32_t eFeature) { struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked_params params = { @@ -68,7 +68,7 @@ bool __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSIO return params._ret; } -bool __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList(struct w_steam_iface *_this, uint32_t eFeature) +int8_t __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList(struct w_steam_iface *_this, uint32_t eFeature) { struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList_params params = { diff --git a/lsteamclient/winISteamParties.c b/lsteamclient/winISteamParties.c index bc3b23d5..ebabf6b4 100644 --- a/lsteamclient/winISteamParties.c +++ b/lsteamclient/winISteamParties.c @@ -39,7 +39,7 @@ uint64_t __thiscall winISteamParties_SteamParties002_GetBeaconByIndex(struct w_s return params._ret; } -bool __thiscall winISteamParties_SteamParties002_GetBeaconDetails(struct w_steam_iface *_this, uint64_t ulBeaconID, CSteamID *pSteamIDBeaconOwner, w_SteamPartyBeaconLocation_t *pLocation, char *pchMetadata, int32_t cchMetadata) +int8_t __thiscall winISteamParties_SteamParties002_GetBeaconDetails(struct w_steam_iface *_this, uint64_t ulBeaconID, CSteamID *pSteamIDBeaconOwner, w_SteamPartyBeaconLocation_t *pLocation, char *pchMetadata, int32_t cchMetadata) { struct ISteamParties_SteamParties002_GetBeaconDetails_params params = { @@ -67,7 +67,7 @@ uint64_t __thiscall winISteamParties_SteamParties002_JoinParty(struct w_steam_if return params._ret; } -bool __thiscall winISteamParties_SteamParties002_GetNumAvailableBeaconLocations(struct w_steam_iface *_this, uint32_t *puNumLocations) +int8_t __thiscall winISteamParties_SteamParties002_GetNumAvailableBeaconLocations(struct w_steam_iface *_this, uint32_t *puNumLocations) { struct ISteamParties_SteamParties002_GetNumAvailableBeaconLocations_params params = { @@ -79,7 +79,7 @@ bool __thiscall winISteamParties_SteamParties002_GetNumAvailableBeaconLocations( return params._ret; } -bool __thiscall winISteamParties_SteamParties002_GetAvailableBeaconLocations(struct w_steam_iface *_this, w_SteamPartyBeaconLocation_t *pLocationList, uint32_t uMaxNumLocations) +int8_t __thiscall winISteamParties_SteamParties002_GetAvailableBeaconLocations(struct w_steam_iface *_this, w_SteamPartyBeaconLocation_t *pLocationList, uint32_t uMaxNumLocations) { struct ISteamParties_SteamParties002_GetAvailableBeaconLocations_params params = { @@ -144,7 +144,7 @@ uint64_t __thiscall winISteamParties_SteamParties002_ChangeNumOpenSlots(struct w return params._ret; } -bool __thiscall winISteamParties_SteamParties002_DestroyBeacon(struct w_steam_iface *_this, uint64_t ulBeacon) +int8_t __thiscall winISteamParties_SteamParties002_DestroyBeacon(struct w_steam_iface *_this, uint64_t ulBeacon) { struct ISteamParties_SteamParties002_DestroyBeacon_params params = { @@ -156,7 +156,7 @@ bool __thiscall winISteamParties_SteamParties002_DestroyBeacon(struct w_steam_if return params._ret; } -bool __thiscall winISteamParties_SteamParties002_GetBeaconLocationData(struct w_steam_iface *_this, w_SteamPartyBeaconLocation_t BeaconLocation, uint32_t eData, char *pchDataStringOut, int32_t cchDataStringOut) +int8_t __thiscall winISteamParties_SteamParties002_GetBeaconLocationData(struct w_steam_iface *_this, w_SteamPartyBeaconLocation_t BeaconLocation, uint32_t eData, char *pchDataStringOut, int32_t cchDataStringOut) { struct ISteamParties_SteamParties002_GetBeaconLocationData_params params = { diff --git a/lsteamclient/winISteamRemotePlay.c b/lsteamclient/winISteamRemotePlay.c index 426d0834..411f2a61 100644 --- a/lsteamclient/winISteamRemotePlay.c +++ b/lsteamclient/winISteamRemotePlay.c @@ -71,7 +71,7 @@ uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_Get return params._ret; } -bool __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClientResolution(struct w_steam_iface *_this, uint32_t unSessionID, int32_t *pnResolutionX, int32_t *pnResolutionY) +int8_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClientResolution(struct w_steam_iface *_this, uint32_t unSessionID, int32_t *pnResolutionX, int32_t *pnResolutionY) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClientResolution_params params = { @@ -85,7 +85,7 @@ bool __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSes return params._ret; } -bool __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BSendRemotePlayTogetherInvite(struct w_steam_iface *_this, CSteamID steamIDFriend) +int8_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BSendRemotePlayTogetherInvite(struct w_steam_iface *_this, CSteamID steamIDFriend) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BSendRemotePlayTogetherInvite_params params = { @@ -191,7 +191,7 @@ uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_Get return params._ret; } -bool __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSessionClientResolution(struct w_steam_iface *_this, uint32_t unSessionID, int32_t *pnResolutionX, int32_t *pnResolutionY) +int8_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSessionClientResolution(struct w_steam_iface *_this, uint32_t unSessionID, int32_t *pnResolutionX, int32_t *pnResolutionY) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSessionClientResolution_params params = { @@ -205,7 +205,7 @@ bool __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSes return params._ret; } -bool __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BStartRemotePlayTogether(struct w_steam_iface *_this, bool bShowOverlay) +int8_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BStartRemotePlayTogether(struct w_steam_iface *_this, int8_t bShowOverlay) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BStartRemotePlayTogether_params params = { @@ -217,7 +217,7 @@ bool __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BStartR return params._ret; } -bool __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BSendRemotePlayTogetherInvite(struct w_steam_iface *_this, CSteamID steamIDFriend) +int8_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BSendRemotePlayTogetherInvite(struct w_steam_iface *_this, CSteamID steamIDFriend) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BSendRemotePlayTogetherInvite_params params = { diff --git a/lsteamclient/winISteamRemoteStorage.c b/lsteamclient/winISteamRemoteStorage.c index 5e76a7aa..0875bab5 100644 --- a/lsteamclient/winISteamRemoteStorage.c +++ b/lsteamclient/winISteamRemoteStorage.c @@ -12,7 +12,7 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileNameAndSize, 12) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota, 12) -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileWrite_params params = { @@ -52,7 +52,7 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileExists(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileExists(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileExists_params params = { @@ -64,7 +64,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileDelete(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileDelete(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileDelete_params params = { @@ -100,7 +100,7 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota_params params = { @@ -147,7 +147,7 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileNameAndSize, 12) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota, 12) -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileWrite_params params = { @@ -187,7 +187,7 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileExists(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileExists(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileExists_params params = { @@ -223,7 +223,7 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota_params params = { @@ -282,7 +282,7 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCCount, 4) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCHandle, 8) -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileWrite_params params = { @@ -310,7 +310,7 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileForget(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileForget(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileForget_params params = { @@ -322,7 +322,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileDelete(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileDelete(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileDelete_params params = { @@ -346,7 +346,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileExists(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileExists(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileExists_params params = { @@ -358,7 +358,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FilePersisted(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FilePersisted(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FilePersisted_params params = { @@ -418,7 +418,7 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetQuota_params params = { @@ -431,7 +431,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_G return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForAccount(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForAccount(struct w_steam_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForAccount_params params = { @@ -442,7 +442,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_I return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForApp(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForApp(struct w_steam_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForApp_params params = { @@ -453,7 +453,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_I return params._ret; } -void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_SetCloudEnabledForApp(struct w_steam_iface *_this, bool bEnabled) +void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_SetCloudEnabledForApp(struct w_steam_iface *_this, int8_t bEnabled) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_SetCloudEnabledForApp_params params = { @@ -476,7 +476,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetUGCDetails_params params = { @@ -590,7 +590,7 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCCount, 4) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCHandle, 8) -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileWrite_params params = { @@ -618,7 +618,7 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileForget(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileForget(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileForget_params params = { @@ -630,7 +630,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileDelete(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileDelete(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileDelete_params params = { @@ -654,7 +654,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetSyncPlatforms_params params = { @@ -667,7 +667,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_S return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileExists(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileExists(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileExists_params params = { @@ -679,7 +679,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FilePersisted(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FilePersisted(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FilePersisted_params params = { @@ -751,7 +751,7 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetQuota_params params = { @@ -764,7 +764,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_G return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForAccount(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForAccount(struct w_steam_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForAccount_params params = { @@ -775,7 +775,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_I return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForApp(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForApp(struct w_steam_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForApp_params params = { @@ -786,7 +786,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_I return params._ret; } -void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetCloudEnabledForApp(struct w_steam_iface *_this, bool bEnabled) +void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetCloudEnabledForApp(struct w_steam_iface *_this, int8_t bEnabled) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetCloudEnabledForApp_params params = { @@ -809,7 +809,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetUGCDetails_params params = { @@ -934,7 +934,7 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserSubscribedFiles, 8) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UnsubscribePublishedFile, 12) -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileWrite_params params = { @@ -962,7 +962,7 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileForget(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileForget(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileForget_params params = { @@ -974,7 +974,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileDelete(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileDelete(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileDelete_params params = { @@ -998,7 +998,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetSyncPlatforms_params params = { @@ -1011,7 +1011,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_S return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileExists(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileExists(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileExists_params params = { @@ -1023,7 +1023,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FilePersisted(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FilePersisted(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FilePersisted_params params = { @@ -1095,7 +1095,7 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetQuota_params params = { @@ -1108,7 +1108,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_G return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForAccount(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForAccount(struct w_steam_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForAccount_params params = { @@ -1119,7 +1119,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_I return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForApp(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForApp(struct w_steam_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForApp_params params = { @@ -1130,7 +1130,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_I return params._ret; } -void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetCloudEnabledForApp(struct w_steam_iface *_this, bool bEnabled) +void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetCloudEnabledForApp(struct w_steam_iface *_this, int8_t bEnabled) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetCloudEnabledForApp_params params = { @@ -1153,7 +1153,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetUGCDetails_params params = { @@ -1422,7 +1422,7 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedFilesByUserAction, 12) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedWorkshopFiles, 28) -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileWrite_params params = { @@ -1450,7 +1450,7 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileForget(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileForget(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileForget_params params = { @@ -1462,7 +1462,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileDelete(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileDelete(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileDelete_params params = { @@ -1486,7 +1486,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetSyncPlatforms_params params = { @@ -1499,7 +1499,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_S return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileExists(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileExists(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileExists_params params = { @@ -1511,7 +1511,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FilePersisted(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FilePersisted(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FilePersisted_params params = { @@ -1583,7 +1583,7 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetQuota_params params = { @@ -1596,7 +1596,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_G return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForAccount(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForAccount(struct w_steam_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForAccount_params params = { @@ -1607,7 +1607,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_I return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForApp(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForApp(struct w_steam_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForApp_params params = { @@ -1618,7 +1618,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_I return params._ret; } -void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetCloudEnabledForApp(struct w_steam_iface *_this, bool bEnabled) +void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetCloudEnabledForApp(struct w_steam_iface *_this, int8_t bEnabled) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetCloudEnabledForApp_params params = { @@ -1641,7 +1641,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDownloadProgress_params params = { @@ -1655,7 +1655,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_G return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDetails_params params = { @@ -1739,7 +1739,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileFile_params params = { @@ -1752,7 +1752,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFilePreviewFile_params params = { @@ -1765,7 +1765,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTitle_params params = { @@ -1778,7 +1778,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileDescription_params params = { @@ -1791,7 +1791,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileVisibility_params params = { @@ -1804,7 +1804,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTags_params params = { @@ -1901,7 +1901,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileSetChangeDescription_params params = { @@ -1926,7 +1926,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, bool bVoteUp) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, int8_t bVoteUp) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdateUserPublishedItemVote_params params = { @@ -2140,7 +2140,7 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedFilesByUserAction, 12) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedWorkshopFiles, 28) -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileWrite_params params = { @@ -2168,7 +2168,7 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileForget(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileForget(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileForget_params params = { @@ -2180,7 +2180,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileDelete(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileDelete(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileDelete_params params = { @@ -2204,7 +2204,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetSyncPlatforms_params params = { @@ -2217,7 +2217,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_S return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileExists(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileExists(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileExists_params params = { @@ -2229,7 +2229,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FilePersisted(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FilePersisted(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FilePersisted_params params = { @@ -2301,7 +2301,7 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetQuota_params params = { @@ -2314,7 +2314,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_G return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForAccount(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForAccount(struct w_steam_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForAccount_params params = { @@ -2325,7 +2325,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_I return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForApp(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForApp(struct w_steam_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForApp_params params = { @@ -2336,7 +2336,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_I return params._ret; } -void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetCloudEnabledForApp(struct w_steam_iface *_this, bool bEnabled) +void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetCloudEnabledForApp(struct w_steam_iface *_this, int8_t bEnabled) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetCloudEnabledForApp_params params = { @@ -2359,7 +2359,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDownloadProgress_params params = { @@ -2373,7 +2373,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_G return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDetails_params params = { @@ -2457,7 +2457,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileFile_params params = { @@ -2470,7 +2470,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFilePreviewFile_params params = { @@ -2483,7 +2483,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTitle_params params = { @@ -2496,7 +2496,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileDescription_params params = { @@ -2509,7 +2509,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileVisibility_params params = { @@ -2522,7 +2522,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTags_params params = { @@ -2619,7 +2619,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileSetChangeDescription_params params = { @@ -2644,7 +2644,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, bool bVoteUp) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, int8_t bVoteUp) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdateUserPublishedItemVote_params params = { @@ -2864,7 +2864,7 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedFilesByUserAction, 12) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedWorkshopFiles, 28) -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWrite_params params = { @@ -2892,7 +2892,7 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileForget(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileForget(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileForget_params params = { @@ -2904,7 +2904,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileDelete(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileDelete(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileDelete_params params = { @@ -2928,7 +2928,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetSyncPlatforms_params params = { @@ -2953,7 +2953,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamWriteChunk_params params = { @@ -2967,7 +2967,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamClose_params params = { @@ -2979,7 +2979,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamCancel_params params = { @@ -2991,7 +2991,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileExists(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileExists(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileExists_params params = { @@ -3003,7 +3003,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FilePersisted(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FilePersisted(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FilePersisted_params params = { @@ -3075,7 +3075,7 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetQuota_params params = { @@ -3088,7 +3088,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_G return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForAccount(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForAccount(struct w_steam_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForAccount_params params = { @@ -3099,7 +3099,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_I return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForApp(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForApp(struct w_steam_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForApp_params params = { @@ -3110,7 +3110,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_I return params._ret; } -void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetCloudEnabledForApp(struct w_steam_iface *_this, bool bEnabled) +void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetCloudEnabledForApp(struct w_steam_iface *_this, int8_t bEnabled) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetCloudEnabledForApp_params params = { @@ -3133,7 +3133,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDownloadProgress_params params = { @@ -3147,7 +3147,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_G return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDetails_params params = { @@ -3231,7 +3231,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileFile_params params = { @@ -3244,7 +3244,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFilePreviewFile_params params = { @@ -3257,7 +3257,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTitle_params params = { @@ -3270,7 +3270,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileDescription_params params = { @@ -3283,7 +3283,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileVisibility_params params = { @@ -3296,7 +3296,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTags_params params = { @@ -3393,7 +3393,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileSetChangeDescription_params params = { @@ -3418,7 +3418,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, bool bVoteUp) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, int8_t bVoteUp) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdateUserPublishedItemVote_params params = { @@ -3642,7 +3642,7 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedFilesByUserAction, 12) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedWorkshopFiles, 28) -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWrite_params params = { @@ -3670,7 +3670,7 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileForget(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileForget(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileForget_params params = { @@ -3682,7 +3682,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileDelete(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileDelete(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileDelete_params params = { @@ -3706,7 +3706,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetSyncPlatforms_params params = { @@ -3731,7 +3731,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamWriteChunk_params params = { @@ -3745,7 +3745,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamClose_params params = { @@ -3757,7 +3757,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamCancel_params params = { @@ -3769,7 +3769,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileExists(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileExists(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileExists_params params = { @@ -3781,7 +3781,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FilePersisted(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FilePersisted(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FilePersisted_params params = { @@ -3853,7 +3853,7 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetQuota_params params = { @@ -3866,7 +3866,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_G return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForAccount(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForAccount(struct w_steam_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForAccount_params params = { @@ -3877,7 +3877,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_I return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForApp(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForApp(struct w_steam_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForApp_params params = { @@ -3888,7 +3888,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_I return params._ret; } -void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetCloudEnabledForApp(struct w_steam_iface *_this, bool bEnabled) +void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetCloudEnabledForApp(struct w_steam_iface *_this, int8_t bEnabled) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetCloudEnabledForApp_params params = { @@ -3911,7 +3911,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDownloadProgress_params params = { @@ -3925,7 +3925,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_G return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDetails_params params = { @@ -4010,7 +4010,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileFile_params params = { @@ -4023,7 +4023,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFilePreviewFile_params params = { @@ -4036,7 +4036,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTitle_params params = { @@ -4049,7 +4049,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileDescription_params params = { @@ -4062,7 +4062,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileVisibility_params params = { @@ -4075,7 +4075,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTags_params params = { @@ -4172,7 +4172,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileSetChangeDescription_params params = { @@ -4197,7 +4197,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, bool bVoteUp) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, int8_t bVoteUp) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdateUserPublishedItemVote_params params = { @@ -4422,7 +4422,7 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedWorkshopFiles, 28) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownloadToLocation, 20) -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWrite_params params = { @@ -4450,7 +4450,7 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileForget(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileForget(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileForget_params params = { @@ -4462,7 +4462,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileDelete(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileDelete(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileDelete_params params = { @@ -4486,7 +4486,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetSyncPlatforms_params params = { @@ -4511,7 +4511,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamWriteChunk_params params = { @@ -4525,7 +4525,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamClose_params params = { @@ -4537,7 +4537,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamCancel_params params = { @@ -4549,7 +4549,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileExists(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileExists(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileExists_params params = { @@ -4561,7 +4561,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FilePersisted(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FilePersisted(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FilePersisted_params params = { @@ -4633,7 +4633,7 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetQuota_params params = { @@ -4646,7 +4646,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_G return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForAccount(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForAccount(struct w_steam_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForAccount_params params = { @@ -4657,7 +4657,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_I return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForApp(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForApp(struct w_steam_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForApp_params params = { @@ -4668,7 +4668,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_I return params._ret; } -void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetCloudEnabledForApp(struct w_steam_iface *_this, bool bEnabled) +void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetCloudEnabledForApp(struct w_steam_iface *_this, int8_t bEnabled) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetCloudEnabledForApp_params params = { @@ -4692,7 +4692,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDownloadProgress_params params = { @@ -4706,7 +4706,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_G return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDetails_params params = { @@ -4791,7 +4791,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileFile_params params = { @@ -4804,7 +4804,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFilePreviewFile_params params = { @@ -4817,7 +4817,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTitle_params params = { @@ -4830,7 +4830,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileDescription_params params = { @@ -4843,7 +4843,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileVisibility_params params = { @@ -4856,7 +4856,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTags_params params = { @@ -4953,7 +4953,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileSetChangeDescription_params params = { @@ -4978,7 +4978,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, bool bVoteUp) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, int8_t bVoteUp) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdateUserPublishedItemVote_params params = { @@ -5218,7 +5218,7 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedWorkshopFiles, 28) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownloadToLocation, 20) -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWrite_params params = { @@ -5246,7 +5246,7 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileForget(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileForget(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileForget_params params = { @@ -5258,7 +5258,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileDelete(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileDelete(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileDelete_params params = { @@ -5282,7 +5282,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetSyncPlatforms_params params = { @@ -5307,7 +5307,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamWriteChunk_params params = { @@ -5321,7 +5321,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamClose_params params = { @@ -5333,7 +5333,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamCancel_params params = { @@ -5345,7 +5345,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileExists(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileExists(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileExists_params params = { @@ -5357,7 +5357,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FilePersisted(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FilePersisted(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FilePersisted_params params = { @@ -5429,7 +5429,7 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetQuota_params params = { @@ -5442,7 +5442,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_G return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForAccount(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForAccount(struct w_steam_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForAccount_params params = { @@ -5453,7 +5453,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_I return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForApp(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForApp(struct w_steam_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForApp_params params = { @@ -5464,7 +5464,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_I return params._ret; } -void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetCloudEnabledForApp(struct w_steam_iface *_this, bool bEnabled) +void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetCloudEnabledForApp(struct w_steam_iface *_this, int8_t bEnabled) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetCloudEnabledForApp_params params = { @@ -5488,7 +5488,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDownloadProgress_params params = { @@ -5502,7 +5502,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_G return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDetails_params params = { @@ -5587,7 +5587,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileFile_params params = { @@ -5600,7 +5600,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFilePreviewFile_params params = { @@ -5613,7 +5613,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTitle_params params = { @@ -5626,7 +5626,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileDescription_params params = { @@ -5639,7 +5639,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileVisibility_params params = { @@ -5652,7 +5652,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTags_params params = { @@ -5750,7 +5750,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileSetChangeDescription_params params = { @@ -5775,7 +5775,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, bool bVoteUp) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, int8_t bVoteUp) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdateUserPublishedItemVote_params params = { @@ -6015,7 +6015,7 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedWorkshopFiles, 28) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownloadToLocation, 20) -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWrite_params params = { @@ -6043,7 +6043,7 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileForget(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileForget(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileForget_params params = { @@ -6055,7 +6055,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileDelete(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileDelete(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileDelete_params params = { @@ -6079,7 +6079,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetSyncPlatforms_params params = { @@ -6104,7 +6104,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamWriteChunk_params params = { @@ -6118,7 +6118,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamClose_params params = { @@ -6130,7 +6130,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamCancel_params params = { @@ -6142,7 +6142,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileExists(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileExists(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileExists_params params = { @@ -6154,7 +6154,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FilePersisted(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FilePersisted(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FilePersisted_params params = { @@ -6226,7 +6226,7 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetQuota_params params = { @@ -6239,7 +6239,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_G return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForAccount(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForAccount(struct w_steam_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForAccount_params params = { @@ -6250,7 +6250,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_I return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForApp(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForApp(struct w_steam_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForApp_params params = { @@ -6261,7 +6261,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_I return params._ret; } -void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetCloudEnabledForApp(struct w_steam_iface *_this, bool bEnabled) +void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetCloudEnabledForApp(struct w_steam_iface *_this, int8_t bEnabled) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetCloudEnabledForApp_params params = { @@ -6285,7 +6285,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDownloadProgress_params params = { @@ -6299,7 +6299,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_G return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDetails_params params = { @@ -6385,7 +6385,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileFile_params params = { @@ -6398,7 +6398,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFilePreviewFile_params params = { @@ -6411,7 +6411,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTitle_params params = { @@ -6424,7 +6424,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileDescription_params params = { @@ -6437,7 +6437,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileVisibility_params params = { @@ -6450,7 +6450,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTags_params params = { @@ -6548,7 +6548,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileSetChangeDescription_params params = { @@ -6573,7 +6573,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, bool bVoteUp) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, int8_t bVoteUp) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdateUserPublishedItemVote_params params = { @@ -6816,7 +6816,7 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedWorkshopFiles, 28) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownloadToLocation, 20) -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWrite_params params = { @@ -6872,7 +6872,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsyncComplete(struct w_steam_iface *_this, uint64_t hReadCall, void *pvBuffer, uint32_t cubToRead) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsyncComplete(struct w_steam_iface *_this, uint64_t hReadCall, void *pvBuffer, uint32_t cubToRead) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsyncComplete_params params = { @@ -6886,7 +6886,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileForget(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileForget(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileForget_params params = { @@ -6898,7 +6898,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileDelete(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileDelete(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileDelete_params params = { @@ -6922,7 +6922,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetSyncPlatforms_params params = { @@ -6947,7 +6947,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamWriteChunk_params params = { @@ -6961,7 +6961,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamClose_params params = { @@ -6973,7 +6973,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamCancel_params params = { @@ -6985,7 +6985,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileExists(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileExists(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileExists_params params = { @@ -6997,7 +6997,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FilePersisted(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FilePersisted(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FilePersisted_params params = { @@ -7069,7 +7069,7 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetQuota_params params = { @@ -7082,7 +7082,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_G return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForAccount(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForAccount(struct w_steam_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForAccount_params params = { @@ -7093,7 +7093,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_I return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForApp(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForApp(struct w_steam_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForApp_params params = { @@ -7104,7 +7104,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_I return params._ret; } -void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetCloudEnabledForApp(struct w_steam_iface *_this, bool bEnabled) +void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetCloudEnabledForApp(struct w_steam_iface *_this, int8_t bEnabled) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetCloudEnabledForApp_params params = { @@ -7128,7 +7128,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDownloadProgress_params params = { @@ -7142,7 +7142,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_G return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDetails_params params = { @@ -7228,7 +7228,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileFile_params params = { @@ -7241,7 +7241,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFilePreviewFile_params params = { @@ -7254,7 +7254,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTitle_params params = { @@ -7267,7 +7267,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileDescription_params params = { @@ -7280,7 +7280,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileVisibility_params params = { @@ -7293,7 +7293,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTags_params params = { @@ -7391,7 +7391,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileSetChangeDescription_params params = { @@ -7416,7 +7416,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, bool bVoteUp) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, int8_t bVoteUp) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdateUserPublishedItemVote_params params = { @@ -7662,7 +7662,7 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedWorkshopFiles, 28) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownloadToLocation, 20) -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWrite_params params = { @@ -7718,7 +7718,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsyncComplete(struct w_steam_iface *_this, uint64_t hReadCall, void *pvBuffer, uint32_t cubToRead) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsyncComplete(struct w_steam_iface *_this, uint64_t hReadCall, void *pvBuffer, uint32_t cubToRead) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsyncComplete_params params = { @@ -7732,7 +7732,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileForget(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileForget(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileForget_params params = { @@ -7744,7 +7744,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileDelete(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileDelete(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileDelete_params params = { @@ -7768,7 +7768,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetSyncPlatforms_params params = { @@ -7793,7 +7793,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamWriteChunk_params params = { @@ -7807,7 +7807,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamClose_params params = { @@ -7819,7 +7819,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamCancel_params params = { @@ -7831,7 +7831,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileExists(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileExists(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileExists_params params = { @@ -7843,7 +7843,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FilePersisted(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FilePersisted(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FilePersisted_params params = { @@ -7915,7 +7915,7 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetQuota(struct w_steam_iface *_this, uint64_t *pnTotalBytes, uint64_t *puAvailableBytes) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetQuota(struct w_steam_iface *_this, uint64_t *pnTotalBytes, uint64_t *puAvailableBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetQuota_params params = { @@ -7928,7 +7928,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_G return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForAccount(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForAccount(struct w_steam_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForAccount_params params = { @@ -7939,7 +7939,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_I return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForApp(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForApp(struct w_steam_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForApp_params params = { @@ -7950,7 +7950,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_I return params._ret; } -void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetCloudEnabledForApp(struct w_steam_iface *_this, bool bEnabled) +void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetCloudEnabledForApp(struct w_steam_iface *_this, int8_t bEnabled) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetCloudEnabledForApp_params params = { @@ -7974,7 +7974,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDownloadProgress_params params = { @@ -7988,7 +7988,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_G return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDetails_params params = { @@ -8074,7 +8074,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileFile_params params = { @@ -8087,7 +8087,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFilePreviewFile_params params = { @@ -8100,7 +8100,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTitle_params params = { @@ -8113,7 +8113,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileDescription_params params = { @@ -8126,7 +8126,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileVisibility_params params = { @@ -8139,7 +8139,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTags_params params = { @@ -8237,7 +8237,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileSetChangeDescription_params params = { @@ -8262,7 +8262,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, bool bVoteUp) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, int8_t bVoteUp) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdateUserPublishedItemVote_params params = { @@ -8512,7 +8512,7 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_BeginFileWriteBatch, 4) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EndFileWriteBatch, 4) -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWrite_params params = { @@ -8568,7 +8568,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsyncComplete(struct w_steam_iface *_this, uint64_t hReadCall, void *pvBuffer, uint32_t cubToRead) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsyncComplete(struct w_steam_iface *_this, uint64_t hReadCall, void *pvBuffer, uint32_t cubToRead) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsyncComplete_params params = { @@ -8582,7 +8582,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileForget(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileForget(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileForget_params params = { @@ -8594,7 +8594,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileDelete(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileDelete(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileDelete_params params = { @@ -8618,7 +8618,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetSyncPlatforms_params params = { @@ -8643,7 +8643,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamWriteChunk_params params = { @@ -8657,7 +8657,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamClose_params params = { @@ -8669,7 +8669,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamCancel_params params = { @@ -8681,7 +8681,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileExists(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileExists(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileExists_params params = { @@ -8693,7 +8693,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_F return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FilePersisted(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FilePersisted(struct w_steam_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FilePersisted_params params = { @@ -8765,7 +8765,7 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetQuota(struct w_steam_iface *_this, uint64_t *pnTotalBytes, uint64_t *puAvailableBytes) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetQuota(struct w_steam_iface *_this, uint64_t *pnTotalBytes, uint64_t *puAvailableBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetQuota_params params = { @@ -8778,7 +8778,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_G return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForAccount(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForAccount(struct w_steam_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForAccount_params params = { @@ -8789,7 +8789,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_I return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForApp(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForApp(struct w_steam_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForApp_params params = { @@ -8800,7 +8800,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_I return params._ret; } -void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetCloudEnabledForApp(struct w_steam_iface *_this, bool bEnabled) +void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetCloudEnabledForApp(struct w_steam_iface *_this, int8_t bEnabled) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetCloudEnabledForApp_params params = { @@ -8824,7 +8824,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDownloadProgress_params params = { @@ -8838,7 +8838,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_G return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDetails_params params = { @@ -8924,7 +8924,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileFile_params params = { @@ -8937,7 +8937,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFilePreviewFile_params params = { @@ -8950,7 +8950,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTitle_params params = { @@ -8963,7 +8963,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileDescription_params params = { @@ -8976,7 +8976,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileVisibility_params params = { @@ -8989,7 +8989,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_U return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTags_params params = { @@ -9087,7 +9087,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileSetChangeDescription_params params = { @@ -9112,7 +9112,7 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, bool bVoteUp) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, int8_t bVoteUp) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdateUserPublishedItemVote_params params = { @@ -9254,7 +9254,7 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_BeginFileWriteBatch(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_BeginFileWriteBatch(struct w_steam_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_BeginFileWriteBatch_params params = { @@ -9265,7 +9265,7 @@ bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_B return params._ret; } -bool __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EndFileWriteBatch(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EndFileWriteBatch(struct w_steam_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EndFileWriteBatch_params params = { diff --git a/lsteamclient/winISteamScreenshots.c b/lsteamclient/winISteamScreenshots.c index 97c0c42f..a83b4805 100644 --- a/lsteamclient/winISteamScreenshots.c +++ b/lsteamclient/winISteamScreenshots.c @@ -50,7 +50,7 @@ void __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_Trigg STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TriggerScreenshot, ¶ms ); } -void __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_HookScreenshots(struct w_steam_iface *_this, bool bHook) +void __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_HookScreenshots(struct w_steam_iface *_this, int8_t bHook) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_HookScreenshots_params params = { @@ -61,7 +61,7 @@ void __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_HookS STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_HookScreenshots, ¶ms ); } -bool __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation(struct w_steam_iface *_this, uint32_t hScreenshot, const char *pchLocation) +int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation(struct w_steam_iface *_this, uint32_t hScreenshot, const char *pchLocation) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation_params params = { @@ -74,7 +74,7 @@ bool __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLo return params._ret; } -bool __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TagUser(struct w_steam_iface *_this, uint32_t hScreenshot, CSteamID steamID) +int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TagUser(struct w_steam_iface *_this, uint32_t hScreenshot, CSteamID steamID) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TagUser_params params = { @@ -159,7 +159,7 @@ void __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_Trigg STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TriggerScreenshot, ¶ms ); } -void __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_HookScreenshots(struct w_steam_iface *_this, bool bHook) +void __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_HookScreenshots(struct w_steam_iface *_this, int8_t bHook) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_HookScreenshots_params params = { @@ -170,7 +170,7 @@ void __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_HookS STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_HookScreenshots, ¶ms ); } -bool __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLocation(struct w_steam_iface *_this, uint32_t hScreenshot, const char *pchLocation) +int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLocation(struct w_steam_iface *_this, uint32_t hScreenshot, const char *pchLocation) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLocation_params params = { @@ -183,7 +183,7 @@ bool __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLo return params._ret; } -bool __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser(struct w_steam_iface *_this, uint32_t hScreenshot, CSteamID steamID) +int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser(struct w_steam_iface *_this, uint32_t hScreenshot, CSteamID steamID) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser_params params = { @@ -196,7 +196,7 @@ bool __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUs return params._ret; } -bool __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagPublishedFile(struct w_steam_iface *_this, uint32_t hScreenshot, uint64_t unPublishedFileID) +int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagPublishedFile(struct w_steam_iface *_this, uint32_t hScreenshot, uint64_t unPublishedFileID) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagPublishedFile_params params = { @@ -284,7 +284,7 @@ void __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_Trigg STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TriggerScreenshot, ¶ms ); } -void __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_HookScreenshots(struct w_steam_iface *_this, bool bHook) +void __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_HookScreenshots(struct w_steam_iface *_this, int8_t bHook) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_HookScreenshots_params params = { @@ -295,7 +295,7 @@ void __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_HookS STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_HookScreenshots, ¶ms ); } -bool __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLocation(struct w_steam_iface *_this, uint32_t hScreenshot, const char *pchLocation) +int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLocation(struct w_steam_iface *_this, uint32_t hScreenshot, const char *pchLocation) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLocation_params params = { @@ -308,7 +308,7 @@ bool __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLo return params._ret; } -bool __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUser(struct w_steam_iface *_this, uint32_t hScreenshot, CSteamID steamID) +int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUser(struct w_steam_iface *_this, uint32_t hScreenshot, CSteamID steamID) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUser_params params = { @@ -321,7 +321,7 @@ bool __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUs return params._ret; } -bool __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPublishedFile(struct w_steam_iface *_this, uint32_t hScreenshot, uint64_t unPublishedFileID) +int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPublishedFile(struct w_steam_iface *_this, uint32_t hScreenshot, uint64_t unPublishedFileID) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPublishedFile_params params = { @@ -334,7 +334,7 @@ bool __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPu return params._ret; } -bool __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_IsScreenshotsHooked(struct w_steam_iface *_this) +int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_IsScreenshotsHooked(struct w_steam_iface *_this) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_IsScreenshotsHooked_params params = { diff --git a/lsteamclient/winISteamUGC.c b/lsteamclient/winISteamUGC.c index 35f96ac2..f6688c01 100644 --- a/lsteamclient/winISteamUGC.c +++ b/lsteamclient/winISteamUGC.c @@ -64,7 +64,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SendQueryUGCReque return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_126 *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_126 *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult_params params = { @@ -78,7 +78,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_ReleaseQueryUGCRequest_params params = { @@ -90,7 +90,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_ReleaseQueryUGCReques return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag_params params = { @@ -103,7 +103,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag_params params = { @@ -116,7 +116,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescription_params params = { @@ -129,7 +129,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescript return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly_params params = { @@ -142,7 +142,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilter_params params = { @@ -155,7 +155,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilte return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag_params params = { @@ -168,7 +168,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText_params params = { @@ -181,7 +181,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDays_params params = { @@ -316,7 +316,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SendQueryUGCReque return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult_params params = { @@ -330,7 +330,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_ReleaseQueryUGCRequest_params params = { @@ -342,7 +342,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_ReleaseQueryUGCReques return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag_params params = { @@ -355,7 +355,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag_params params = { @@ -368,7 +368,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescription_params params = { @@ -381,7 +381,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescript return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly_params params = { @@ -394,7 +394,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedResponse_params params = { @@ -407,7 +407,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedRespons return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilter_params params = { @@ -420,7 +420,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilte return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag_params params = { @@ -433,7 +433,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText_params params = { @@ -446,7 +446,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetRankedByTrendDays_params params = { @@ -498,7 +498,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_StartItemUpdate(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle_params params = { @@ -511,7 +511,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle(struct w return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription_params params = { @@ -524,7 +524,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility_params params = { @@ -537,7 +537,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags_params params = { @@ -550,7 +550,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags(struct w_ return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent_params params = { @@ -563,7 +563,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview_params params = { @@ -651,7 +651,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetSubscribedItem return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo_params params = { @@ -666,7 +666,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool *pbNeedsUpdate, bool *pbIsDownloading, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t *pbNeedsUpdate, int8_t *pbIsDownloading, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateInfo_params params = { @@ -809,7 +809,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SendQueryUGCReque return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult_params params = { @@ -823,7 +823,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCRequest_params params = { @@ -835,7 +835,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCReques return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag_params params = { @@ -848,7 +848,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag_params params = { @@ -861,7 +861,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription_params params = { @@ -874,7 +874,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescript return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly_params params = { @@ -887,7 +887,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse_params params = { @@ -900,7 +900,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedRespons return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter_params params = { @@ -913,7 +913,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilte return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag_params params = { @@ -926,7 +926,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText_params params = { @@ -939,7 +939,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays_params params = { @@ -991,7 +991,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_StartItemUpdate(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle_params params = { @@ -1004,7 +1004,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle(struct w return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription_params params = { @@ -1017,7 +1017,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility_params params = { @@ -1030,7 +1030,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags_params params = { @@ -1043,7 +1043,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags(struct w_ return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent_params params = { @@ -1056,7 +1056,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview_params params = { @@ -1144,7 +1144,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetSubscribedItem return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, bool *pbLegacyItem) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, int8_t *pbLegacyItem) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo_params params = { @@ -1160,7 +1160,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool *pbNeedsUpdate, bool *pbIsDownloading, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t *pbNeedsUpdate, int8_t *pbIsDownloading, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo_params params = { @@ -1305,7 +1305,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SendQueryUGCReque return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult_params params = { @@ -1319,7 +1319,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_ReleaseQueryUGCRequest_params params = { @@ -1331,7 +1331,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_ReleaseQueryUGCReques return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag_params params = { @@ -1344,7 +1344,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag_params params = { @@ -1357,7 +1357,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescription_params params = { @@ -1370,7 +1370,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescript return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly_params params = { @@ -1383,7 +1383,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedResponse_params params = { @@ -1396,7 +1396,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedRespons return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilter_params params = { @@ -1409,7 +1409,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilte return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag_params params = { @@ -1422,7 +1422,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText_params params = { @@ -1435,7 +1435,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetRankedByTrendDays_params params = { @@ -1487,7 +1487,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_StartItemUpdate(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle_params params = { @@ -1500,7 +1500,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle(struct w return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription_params params = { @@ -1513,7 +1513,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility_params params = { @@ -1526,7 +1526,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags_params params = { @@ -1539,7 +1539,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags(struct w_ return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent_params params = { @@ -1552,7 +1552,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview_params params = { @@ -1652,7 +1652,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemState(stru return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo_params params = { @@ -1668,7 +1668,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo_params params = { @@ -1682,7 +1682,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bHighPriority) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_DownloadItem_params params = { @@ -1852,7 +1852,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SendQueryUGCReque return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult_params params = { @@ -1866,7 +1866,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL_params params = { @@ -1881,7 +1881,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata_params params = { @@ -1896,7 +1896,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren_params params = { @@ -1911,7 +1911,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint32_t *pStatValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint32_t *pStatValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatistic_params params = { @@ -1939,7 +1939,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCNumAdd return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, bool *pbIsImage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, int8_t *pbIsImage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditionalPreview_params params = { @@ -1956,7 +1956,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditional return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_ReleaseQueryUGCRequest_params params = { @@ -1968,7 +1968,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_ReleaseQueryUGCReques return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag_params params = { @@ -1981,7 +1981,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag_params params = { @@ -1994,7 +1994,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescription_params params = { @@ -2007,7 +2007,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescript return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, bool bReturnMetadata) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnMetadata) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata_params params = { @@ -2020,7 +2020,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, bool bReturnChildren) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnChildren) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren_params params = { @@ -2033,7 +2033,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, bool bReturnAdditionalPreviews) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditionalPreviews_params params = { @@ -2046,7 +2046,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditionalPr return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly_params params = { @@ -2059,7 +2059,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedResponse_params params = { @@ -2072,7 +2072,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedRespons return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilter_params params = { @@ -2085,7 +2085,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilte return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag_params params = { @@ -2098,7 +2098,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText_params params = { @@ -2111,7 +2111,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetRankedByTrendDays_params params = { @@ -2163,7 +2163,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_StartItemUpdate(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle_params params = { @@ -2176,7 +2176,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle(struct w return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription_params params = { @@ -2189,7 +2189,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata_params params = { @@ -2202,7 +2202,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata(struc return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility_params params = { @@ -2215,7 +2215,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags_params params = { @@ -2228,7 +2228,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags(struct w_ return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent_params params = { @@ -2241,7 +2241,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview_params params = { @@ -2367,7 +2367,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemState(stru return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo_params params = { @@ -2383,7 +2383,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo_params params = { @@ -2397,7 +2397,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bHighPriority) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_DownloadItem_params params = { @@ -2584,7 +2584,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SendQueryUGCReque return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult_params params = { @@ -2598,7 +2598,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL_params params = { @@ -2613,7 +2613,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata_params params = { @@ -2628,7 +2628,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren_params params = { @@ -2643,7 +2643,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint32_t *pStatValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint32_t *pStatValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatistic_params params = { @@ -2671,7 +2671,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCNumAdd return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, bool *pbIsImage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, int8_t *pbIsImage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditionalPreview_params params = { @@ -2688,7 +2688,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditional return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_ReleaseQueryUGCRequest_params params = { @@ -2700,7 +2700,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_ReleaseQueryUGCReques return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag_params params = { @@ -2713,7 +2713,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag_params params = { @@ -2726,7 +2726,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescription_params params = { @@ -2739,7 +2739,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescript return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, bool bReturnMetadata) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnMetadata) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata_params params = { @@ -2752,7 +2752,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, bool bReturnChildren) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnChildren) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren_params params = { @@ -2765,7 +2765,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, bool bReturnAdditionalPreviews) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditionalPreviews_params params = { @@ -2778,7 +2778,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditionalPr return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly_params params = { @@ -2791,7 +2791,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage_params params = { @@ -2804,7 +2804,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage(struct w_ return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedResponse_params params = { @@ -2817,7 +2817,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedRespons return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilter_params params = { @@ -2830,7 +2830,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilte return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag_params params = { @@ -2843,7 +2843,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText_params params = { @@ -2856,7 +2856,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetRankedByTrendDays_params params = { @@ -2908,7 +2908,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_StartItemUpdate(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle_params params = { @@ -2921,7 +2921,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle(struct w return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription_params params = { @@ -2934,7 +2934,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage_params params = { @@ -2947,7 +2947,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata_params params = { @@ -2960,7 +2960,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata(struc return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility_params params = { @@ -2973,7 +2973,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags_params params = { @@ -2986,7 +2986,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags(struct w_ return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent_params params = { @@ -2999,7 +2999,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview_params params = { @@ -3039,7 +3039,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemUpdateProg return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bVoteUp) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetUserItemVote_params params = { @@ -3150,7 +3150,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemState(stru return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo_params params = { @@ -3166,7 +3166,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo_params params = { @@ -3180,7 +3180,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bHighPriority) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_DownloadItem_params params = { @@ -3379,7 +3379,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SendQueryUGCReque return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult_params params = { @@ -3393,7 +3393,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL_params params = { @@ -3408,7 +3408,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata_params params = { @@ -3423,7 +3423,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren_params params = { @@ -3438,7 +3438,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint32_t *pStatValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint32_t *pStatValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatistic_params params = { @@ -3466,7 +3466,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumAdd return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, bool *pbIsImage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, int8_t *pbIsImage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAdditionalPreview_params params = { @@ -3496,7 +3496,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumKey return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTag_params params = { @@ -3514,7 +3514,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTa return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_ReleaseQueryUGCRequest_params params = { @@ -3526,7 +3526,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_ReleaseQueryUGCReques return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag_params params = { @@ -3539,7 +3539,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag_params params = { @@ -3552,7 +3552,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, bool bReturnKeyValueTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTags_params params = { @@ -3565,7 +3565,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTags return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescription_params params = { @@ -3578,7 +3578,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescript return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, bool bReturnMetadata) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnMetadata) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata_params params = { @@ -3591,7 +3591,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, bool bReturnChildren) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnChildren) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren_params params = { @@ -3604,7 +3604,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, bool bReturnAdditionalPreviews) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditionalPreviews_params params = { @@ -3617,7 +3617,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditionalPr return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly_params params = { @@ -3630,7 +3630,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage_params params = { @@ -3643,7 +3643,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage(struct w_ return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedResponse_params params = { @@ -3656,7 +3656,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedRespons return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilter_params params = { @@ -3669,7 +3669,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilte return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag_params params = { @@ -3682,7 +3682,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText_params params = { @@ -3695,7 +3695,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays_params params = { @@ -3708,7 +3708,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays( return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValueTag_params params = { @@ -3761,7 +3761,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_StartItemUpdate(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle_params params = { @@ -3774,7 +3774,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle(struct w return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription_params params = { @@ -3787,7 +3787,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage_params params = { @@ -3800,7 +3800,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata_params params = { @@ -3813,7 +3813,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata(struc return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility_params params = { @@ -3826,7 +3826,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags_params params = { @@ -3839,7 +3839,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags(struct w_ return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent_params params = { @@ -3852,7 +3852,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview_params params = { @@ -3865,7 +3865,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTags_params params = { @@ -3878,7 +3878,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTag return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag_params params = { @@ -3919,7 +3919,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemUpdateProg return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bVoteUp) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetUserItemVote_params params = { @@ -4030,7 +4030,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemState(stru return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo_params params = { @@ -4046,7 +4046,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo_params params = { @@ -4060,7 +4060,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bHighPriority) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem_params params = { @@ -4073,7 +4073,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem(struct w return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer_params params = { @@ -4086,7 +4086,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameS return params._ret; } -void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SuspendDownloads(struct w_steam_iface *_this, bool bSuspend) +void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SuspendDownloads(struct w_steam_iface *_this, int8_t bSuspend) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SuspendDownloads_params params = { @@ -4296,7 +4296,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SendQueryUGCReque return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult_params params = { @@ -4310,7 +4310,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL_params params = { @@ -4325,7 +4325,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata_params params = { @@ -4340,7 +4340,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren_params params = { @@ -4355,7 +4355,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint32_t *pStatValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint32_t *pStatValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatistic_params params = { @@ -4383,7 +4383,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumAdd return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAdditionalPreview_params params = { @@ -4415,7 +4415,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumKey return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTag_params params = { @@ -4433,7 +4433,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTa return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_ReleaseQueryUGCRequest_params params = { @@ -4445,7 +4445,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_ReleaseQueryUGCReques return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag_params params = { @@ -4458,7 +4458,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag_params params = { @@ -4471,7 +4471,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, bool bReturnKeyValueTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTags_params params = { @@ -4484,7 +4484,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTags return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescription_params params = { @@ -4497,7 +4497,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescript return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, bool bReturnMetadata) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnMetadata) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata_params params = { @@ -4510,7 +4510,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, bool bReturnChildren) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnChildren) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren_params params = { @@ -4523,7 +4523,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, bool bReturnAdditionalPreviews) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditionalPreviews_params params = { @@ -4536,7 +4536,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditionalPr return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly_params params = { @@ -4549,7 +4549,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage_params params = { @@ -4562,7 +4562,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage(struct w_ return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedResponse_params params = { @@ -4575,7 +4575,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedRespons return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilter_params params = { @@ -4588,7 +4588,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilte return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag_params params = { @@ -4601,7 +4601,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText_params params = { @@ -4614,7 +4614,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays_params params = { @@ -4627,7 +4627,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays( return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValueTag_params params = { @@ -4680,7 +4680,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_StartItemUpdate(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle_params params = { @@ -4693,7 +4693,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle(struct w return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription_params params = { @@ -4706,7 +4706,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage_params params = { @@ -4719,7 +4719,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata_params params = { @@ -4732,7 +4732,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata(struc return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility_params params = { @@ -4745,7 +4745,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags_params params = { @@ -4758,7 +4758,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags(struct w_ return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent_params params = { @@ -4771,7 +4771,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview_params params = { @@ -4784,7 +4784,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTags_params params = { @@ -4797,7 +4797,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTag return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag_params params = { @@ -4811,7 +4811,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile_params params = { @@ -4825,7 +4825,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo_params params = { @@ -4838,7 +4838,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile_params params = { @@ -4852,7 +4852,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVideo_params params = { @@ -4866,7 +4866,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVide return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemPreview_params params = { @@ -4906,7 +4906,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemUpdateProg return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bVoteUp) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetUserItemVote_params params = { @@ -5017,7 +5017,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemState(stru return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo_params params = { @@ -5033,7 +5033,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo_params params = { @@ -5047,7 +5047,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bHighPriority) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem_params params = { @@ -5060,7 +5060,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem(struct w return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer_params params = { @@ -5073,7 +5073,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameS return params._ret; } -void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SuspendDownloads(struct w_steam_iface *_this, bool bSuspend) +void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SuspendDownloads(struct w_steam_iface *_this, int8_t bSuspend) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SuspendDownloads_params params = { @@ -5292,7 +5292,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SendQueryUGCReque return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult_params params = { @@ -5306,7 +5306,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL_params params = { @@ -5321,7 +5321,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata_params params = { @@ -5336,7 +5336,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren_params params = { @@ -5351,7 +5351,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatistic_params params = { @@ -5379,7 +5379,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumAdd return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAdditionalPreview_params params = { @@ -5411,7 +5411,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumKey return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTag_params params = { @@ -5429,7 +5429,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTa return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_ReleaseQueryUGCRequest_params params = { @@ -5441,7 +5441,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_ReleaseQueryUGCReques return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag_params params = { @@ -5454,7 +5454,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag_params params = { @@ -5467,7 +5467,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, bool bReturnOnlyIDs) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs_params params = { @@ -5480,7 +5480,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs(stru return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, bool bReturnKeyValueTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTags_params params = { @@ -5493,7 +5493,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTags return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescription_params params = { @@ -5506,7 +5506,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescript return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, bool bReturnMetadata) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnMetadata) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata_params params = { @@ -5519,7 +5519,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, bool bReturnChildren) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnChildren) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren_params params = { @@ -5532,7 +5532,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, bool bReturnAdditionalPreviews) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditionalPreviews_params params = { @@ -5545,7 +5545,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditionalPr return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly_params params = { @@ -5558,7 +5558,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage_params params = { @@ -5571,7 +5571,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage(struct w_ return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedResponse_params params = { @@ -5584,7 +5584,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedRespons return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilter_params params = { @@ -5597,7 +5597,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilte return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag_params params = { @@ -5610,7 +5610,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText_params params = { @@ -5623,7 +5623,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays_params params = { @@ -5636,7 +5636,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays( return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValueTag_params params = { @@ -5689,7 +5689,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartItemUpdate(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle_params params = { @@ -5702,7 +5702,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle(struct w return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription_params params = { @@ -5715,7 +5715,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage_params params = { @@ -5728,7 +5728,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata_params params = { @@ -5741,7 +5741,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata(struc return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility_params params = { @@ -5754,7 +5754,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags_params params = { @@ -5767,7 +5767,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags(struct w_ return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent_params params = { @@ -5780,7 +5780,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview_params params = { @@ -5793,7 +5793,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTags_params params = { @@ -5806,7 +5806,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTag return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag_params params = { @@ -5820,7 +5820,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile_params params = { @@ -5834,7 +5834,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo_params params = { @@ -5847,7 +5847,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile_params params = { @@ -5861,7 +5861,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVideo_params params = { @@ -5875,7 +5875,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVide return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemPreview_params params = { @@ -5915,7 +5915,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemUpdateProg return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bVoteUp) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetUserItemVote_params params = { @@ -6026,7 +6026,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemState(stru return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo_params params = { @@ -6042,7 +6042,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo_params params = { @@ -6056,7 +6056,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bHighPriority) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem_params params = { @@ -6069,7 +6069,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem(struct w return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameServer_params params = { @@ -6082,7 +6082,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameS return params._ret; } -void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SuspendDownloads(struct w_steam_iface *_this, bool bSuspend) +void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SuspendDownloads(struct w_steam_iface *_this, int8_t bSuspend) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SuspendDownloads_params params = { @@ -6349,7 +6349,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SendQueryUGCReque return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult_params params = { @@ -6363,7 +6363,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL_params params = { @@ -6378,7 +6378,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata_params params = { @@ -6393,7 +6393,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren_params params = { @@ -6408,7 +6408,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatistic_params params = { @@ -6436,7 +6436,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumAdd return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAdditionalPreview_params params = { @@ -6468,7 +6468,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumKey return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTag_params params = { @@ -6486,7 +6486,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTa return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_ReleaseQueryUGCRequest_params params = { @@ -6498,7 +6498,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_ReleaseQueryUGCReques return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag_params params = { @@ -6511,7 +6511,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag_params params = { @@ -6524,7 +6524,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, bool bReturnOnlyIDs) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs_params params = { @@ -6537,7 +6537,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs(stru return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, bool bReturnKeyValueTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTags_params params = { @@ -6550,7 +6550,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTags return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescription_params params = { @@ -6563,7 +6563,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescript return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, bool bReturnMetadata) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnMetadata) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata_params params = { @@ -6576,7 +6576,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, bool bReturnChildren) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnChildren) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren_params params = { @@ -6589,7 +6589,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, bool bReturnAdditionalPreviews) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditionalPreviews_params params = { @@ -6602,7 +6602,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditionalPr return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly_params params = { @@ -6615,7 +6615,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStats_params params = { @@ -6628,7 +6628,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStat return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage_params params = { @@ -6641,7 +6641,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage(struct w_ return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedResponse_params params = { @@ -6654,7 +6654,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedRespons return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilter_params params = { @@ -6667,7 +6667,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilte return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag_params params = { @@ -6680,7 +6680,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText_params params = { @@ -6693,7 +6693,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays_params params = { @@ -6706,7 +6706,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays( return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValueTag_params params = { @@ -6759,7 +6759,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartItemUpdate(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle_params params = { @@ -6772,7 +6772,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle(struct w return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription_params params = { @@ -6785,7 +6785,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage_params params = { @@ -6798,7 +6798,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata_params params = { @@ -6811,7 +6811,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata(struc return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility_params params = { @@ -6824,7 +6824,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags_params params = { @@ -6837,7 +6837,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags(struct w_ return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent_params params = { @@ -6850,7 +6850,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview_params params = { @@ -6863,7 +6863,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTags_params params = { @@ -6876,7 +6876,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTag return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag_params params = { @@ -6890,7 +6890,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile_params params = { @@ -6904,7 +6904,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo_params params = { @@ -6917,7 +6917,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile_params params = { @@ -6931,7 +6931,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVideo_params params = { @@ -6945,7 +6945,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVide return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemPreview_params params = { @@ -6985,7 +6985,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemUpdateProg return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bVoteUp) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetUserItemVote_params params = { @@ -7096,7 +7096,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemState(stru return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo_params params = { @@ -7112,7 +7112,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo_params params = { @@ -7126,7 +7126,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bHighPriority) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem_params params = { @@ -7139,7 +7139,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem(struct w return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameServer_params params = { @@ -7152,7 +7152,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameS return params._ret; } -void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SuspendDownloads(struct w_steam_iface *_this, bool bSuspend) +void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SuspendDownloads(struct w_steam_iface *_this, int8_t bSuspend) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SuspendDownloads_params params = { @@ -7520,7 +7520,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SendQueryUGCReque return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult_params params = { @@ -7534,7 +7534,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL_params params = { @@ -7549,7 +7549,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata_params params = { @@ -7564,7 +7564,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren_params params = { @@ -7579,7 +7579,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatistic_params params = { @@ -7607,7 +7607,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumAdd return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAdditionalPreview_params params = { @@ -7639,7 +7639,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumKey return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTag_params params = { @@ -7657,7 +7657,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTa return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_ReleaseQueryUGCRequest_params params = { @@ -7669,7 +7669,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_ReleaseQueryUGCReques return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag_params params = { @@ -7682,7 +7682,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag_params params = { @@ -7695,7 +7695,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, bool bReturnOnlyIDs) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs_params params = { @@ -7708,7 +7708,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs(stru return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, bool bReturnKeyValueTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTags_params params = { @@ -7721,7 +7721,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTags return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescription_params params = { @@ -7734,7 +7734,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescript return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, bool bReturnMetadata) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnMetadata) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata_params params = { @@ -7747,7 +7747,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, bool bReturnChildren) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnChildren) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren_params params = { @@ -7760,7 +7760,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, bool bReturnAdditionalPreviews) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditionalPreviews_params params = { @@ -7773,7 +7773,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditionalPr return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly_params params = { @@ -7786,7 +7786,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStats_params params = { @@ -7799,7 +7799,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStat return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage_params params = { @@ -7812,7 +7812,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage(struct w_ return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedResponse_params params = { @@ -7825,7 +7825,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedRespons return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilter_params params = { @@ -7838,7 +7838,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilte return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag_params params = { @@ -7851,7 +7851,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText_params params = { @@ -7864,7 +7864,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays_params params = { @@ -7877,7 +7877,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays( return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValueTag_params params = { @@ -7930,7 +7930,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartItemUpdate(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle_params params = { @@ -7943,7 +7943,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle(struct w return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription_params params = { @@ -7956,7 +7956,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage_params params = { @@ -7969,7 +7969,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata_params params = { @@ -7982,7 +7982,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata(struc return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility_params params = { @@ -7995,7 +7995,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags_params params = { @@ -8008,7 +8008,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags(struct w_ return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent_params params = { @@ -8021,7 +8021,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview_params params = { @@ -8034,7 +8034,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUpload(struct w_steam_iface *_this, uint64_t handle, bool bAllowLegacyUpload) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUpload(struct w_steam_iface *_this, uint64_t handle, int8_t bAllowLegacyUpload) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUpload_params params = { @@ -8047,7 +8047,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUpload( return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTags_params params = { @@ -8060,7 +8060,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTag return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag_params params = { @@ -8074,7 +8074,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile_params params = { @@ -8088,7 +8088,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo_params params = { @@ -8101,7 +8101,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile_params params = { @@ -8115,7 +8115,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVideo_params params = { @@ -8129,7 +8129,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVide return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemPreview_params params = { @@ -8169,7 +8169,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemUpdateProg return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bVoteUp) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetUserItemVote_params params = { @@ -8280,7 +8280,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemState(stru return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo_params params = { @@ -8296,7 +8296,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo_params params = { @@ -8310,7 +8310,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bHighPriority) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem_params params = { @@ -8323,7 +8323,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem(struct w return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameServer_params params = { @@ -8336,7 +8336,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameS return params._ret; } -void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SuspendDownloads(struct w_steam_iface *_this, bool bSuspend) +void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SuspendDownloads(struct w_steam_iface *_this, int8_t bSuspend) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SuspendDownloads_params params = { @@ -8708,7 +8708,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SendQueryUGCReque return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult_params params = { @@ -8722,7 +8722,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL_params params = { @@ -8737,7 +8737,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata_params params = { @@ -8752,7 +8752,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren_params params = { @@ -8767,7 +8767,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatistic_params params = { @@ -8795,7 +8795,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumAdd return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAdditionalPreview_params params = { @@ -8827,7 +8827,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumKey return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_params params = { @@ -8845,7 +8845,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTa return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_2(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_2(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_2_params params = { @@ -8861,7 +8861,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTa return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_ReleaseQueryUGCRequest_params params = { @@ -8873,7 +8873,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_ReleaseQueryUGCReques return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag_params params = { @@ -8886,7 +8886,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag_params params = { @@ -8899,7 +8899,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, bool bReturnOnlyIDs) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs_params params = { @@ -8912,7 +8912,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs(stru return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, bool bReturnKeyValueTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTags_params params = { @@ -8925,7 +8925,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTags return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescription_params params = { @@ -8938,7 +8938,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescript return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, bool bReturnMetadata) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnMetadata) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata_params params = { @@ -8951,7 +8951,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, bool bReturnChildren) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnChildren) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren_params params = { @@ -8964,7 +8964,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, bool bReturnAdditionalPreviews) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditionalPreviews_params params = { @@ -8977,7 +8977,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditionalPr return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly_params params = { @@ -8990,7 +8990,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStats_params params = { @@ -9003,7 +9003,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStat return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage_params params = { @@ -9016,7 +9016,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage(struct w_ return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedResponse_params params = { @@ -9029,7 +9029,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedRespons return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilter_params params = { @@ -9042,7 +9042,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilte return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag_params params = { @@ -9055,7 +9055,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText_params params = { @@ -9068,7 +9068,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays_params params = { @@ -9081,7 +9081,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays( return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValueTag_params params = { @@ -9134,7 +9134,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartItemUpdate(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle_params params = { @@ -9147,7 +9147,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle(struct w return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription_params params = { @@ -9160,7 +9160,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage_params params = { @@ -9173,7 +9173,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata_params params = { @@ -9186,7 +9186,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata(struc return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility_params params = { @@ -9199,7 +9199,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags_params params = { @@ -9212,7 +9212,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags(struct w_ return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent_params params = { @@ -9225,7 +9225,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview_params params = { @@ -9238,7 +9238,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUpload(struct w_steam_iface *_this, uint64_t handle, bool bAllowLegacyUpload) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUpload(struct w_steam_iface *_this, uint64_t handle, int8_t bAllowLegacyUpload) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUpload_params params = { @@ -9251,7 +9251,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUpload( return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAllItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAllItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAllItemKeyValueTags_params params = { @@ -9263,7 +9263,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAllItemKeyValue return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTags_params params = { @@ -9276,7 +9276,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTag return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag_params params = { @@ -9290,7 +9290,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile_params params = { @@ -9304,7 +9304,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo_params params = { @@ -9317,7 +9317,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile_params params = { @@ -9331,7 +9331,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVideo_params params = { @@ -9345,7 +9345,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVide return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemPreview_params params = { @@ -9385,7 +9385,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemUpdateProg return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bVoteUp) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetUserItemVote_params params = { @@ -9496,7 +9496,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemState(stru return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo_params params = { @@ -9512,7 +9512,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo_params params = { @@ -9526,7 +9526,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bHighPriority) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem_params params = { @@ -9539,7 +9539,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem(struct w return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameServer_params params = { @@ -9552,7 +9552,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameS return params._ret; } -void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SuspendDownloads(struct w_steam_iface *_this, bool bSuspend) +void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SuspendDownloads(struct w_steam_iface *_this, int8_t bSuspend) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SuspendDownloads_params params = { @@ -9927,7 +9927,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SendQueryUGCReque return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult_params params = { @@ -9941,7 +9941,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL_params params = { @@ -9956,7 +9956,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata_params params = { @@ -9971,7 +9971,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren_params params = { @@ -9986,7 +9986,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatistic_params params = { @@ -10014,7 +10014,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumAdd return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAdditionalPreview_params params = { @@ -10046,7 +10046,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumKey return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_params params = { @@ -10064,7 +10064,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTa return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_2(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_2(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_2_params params = { @@ -10080,7 +10080,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTa return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_ReleaseQueryUGCRequest_params params = { @@ -10092,7 +10092,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_ReleaseQueryUGCReques return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag_params params = { @@ -10105,7 +10105,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup(struct w_steam_iface *_this, uint64_t handle, const w_SteamParamStringArray_t *pTagGroups) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup(struct w_steam_iface *_this, uint64_t handle, const w_SteamParamStringArray_t *pTagGroups) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup_params params = { @@ -10118,7 +10118,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag_params params = { @@ -10131,7 +10131,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, bool bReturnOnlyIDs) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs_params params = { @@ -10144,7 +10144,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs(stru return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, bool bReturnKeyValueTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTags_params params = { @@ -10157,7 +10157,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTags return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescription_params params = { @@ -10170,7 +10170,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescript return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, bool bReturnMetadata) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnMetadata) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata_params params = { @@ -10183,7 +10183,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, bool bReturnChildren) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnChildren) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren_params params = { @@ -10196,7 +10196,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, bool bReturnAdditionalPreviews) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditionalPreviews_params params = { @@ -10209,7 +10209,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditionalPr return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly_params params = { @@ -10222,7 +10222,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStats_params params = { @@ -10235,7 +10235,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStat return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage_params params = { @@ -10248,7 +10248,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage(struct w_ return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedResponse_params params = { @@ -10261,7 +10261,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedRespons return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilter_params params = { @@ -10274,7 +10274,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilte return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag_params params = { @@ -10287,7 +10287,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText_params params = { @@ -10300,7 +10300,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays_params params = { @@ -10313,7 +10313,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays( return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValueTag_params params = { @@ -10366,7 +10366,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartItemUpdate(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle_params params = { @@ -10379,7 +10379,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle(struct w return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription_params params = { @@ -10392,7 +10392,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage_params params = { @@ -10405,7 +10405,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata_params params = { @@ -10418,7 +10418,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata(struc return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility_params params = { @@ -10431,7 +10431,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags_params params = { @@ -10444,7 +10444,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags(struct w_ return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent_params params = { @@ -10457,7 +10457,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview_params params = { @@ -10470,7 +10470,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUpload(struct w_steam_iface *_this, uint64_t handle, bool bAllowLegacyUpload) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUpload(struct w_steam_iface *_this, uint64_t handle, int8_t bAllowLegacyUpload) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUpload_params params = { @@ -10483,7 +10483,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUpload( return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAllItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAllItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAllItemKeyValueTags_params params = { @@ -10495,7 +10495,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAllItemKeyValue return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTags_params params = { @@ -10508,7 +10508,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTag return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag_params params = { @@ -10522,7 +10522,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile_params params = { @@ -10536,7 +10536,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo_params params = { @@ -10549,7 +10549,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile_params params = { @@ -10563,7 +10563,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVideo_params params = { @@ -10577,7 +10577,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVide return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemPreview_params params = { @@ -10617,7 +10617,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemUpdateProg return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bVoteUp) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetUserItemVote_params params = { @@ -10728,7 +10728,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemState(stru return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo_params params = { @@ -10744,7 +10744,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo_params params = { @@ -10758,7 +10758,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bHighPriority) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem_params params = { @@ -10771,7 +10771,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem(struct w return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameServer_params params = { @@ -10784,7 +10784,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameS return params._ret; } -void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SuspendDownloads(struct w_steam_iface *_this, bool bSuspend) +void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SuspendDownloads(struct w_steam_iface *_this, int8_t bSuspend) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SuspendDownloads_params params = { @@ -11165,7 +11165,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SendQueryUGCReque return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult_params params = { @@ -11192,7 +11192,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumTag return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag_params params = { @@ -11208,7 +11208,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplayName(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplayName(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplayName_params params = { @@ -11224,7 +11224,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplay return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL_params params = { @@ -11239,7 +11239,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata_params params = { @@ -11254,7 +11254,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren_params params = { @@ -11269,7 +11269,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatistic_params params = { @@ -11297,7 +11297,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumAdd return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAdditionalPreview_params params = { @@ -11329,7 +11329,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumKey return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_params params = { @@ -11347,7 +11347,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTa return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_2(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_2(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_2_params params = { @@ -11363,7 +11363,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTa return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ReleaseQueryUGCRequest_params params = { @@ -11375,7 +11375,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_ReleaseQueryUGCReques return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag_params params = { @@ -11388,7 +11388,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup(struct w_steam_iface *_this, uint64_t handle, const w_SteamParamStringArray_t *pTagGroups) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup(struct w_steam_iface *_this, uint64_t handle, const w_SteamParamStringArray_t *pTagGroups) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup_params params = { @@ -11401,7 +11401,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag_params params = { @@ -11414,7 +11414,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, bool bReturnOnlyIDs) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs_params params = { @@ -11427,7 +11427,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs(stru return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, bool bReturnKeyValueTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTags_params params = { @@ -11440,7 +11440,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTags return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescription_params params = { @@ -11453,7 +11453,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescript return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, bool bReturnMetadata) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnMetadata) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata_params params = { @@ -11466,7 +11466,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, bool bReturnChildren) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnChildren) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren_params params = { @@ -11479,7 +11479,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, bool bReturnAdditionalPreviews) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditionalPreviews_params params = { @@ -11492,7 +11492,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditionalPr return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly_params params = { @@ -11505,7 +11505,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStats_params params = { @@ -11518,7 +11518,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStat return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage_params params = { @@ -11531,7 +11531,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage(struct w_ return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedResponse_params params = { @@ -11544,7 +11544,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedRespons return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilter_params params = { @@ -11557,7 +11557,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilte return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag_params params = { @@ -11570,7 +11570,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText_params params = { @@ -11583,7 +11583,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays_params params = { @@ -11596,7 +11596,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays( return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValueTag_params params = { @@ -11649,7 +11649,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartItemUpdate(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle_params params = { @@ -11662,7 +11662,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle(struct w return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription_params params = { @@ -11675,7 +11675,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage_params params = { @@ -11688,7 +11688,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata_params params = { @@ -11701,7 +11701,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata(struc return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility_params params = { @@ -11714,7 +11714,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags_params params = { @@ -11727,7 +11727,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags(struct w_ return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent_params params = { @@ -11740,7 +11740,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview_params params = { @@ -11753,7 +11753,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUpload(struct w_steam_iface *_this, uint64_t handle, bool bAllowLegacyUpload) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUpload(struct w_steam_iface *_this, uint64_t handle, int8_t bAllowLegacyUpload) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUpload_params params = { @@ -11766,7 +11766,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUpload( return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAllItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAllItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAllItemKeyValueTags_params params = { @@ -11778,7 +11778,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAllItemKeyValue return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTags_params params = { @@ -11791,7 +11791,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTag return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag_params params = { @@ -11805,7 +11805,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile_params params = { @@ -11819,7 +11819,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo_params params = { @@ -11832,7 +11832,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile_params params = { @@ -11846,7 +11846,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVideo_params params = { @@ -11860,7 +11860,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVide return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemPreview_params params = { @@ -11900,7 +11900,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemUpdateProg return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bVoteUp) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetUserItemVote_params params = { @@ -12011,7 +12011,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemState(stru return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo_params params = { @@ -12027,7 +12027,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo_params params = { @@ -12041,7 +12041,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bHighPriority) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem_params params = { @@ -12054,7 +12054,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem(struct w return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameServer_params params = { @@ -12067,7 +12067,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameS return params._ret; } -void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SuspendDownloads(struct w_steam_iface *_this, bool bSuspend) +void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SuspendDownloads(struct w_steam_iface *_this, int8_t bSuspend) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SuspendDownloads_params params = { @@ -12191,7 +12191,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_DeleteItem(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_ShowWorkshopEULA(struct w_steam_iface *_this) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_ShowWorkshopEULA(struct w_steam_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ShowWorkshopEULA_params params = { @@ -12477,7 +12477,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SendQueryUGCReque return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult_params params = { @@ -12504,7 +12504,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumTag return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag_params params = { @@ -12520,7 +12520,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplayName(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplayName(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplayName_params params = { @@ -12536,7 +12536,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplay return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL_params params = { @@ -12551,7 +12551,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata_params params = { @@ -12566,7 +12566,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren_params params = { @@ -12581,7 +12581,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic_params params = { @@ -12609,7 +12609,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumAdd return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview_params params = { @@ -12641,7 +12641,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumKey return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_params params = { @@ -12659,7 +12659,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTa return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_2(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_2(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_2_params params = { @@ -12675,7 +12675,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTa return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ReleaseQueryUGCRequest_params params = { @@ -12687,7 +12687,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_ReleaseQueryUGCReques return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag_params params = { @@ -12700,7 +12700,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup(struct w_steam_iface *_this, uint64_t handle, const w_SteamParamStringArray_t *pTagGroups) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup(struct w_steam_iface *_this, uint64_t handle, const w_SteamParamStringArray_t *pTagGroups) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup_params params = { @@ -12713,7 +12713,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag_params params = { @@ -12726,7 +12726,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, bool bReturnOnlyIDs) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs_params params = { @@ -12739,7 +12739,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs(stru return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, bool bReturnKeyValueTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTags_params params = { @@ -12752,7 +12752,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTags return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescription_params params = { @@ -12765,7 +12765,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescript return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, bool bReturnMetadata) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnMetadata) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata_params params = { @@ -12778,7 +12778,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, bool bReturnChildren) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnChildren) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren_params params = { @@ -12791,7 +12791,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, bool bReturnAdditionalPreviews) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditionalPreviews_params params = { @@ -12804,7 +12804,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditionalPr return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly_params params = { @@ -12817,7 +12817,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStats_params params = { @@ -12830,7 +12830,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStat return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage_params params = { @@ -12843,7 +12843,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage(struct w_ return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedResponse_params params = { @@ -12856,7 +12856,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedRespons return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilter_params params = { @@ -12869,7 +12869,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilte return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag_params params = { @@ -12882,7 +12882,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText_params params = { @@ -12895,7 +12895,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays_params params = { @@ -12908,7 +12908,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays( return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRange(struct w_steam_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRange(struct w_steam_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRange_params params = { @@ -12922,7 +12922,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRan return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRange(struct w_steam_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRange(struct w_steam_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRange_params params = { @@ -12936,7 +12936,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRan return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValueTag_params params = { @@ -12989,7 +12989,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartItemUpdate(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle_params params = { @@ -13002,7 +13002,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle(struct w return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription_params params = { @@ -13015,7 +13015,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage_params params = { @@ -13028,7 +13028,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata_params params = { @@ -13041,7 +13041,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata(struc return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility_params params = { @@ -13054,7 +13054,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags_params params = { @@ -13067,7 +13067,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags(struct w_ return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent_params params = { @@ -13080,7 +13080,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview_params params = { @@ -13093,7 +13093,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUpload(struct w_steam_iface *_this, uint64_t handle, bool bAllowLegacyUpload) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUpload(struct w_steam_iface *_this, uint64_t handle, int8_t bAllowLegacyUpload) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUpload_params params = { @@ -13106,7 +13106,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUpload( return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAllItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAllItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAllItemKeyValueTags_params params = { @@ -13118,7 +13118,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAllItemKeyValue return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTags_params params = { @@ -13131,7 +13131,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTag return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag_params params = { @@ -13145,7 +13145,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile_params params = { @@ -13159,7 +13159,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo_params params = { @@ -13172,7 +13172,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile_params params = { @@ -13186,7 +13186,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVideo_params params = { @@ -13200,7 +13200,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVide return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemPreview_params params = { @@ -13240,7 +13240,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemUpdateProg return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bVoteUp) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetUserItemVote_params params = { @@ -13351,7 +13351,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemState(stru return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo_params params = { @@ -13367,7 +13367,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo_params params = { @@ -13381,7 +13381,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bHighPriority) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem_params params = { @@ -13394,7 +13394,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem(struct w return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameServer_params params = { @@ -13407,7 +13407,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameS return params._ret; } -void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SuspendDownloads(struct w_steam_iface *_this, bool bSuspend) +void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SuspendDownloads(struct w_steam_iface *_this, int8_t bSuspend) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SuspendDownloads_params params = { @@ -13531,7 +13531,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_DeleteItem(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_ShowWorkshopEULA(struct w_steam_iface *_this) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_ShowWorkshopEULA(struct w_steam_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ShowWorkshopEULA_params params = { @@ -13822,7 +13822,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SendQueryUGCReque return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult_params params = { @@ -13849,7 +13849,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumTag return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag_params params = { @@ -13865,7 +13865,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplayName(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplayName(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplayName_params params = { @@ -13881,7 +13881,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplay return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL_params params = { @@ -13896,7 +13896,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata_params params = { @@ -13911,7 +13911,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren_params params = { @@ -13926,7 +13926,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatistic_params params = { @@ -13954,7 +13954,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumAdd return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAdditionalPreview_params params = { @@ -13986,7 +13986,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumKey return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_params params = { @@ -14004,7 +14004,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTa return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_2(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_2(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_2_params params = { @@ -14035,7 +14035,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCConten return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ReleaseQueryUGCRequest_params params = { @@ -14047,7 +14047,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_ReleaseQueryUGCReques return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag_params params = { @@ -14060,7 +14060,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup(struct w_steam_iface *_this, uint64_t handle, const w_SteamParamStringArray_t *pTagGroups) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup(struct w_steam_iface *_this, uint64_t handle, const w_SteamParamStringArray_t *pTagGroups) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup_params params = { @@ -14073,7 +14073,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag_params params = { @@ -14086,7 +14086,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, bool bReturnOnlyIDs) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs_params params = { @@ -14099,7 +14099,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs(stru return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, bool bReturnKeyValueTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTags_params params = { @@ -14112,7 +14112,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTags return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescription_params params = { @@ -14125,7 +14125,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescript return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, bool bReturnMetadata) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnMetadata) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata_params params = { @@ -14138,7 +14138,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, bool bReturnChildren) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnChildren) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren_params params = { @@ -14151,7 +14151,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, bool bReturnAdditionalPreviews) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditionalPreviews_params params = { @@ -14164,7 +14164,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditionalPr return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly_params params = { @@ -14177,7 +14177,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStats_params params = { @@ -14190,7 +14190,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStat return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage_params params = { @@ -14203,7 +14203,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage(struct w_ return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedResponse_params params = { @@ -14216,7 +14216,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedRespons return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilter_params params = { @@ -14229,7 +14229,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilte return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag_params params = { @@ -14242,7 +14242,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText_params params = { @@ -14255,7 +14255,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays_params params = { @@ -14268,7 +14268,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays( return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRange(struct w_steam_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRange(struct w_steam_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRange_params params = { @@ -14282,7 +14282,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRan return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRange(struct w_steam_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRange(struct w_steam_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRange_params params = { @@ -14296,7 +14296,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRan return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValueTag_params params = { @@ -14349,7 +14349,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartItemUpdate(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle_params params = { @@ -14362,7 +14362,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle(struct w return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription_params params = { @@ -14375,7 +14375,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage_params params = { @@ -14388,7 +14388,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata_params params = { @@ -14401,7 +14401,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata(struc return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility_params params = { @@ -14414,7 +14414,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags_params params = { @@ -14427,7 +14427,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags(struct w_ return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent_params params = { @@ -14440,7 +14440,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview_params params = { @@ -14453,7 +14453,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUpload(struct w_steam_iface *_this, uint64_t handle, bool bAllowLegacyUpload) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUpload(struct w_steam_iface *_this, uint64_t handle, int8_t bAllowLegacyUpload) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUpload_params params = { @@ -14466,7 +14466,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUpload( return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAllItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAllItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAllItemKeyValueTags_params params = { @@ -14478,7 +14478,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAllItemKeyValue return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTags_params params = { @@ -14491,7 +14491,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTag return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag_params params = { @@ -14505,7 +14505,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile_params params = { @@ -14519,7 +14519,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo_params params = { @@ -14532,7 +14532,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile_params params = { @@ -14546,7 +14546,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVideo_params params = { @@ -14560,7 +14560,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVide return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview_params params = { @@ -14573,7 +14573,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor(struct w_steam_iface *_this, uint64_t handle, uint32_t descid) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor(struct w_steam_iface *_this, uint64_t handle, uint32_t descid) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor_params params = { @@ -14586,7 +14586,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor( return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveContentDescriptor(struct w_steam_iface *_this, uint64_t handle, uint32_t descid) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveContentDescriptor(struct w_steam_iface *_this, uint64_t handle, uint32_t descid) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveContentDescriptor_params params = { @@ -14626,7 +14626,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemUpdateProg return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bVoteUp) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetUserItemVote_params params = { @@ -14737,7 +14737,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemState(stru return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo_params params = { @@ -14753,7 +14753,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo_params params = { @@ -14767,7 +14767,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bHighPriority) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem_params params = { @@ -14780,7 +14780,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem(struct w return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameServer_params params = { @@ -14793,7 +14793,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameS return params._ret; } -void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SuspendDownloads(struct w_steam_iface *_this, bool bSuspend) +void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SuspendDownloads(struct w_steam_iface *_this, int8_t bSuspend) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SuspendDownloads_params params = { @@ -14917,7 +14917,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_DeleteItem(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_ShowWorkshopEULA(struct w_steam_iface *_this) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_ShowWorkshopEULA(struct w_steam_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ShowWorkshopEULA_params params = { @@ -15212,7 +15212,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SendQueryUGCReque return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult_params params = { @@ -15239,7 +15239,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumTag return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag_params params = { @@ -15255,7 +15255,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplayName(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplayName(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplayName_params params = { @@ -15271,7 +15271,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplay return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL_params params = { @@ -15286,7 +15286,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata_params params = { @@ -15301,7 +15301,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren_params params = { @@ -15316,7 +15316,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatistic_params params = { @@ -15344,7 +15344,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumAdd return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAdditionalPreview_params params = { @@ -15376,7 +15376,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumKey return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_params params = { @@ -15394,7 +15394,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTa return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_2(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_2(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_2_params params = { @@ -15425,7 +15425,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCConten return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ReleaseQueryUGCRequest_params params = { @@ -15437,7 +15437,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_ReleaseQueryUGCReques return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag_params params = { @@ -15450,7 +15450,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup(struct w_steam_iface *_this, uint64_t handle, const w_SteamParamStringArray_t *pTagGroups) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup(struct w_steam_iface *_this, uint64_t handle, const w_SteamParamStringArray_t *pTagGroups) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup_params params = { @@ -15463,7 +15463,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag_params params = { @@ -15476,7 +15476,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, bool bReturnOnlyIDs) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs_params params = { @@ -15489,7 +15489,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs(stru return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, bool bReturnKeyValueTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTags_params params = { @@ -15502,7 +15502,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTags return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, bool bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescription_params params = { @@ -15515,7 +15515,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescript return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, bool bReturnMetadata) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnMetadata) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata_params params = { @@ -15528,7 +15528,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, bool bReturnChildren) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnChildren) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren_params params = { @@ -15541,7 +15541,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, bool bReturnAdditionalPreviews) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditionalPreviews_params params = { @@ -15554,7 +15554,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditionalPr return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, bool bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly_params params = { @@ -15567,7 +15567,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStats_params params = { @@ -15580,7 +15580,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStat return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage_params params = { @@ -15593,7 +15593,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage(struct w_ return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedResponse_params params = { @@ -15606,7 +15606,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedRespons return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilter_params params = { @@ -15619,7 +15619,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilte return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, bool bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag_params params = { @@ -15632,7 +15632,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText_params params = { @@ -15645,7 +15645,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays_params params = { @@ -15658,7 +15658,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays( return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRange(struct w_steam_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRange(struct w_steam_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRange_params params = { @@ -15672,7 +15672,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRan return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRange(struct w_steam_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRange(struct w_steam_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRange_params params = { @@ -15686,7 +15686,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRan return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValueTag_params params = { @@ -15739,7 +15739,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartItemUpdate(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle_params params = { @@ -15752,7 +15752,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle(struct w return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription_params params = { @@ -15765,7 +15765,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage_params params = { @@ -15778,7 +15778,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata_params params = { @@ -15791,7 +15791,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata(struc return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility_params params = { @@ -15804,7 +15804,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags, bool bAllowAdminTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags, int8_t bAllowAdminTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags_params params = { @@ -15818,7 +15818,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags(struct w_ return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent_params params = { @@ -15831,7 +15831,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview_params params = { @@ -15844,7 +15844,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUpload(struct w_steam_iface *_this, uint64_t handle, bool bAllowLegacyUpload) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUpload(struct w_steam_iface *_this, uint64_t handle, int8_t bAllowLegacyUpload) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUpload_params params = { @@ -15857,7 +15857,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUpload( return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAllItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAllItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAllItemKeyValueTags_params params = { @@ -15869,7 +15869,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAllItemKeyValue return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTags_params params = { @@ -15882,7 +15882,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTag return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag_params params = { @@ -15896,7 +15896,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile_params params = { @@ -15910,7 +15910,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo_params params = { @@ -15923,7 +15923,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile_params params = { @@ -15937,7 +15937,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVideo_params params = { @@ -15951,7 +15951,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVide return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview_params params = { @@ -15964,7 +15964,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview(str return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor(struct w_steam_iface *_this, uint64_t handle, uint32_t descid) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor(struct w_steam_iface *_this, uint64_t handle, uint32_t descid) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor_params params = { @@ -15977,7 +15977,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor( return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveContentDescriptor(struct w_steam_iface *_this, uint64_t handle, uint32_t descid) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveContentDescriptor(struct w_steam_iface *_this, uint64_t handle, uint32_t descid) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveContentDescriptor_params params = { @@ -16017,7 +16017,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemUpdateProg return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bVoteUp) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetUserItemVote_params params = { @@ -16128,7 +16128,7 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemState(stru return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo_params params = { @@ -16144,7 +16144,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo(st return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo_params params = { @@ -16158,7 +16158,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo(s return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, bool bHighPriority) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem_params params = { @@ -16171,7 +16171,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem(struct w return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameServer_params params = { @@ -16184,7 +16184,7 @@ bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameS return params._ret; } -void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SuspendDownloads(struct w_steam_iface *_this, bool bSuspend) +void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SuspendDownloads(struct w_steam_iface *_this, int8_t bSuspend) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SuspendDownloads_params params = { @@ -16308,7 +16308,7 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_DeleteItem(struct return params._ret; } -bool __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_ShowWorkshopEULA(struct w_steam_iface *_this) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_ShowWorkshopEULA(struct w_steam_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ShowWorkshopEULA_params params = { diff --git a/lsteamclient/winISteamUnifiedMessages.c b/lsteamclient/winISteamUnifiedMessages.c index 22ec4a43..52e7f966 100644 --- a/lsteamclient/winISteamUnifiedMessages.c +++ b/lsteamclient/winISteamUnifiedMessages.c @@ -24,7 +24,7 @@ uint64_t __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERS return params._ret; } -bool __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseInfo(struct w_steam_iface *_this, uint64_t hHandle, uint32_t *punResponseSize, uint32_t *peResult) +int8_t __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseInfo(struct w_steam_iface *_this, uint64_t hHandle, uint32_t *punResponseSize, uint32_t *peResult) { struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseInfo_params params = { @@ -38,7 +38,7 @@ bool __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseData(struct w_steam_iface *_this, uint64_t hHandle, void *pResponseBuffer, uint32_t unResponseBufferSize, bool bAutoRelease) +int8_t __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseData(struct w_steam_iface *_this, uint64_t hHandle, void *pResponseBuffer, uint32_t unResponseBufferSize, int8_t bAutoRelease) { struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseData_params params = { @@ -53,7 +53,7 @@ bool __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_ReleaseMethod(struct w_steam_iface *_this, uint64_t hHandle) +int8_t __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_ReleaseMethod(struct w_steam_iface *_this, uint64_t hHandle) { struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_ReleaseMethod_params params = { @@ -65,7 +65,7 @@ bool __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION0 return params._ret; } -bool __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotification(struct w_steam_iface *_this, const char *pchServiceNotification, const void *pNotificationBuffer, uint32_t unNotificationBufferSize) +int8_t __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotification(struct w_steam_iface *_this, const char *pchServiceNotification, const void *pNotificationBuffer, uint32_t unNotificationBufferSize) { struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotification_params params = { diff --git a/lsteamclient/winISteamUser.c b/lsteamclient/winISteamUser.c index a8896a57..fe50b280 100644 --- a/lsteamclient/winISteamUser.c +++ b/lsteamclient/winISteamUser.c @@ -62,7 +62,7 @@ void __thiscall winISteamUser_SteamUser004_LogOff(struct w_steam_iface *_this) STEAMCLIENT_CALL( ISteamUser_SteamUser004_LogOff, ¶ms ); } -bool __thiscall winISteamUser_SteamUser004_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser004_BLoggedOn(struct w_steam_iface *_this) { struct ISteamUser_SteamUser004_BLoggedOn_params params = { @@ -84,7 +84,7 @@ uint32_t __thiscall winISteamUser_SteamUser004_GetLogonState(struct w_steam_ifac return params._ret; } -bool __thiscall winISteamUser_SteamUser004_BConnected(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser004_BConnected(struct w_steam_iface *_this) { struct ISteamUser_SteamUser004_BConnected_params params = { @@ -107,7 +107,7 @@ CSteamID * __thiscall winISteamUser_SteamUser004_GetSteamID(struct w_steam_iface return params._ret; } -bool __thiscall winISteamUser_SteamUser004_IsVACBanned(struct w_steam_iface *_this, int32_t nGameID) +int8_t __thiscall winISteamUser_SteamUser004_IsVACBanned(struct w_steam_iface *_this, int32_t nGameID) { struct ISteamUser_SteamUser004_IsVACBanned_params params = { @@ -119,7 +119,7 @@ bool __thiscall winISteamUser_SteamUser004_IsVACBanned(struct w_steam_iface *_th return params._ret; } -bool __thiscall winISteamUser_SteamUser004_RequireShowVACBannedMessage(struct w_steam_iface *_this, int32_t nGameID) +int8_t __thiscall winISteamUser_SteamUser004_RequireShowVACBannedMessage(struct w_steam_iface *_this, int32_t nGameID) { struct ISteamUser_SteamUser004_RequireShowVACBannedMessage_params params = { @@ -202,7 +202,7 @@ void __thiscall winISteamUser_SteamUser004_AddServerNetAddress(struct w_steam_if STEAMCLIENT_CALL( ISteamUser_SteamUser004_AddServerNetAddress, ¶ms ); } -bool __thiscall winISteamUser_SteamUser004_SetEmail(struct w_steam_iface *_this, const char *pchEmail) +int8_t __thiscall winISteamUser_SteamUser004_SetEmail(struct w_steam_iface *_this, const char *pchEmail) { struct ISteamUser_SteamUser004_SetEmail_params params = { @@ -227,7 +227,7 @@ int32_t __thiscall winISteamUser_SteamUser004_GetSteamGameConnectToken(struct w_ return params._ret; } -bool __thiscall winISteamUser_SteamUser004_SetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUser_SteamUser004_SetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, const char *pchValue) { struct ISteamUser_SteamUser004_SetRegistryString_params params = { @@ -241,7 +241,7 @@ bool __thiscall winISteamUser_SteamUser004_SetRegistryString(struct w_steam_ifac return params._ret; } -bool __thiscall winISteamUser_SteamUser004_GetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, char *pchValue, int32_t cbValue) +int8_t __thiscall winISteamUser_SteamUser004_GetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, char *pchValue, int32_t cbValue) { struct ISteamUser_SteamUser004_GetRegistryString_params params = { @@ -256,7 +256,7 @@ bool __thiscall winISteamUser_SteamUser004_GetRegistryString(struct w_steam_ifac return params._ret; } -bool __thiscall winISteamUser_SteamUser004_SetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t iValue) +int8_t __thiscall winISteamUser_SteamUser004_SetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t iValue) { struct ISteamUser_SteamUser004_SetRegistryInt_params params = { @@ -270,7 +270,7 @@ bool __thiscall winISteamUser_SteamUser004_SetRegistryInt(struct w_steam_iface * return params._ret; } -bool __thiscall winISteamUser_SteamUser004_GetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t *piValue) +int8_t __thiscall winISteamUser_SteamUser004_GetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t *piValue) { struct ISteamUser_SteamUser004_GetRegistryInt_params params = { @@ -284,7 +284,7 @@ bool __thiscall winISteamUser_SteamUser004_GetRegistryInt(struct w_steam_iface * return params._ret; } -int32_t __thiscall winISteamUser_SteamUser004_InitiateGameConnection(struct w_steam_iface *_this, void *pBlob, int32_t cbMaxBlob, CSteamID steamID, int32_t nGameAppID, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) +int32_t __thiscall winISteamUser_SteamUser004_InitiateGameConnection(struct w_steam_iface *_this, void *pBlob, int32_t cbMaxBlob, CSteamID steamID, int32_t nGameAppID, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser004_InitiateGameConnection_params params = { @@ -324,7 +324,7 @@ void __thiscall winISteamUser_SteamUser004_SetSelfAsPrimaryChatDestination(struc STEAMCLIENT_CALL( ISteamUser_SteamUser004_SetSelfAsPrimaryChatDestination, ¶ms ); } -bool __thiscall winISteamUser_SteamUser004_IsPrimaryChatDestination(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser004_IsPrimaryChatDestination(struct w_steam_iface *_this) { struct ISteamUser_SteamUser004_IsPrimaryChatDestination_params params = { @@ -462,7 +462,7 @@ void __thiscall winISteamUser_SteamUser005_LogOff(struct w_steam_iface *_this) STEAMCLIENT_CALL( ISteamUser_SteamUser005_LogOff, ¶ms ); } -bool __thiscall winISteamUser_SteamUser005_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser005_BLoggedOn(struct w_steam_iface *_this) { struct ISteamUser_SteamUser005_BLoggedOn_params params = { @@ -484,7 +484,7 @@ uint32_t __thiscall winISteamUser_SteamUser005_GetLogonState(struct w_steam_ifac return params._ret; } -bool __thiscall winISteamUser_SteamUser005_BConnected(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser005_BConnected(struct w_steam_iface *_this) { struct ISteamUser_SteamUser005_BConnected_params params = { @@ -507,7 +507,7 @@ CSteamID * __thiscall winISteamUser_SteamUser005_GetSteamID(struct w_steam_iface return params._ret; } -bool __thiscall winISteamUser_SteamUser005_IsVACBanned(struct w_steam_iface *_this, int32_t nGameID) +int8_t __thiscall winISteamUser_SteamUser005_IsVACBanned(struct w_steam_iface *_this, int32_t nGameID) { struct ISteamUser_SteamUser005_IsVACBanned_params params = { @@ -519,7 +519,7 @@ bool __thiscall winISteamUser_SteamUser005_IsVACBanned(struct w_steam_iface *_th return params._ret; } -bool __thiscall winISteamUser_SteamUser005_RequireShowVACBannedMessage(struct w_steam_iface *_this, int32_t nAppID) +int8_t __thiscall winISteamUser_SteamUser005_RequireShowVACBannedMessage(struct w_steam_iface *_this, int32_t nAppID) { struct ISteamUser_SteamUser005_RequireShowVACBannedMessage_params params = { @@ -566,7 +566,7 @@ void __thiscall winISteamUser_SteamUser005_AddServerNetAddress(struct w_steam_if STEAMCLIENT_CALL( ISteamUser_SteamUser005_AddServerNetAddress, ¶ms ); } -bool __thiscall winISteamUser_SteamUser005_SetEmail(struct w_steam_iface *_this, const char *pchEmail) +int8_t __thiscall winISteamUser_SteamUser005_SetEmail(struct w_steam_iface *_this, const char *pchEmail) { struct ISteamUser_SteamUser005_SetEmail_params params = { @@ -578,7 +578,7 @@ bool __thiscall winISteamUser_SteamUser005_SetEmail(struct w_steam_iface *_this, return params._ret; } -bool __thiscall winISteamUser_SteamUser005_SetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUser_SteamUser005_SetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, const char *pchValue) { struct ISteamUser_SteamUser005_SetRegistryString_params params = { @@ -592,7 +592,7 @@ bool __thiscall winISteamUser_SteamUser005_SetRegistryString(struct w_steam_ifac return params._ret; } -bool __thiscall winISteamUser_SteamUser005_GetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, char *pchValue, int32_t cbValue) +int8_t __thiscall winISteamUser_SteamUser005_GetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, char *pchValue, int32_t cbValue) { struct ISteamUser_SteamUser005_GetRegistryString_params params = { @@ -607,7 +607,7 @@ bool __thiscall winISteamUser_SteamUser005_GetRegistryString(struct w_steam_ifac return params._ret; } -bool __thiscall winISteamUser_SteamUser005_SetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t iValue) +int8_t __thiscall winISteamUser_SteamUser005_SetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t iValue) { struct ISteamUser_SteamUser005_SetRegistryInt_params params = { @@ -621,7 +621,7 @@ bool __thiscall winISteamUser_SteamUser005_SetRegistryInt(struct w_steam_iface * return params._ret; } -bool __thiscall winISteamUser_SteamUser005_GetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t *piValue) +int8_t __thiscall winISteamUser_SteamUser005_GetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t *piValue) { struct ISteamUser_SteamUser005_GetRegistryInt_params params = { @@ -635,7 +635,7 @@ bool __thiscall winISteamUser_SteamUser005_GetRegistryInt(struct w_steam_iface * return params._ret; } -int32_t __thiscall winISteamUser_SteamUser005_InitiateGameConnection(struct w_steam_iface *_this, void *pBlob, int32_t cbMaxBlob, CSteamID steamID, CGameID gameID, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) +int32_t __thiscall winISteamUser_SteamUser005_InitiateGameConnection(struct w_steam_iface *_this, void *pBlob, int32_t cbMaxBlob, CSteamID steamID, CGameID gameID, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser005_InitiateGameConnection_params params = { @@ -675,7 +675,7 @@ void __thiscall winISteamUser_SteamUser005_SetSelfAsPrimaryChatDestination(struc STEAMCLIENT_CALL( ISteamUser_SteamUser005_SetSelfAsPrimaryChatDestination, ¶ms ); } -bool __thiscall winISteamUser_SteamUser005_IsPrimaryChatDestination(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser005_IsPrimaryChatDestination(struct w_steam_iface *_this) { struct ISteamUser_SteamUser005_IsPrimaryChatDestination_params params = { @@ -697,7 +697,7 @@ void __thiscall winISteamUser_SteamUser005_RequestLegacyCDKey(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser005_RequestLegacyCDKey, ¶ms ); } -bool __thiscall winISteamUser_SteamUser005_SendGuestPassByEmail(struct w_steam_iface *_this, const char *pchEmailAccount, uint64_t gidGuestPassID, bool bResending) +int8_t __thiscall winISteamUser_SteamUser005_SendGuestPassByEmail(struct w_steam_iface *_this, const char *pchEmailAccount, uint64_t gidGuestPassID, int8_t bResending) { struct ISteamUser_SteamUser005_SendGuestPassByEmail_params params = { @@ -711,7 +711,7 @@ bool __thiscall winISteamUser_SteamUser005_SendGuestPassByEmail(struct w_steam_i return params._ret; } -bool __thiscall winISteamUser_SteamUser005_SendGuestPassByAccountID(struct w_steam_iface *_this, uint32_t uAccountID, uint64_t gidGuestPassID, bool bResending) +int8_t __thiscall winISteamUser_SteamUser005_SendGuestPassByAccountID(struct w_steam_iface *_this, uint32_t uAccountID, uint64_t gidGuestPassID, int8_t bResending) { struct ISteamUser_SteamUser005_SendGuestPassByAccountID_params params = { @@ -725,7 +725,7 @@ bool __thiscall winISteamUser_SteamUser005_SendGuestPassByAccountID(struct w_ste return params._ret; } -bool __thiscall winISteamUser_SteamUser005_AckGuestPass(struct w_steam_iface *_this, const char *pchGuestPassCode) +int8_t __thiscall winISteamUser_SteamUser005_AckGuestPass(struct w_steam_iface *_this, const char *pchGuestPassCode) { struct ISteamUser_SteamUser005_AckGuestPass_params params = { @@ -737,7 +737,7 @@ bool __thiscall winISteamUser_SteamUser005_AckGuestPass(struct w_steam_iface *_t return params._ret; } -bool __thiscall winISteamUser_SteamUser005_RedeemGuestPass(struct w_steam_iface *_this, const char *pchGuestPassCode) +int8_t __thiscall winISteamUser_SteamUser005_RedeemGuestPass(struct w_steam_iface *_this, const char *pchGuestPassCode) { struct ISteamUser_SteamUser005_RedeemGuestPass_params params = { @@ -782,7 +782,7 @@ uint32_t __thiscall winISteamUser_SteamUser005_GetGuestPassLastUpdateTime(struct return params._ret; } -bool __thiscall winISteamUser_SteamUser005_GetGuestPassToGiveInfo(struct w_steam_iface *_this, uint32_t nPassIndex, uint64_t *pgidGuestPassID, uint32_t *pnPackageID, uint32_t *pRTime32Created, uint32_t *pRTime32Expiration, uint32_t *pRTime32Sent, uint32_t *pRTime32Redeemed, char *pchRecipientAddress, int32_t cRecipientAddressSize) +int8_t __thiscall winISteamUser_SteamUser005_GetGuestPassToGiveInfo(struct w_steam_iface *_this, uint32_t nPassIndex, uint64_t *pgidGuestPassID, uint32_t *pnPackageID, uint32_t *pRTime32Created, uint32_t *pRTime32Expiration, uint32_t *pRTime32Sent, uint32_t *pRTime32Redeemed, char *pchRecipientAddress, int32_t cRecipientAddressSize) { struct ISteamUser_SteamUser005_GetGuestPassToGiveInfo_params params = { @@ -802,7 +802,7 @@ bool __thiscall winISteamUser_SteamUser005_GetGuestPassToGiveInfo(struct w_steam return params._ret; } -bool __thiscall winISteamUser_SteamUser005_GetGuestPassToRedeemInfo(struct w_steam_iface *_this, uint32_t nPassIndex, uint64_t *pgidGuestPassID, uint32_t *pnPackageID, uint32_t *pRTime32Created, uint32_t *pRTime32Expiration, uint32_t *pRTime32Sent, uint32_t *pRTime32Redeemed) +int8_t __thiscall winISteamUser_SteamUser005_GetGuestPassToRedeemInfo(struct w_steam_iface *_this, uint32_t nPassIndex, uint64_t *pgidGuestPassID, uint32_t *pnPackageID, uint32_t *pRTime32Created, uint32_t *pRTime32Expiration, uint32_t *pRTime32Sent, uint32_t *pRTime32Redeemed) { struct ISteamUser_SteamUser005_GetGuestPassToRedeemInfo_params params = { @@ -820,7 +820,7 @@ bool __thiscall winISteamUser_SteamUser005_GetGuestPassToRedeemInfo(struct w_ste return params._ret; } -bool __thiscall winISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress(struct w_steam_iface *_this, uint32_t nPassIndex, char *pchSenderAddress, int32_t cSenderAddressSize) +int8_t __thiscall winISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress(struct w_steam_iface *_this, uint32_t nPassIndex, char *pchSenderAddress, int32_t cSenderAddressSize) { struct ISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress_params params = { @@ -834,7 +834,7 @@ bool __thiscall winISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress(str return params._ret; } -bool __thiscall winISteamUser_SteamUser005_GetGuestPassToRedeemSenderName(struct w_steam_iface *_this, uint32_t nPassIndex, char *pchSenderName, int32_t cSenderNameSize) +int8_t __thiscall winISteamUser_SteamUser005_GetGuestPassToRedeemSenderName(struct w_steam_iface *_this, uint32_t nPassIndex, char *pchSenderName, int32_t cSenderNameSize) { struct ISteamUser_SteamUser005_GetGuestPassToRedeemSenderName_params params = { @@ -859,7 +859,7 @@ void __thiscall winISteamUser_SteamUser005_AcknowledgeMessageByGID(struct w_stea STEAMCLIENT_CALL( ISteamUser_SteamUser005_AcknowledgeMessageByGID, ¶ms ); } -bool __thiscall winISteamUser_SteamUser005_SetLanguage(struct w_steam_iface *_this, const char *pchLanguage) +int8_t __thiscall winISteamUser_SteamUser005_SetLanguage(struct w_steam_iface *_this, const char *pchLanguage) { struct ISteamUser_SteamUser005_SetLanguage_params params = { @@ -1019,7 +1019,7 @@ void __thiscall winISteamUser_SteamUser006_LogOff(struct w_steam_iface *_this) STEAMCLIENT_CALL( ISteamUser_SteamUser006_LogOff, ¶ms ); } -bool __thiscall winISteamUser_SteamUser006_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser006_BLoggedOn(struct w_steam_iface *_this) { struct ISteamUser_SteamUser006_BLoggedOn_params params = { @@ -1042,7 +1042,7 @@ CSteamID * __thiscall winISteamUser_SteamUser006_GetSteamID(struct w_steam_iface return params._ret; } -bool __thiscall winISteamUser_SteamUser006_SetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUser_SteamUser006_SetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, const char *pchValue) { struct ISteamUser_SteamUser006_SetRegistryString_params params = { @@ -1056,7 +1056,7 @@ bool __thiscall winISteamUser_SteamUser006_SetRegistryString(struct w_steam_ifac return params._ret; } -bool __thiscall winISteamUser_SteamUser006_GetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, char *pchValue, int32_t cbValue) +int8_t __thiscall winISteamUser_SteamUser006_GetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, char *pchValue, int32_t cbValue) { struct ISteamUser_SteamUser006_GetRegistryString_params params = { @@ -1071,7 +1071,7 @@ bool __thiscall winISteamUser_SteamUser006_GetRegistryString(struct w_steam_ifac return params._ret; } -bool __thiscall winISteamUser_SteamUser006_SetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t iValue) +int8_t __thiscall winISteamUser_SteamUser006_SetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t iValue) { struct ISteamUser_SteamUser006_SetRegistryInt_params params = { @@ -1085,7 +1085,7 @@ bool __thiscall winISteamUser_SteamUser006_SetRegistryInt(struct w_steam_iface * return params._ret; } -bool __thiscall winISteamUser_SteamUser006_GetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t *piValue) +int8_t __thiscall winISteamUser_SteamUser006_GetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t *piValue) { struct ISteamUser_SteamUser006_GetRegistryInt_params params = { @@ -1099,7 +1099,7 @@ bool __thiscall winISteamUser_SteamUser006_GetRegistryInt(struct w_steam_iface * return params._ret; } -int32_t __thiscall winISteamUser_SteamUser006_InitiateGameConnection(struct w_steam_iface *_this, void *pBlob, int32_t cbMaxBlob, CSteamID steamID, CGameID gameID, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) +int32_t __thiscall winISteamUser_SteamUser006_InitiateGameConnection(struct w_steam_iface *_this, void *pBlob, int32_t cbMaxBlob, CSteamID steamID, CGameID gameID, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser006_InitiateGameConnection_params params = { @@ -1218,7 +1218,7 @@ void __thiscall winISteamUser_SteamUser007_LogOff(struct w_steam_iface *_this) STEAMCLIENT_CALL( ISteamUser_SteamUser007_LogOff, ¶ms ); } -bool __thiscall winISteamUser_SteamUser007_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser007_BLoggedOn(struct w_steam_iface *_this) { struct ISteamUser_SteamUser007_BLoggedOn_params params = { @@ -1241,7 +1241,7 @@ CSteamID * __thiscall winISteamUser_SteamUser007_GetSteamID(struct w_steam_iface return params._ret; } -bool __thiscall winISteamUser_SteamUser007_SetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUser_SteamUser007_SetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, const char *pchValue) { struct ISteamUser_SteamUser007_SetRegistryString_params params = { @@ -1255,7 +1255,7 @@ bool __thiscall winISteamUser_SteamUser007_SetRegistryString(struct w_steam_ifac return params._ret; } -bool __thiscall winISteamUser_SteamUser007_GetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, char *pchValue, int32_t cbValue) +int8_t __thiscall winISteamUser_SteamUser007_GetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, char *pchValue, int32_t cbValue) { struct ISteamUser_SteamUser007_GetRegistryString_params params = { @@ -1270,7 +1270,7 @@ bool __thiscall winISteamUser_SteamUser007_GetRegistryString(struct w_steam_ifac return params._ret; } -bool __thiscall winISteamUser_SteamUser007_SetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t iValue) +int8_t __thiscall winISteamUser_SteamUser007_SetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t iValue) { struct ISteamUser_SteamUser007_SetRegistryInt_params params = { @@ -1284,7 +1284,7 @@ bool __thiscall winISteamUser_SteamUser007_SetRegistryInt(struct w_steam_iface * return params._ret; } -bool __thiscall winISteamUser_SteamUser007_GetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t *piValue) +int8_t __thiscall winISteamUser_SteamUser007_GetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t *piValue) { struct ISteamUser_SteamUser007_GetRegistryInt_params params = { @@ -1298,7 +1298,7 @@ bool __thiscall winISteamUser_SteamUser007_GetRegistryInt(struct w_steam_iface * return params._ret; } -int32_t __thiscall winISteamUser_SteamUser007_InitiateGameConnection(struct w_steam_iface *_this, void *pBlob, int32_t cbMaxBlob, CSteamID steamID, CGameID gameID, uint32_t unIPServer, uint16_t usPortServer, bool bSecure, void *pvSteam2GetEncryptionKey, int32_t cbSteam2GetEncryptionKey) +int32_t __thiscall winISteamUser_SteamUser007_InitiateGameConnection(struct w_steam_iface *_this, void *pBlob, int32_t cbMaxBlob, CSteamID steamID, CGameID gameID, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure, void *pvSteam2GetEncryptionKey, int32_t cbSteam2GetEncryptionKey) { struct ISteamUser_SteamUser007_InitiateGameConnection_params params = { @@ -1403,7 +1403,7 @@ int32_t __thiscall winISteamUser_SteamUser008_GetHSteamUser(struct w_steam_iface return params._ret; } -bool __thiscall winISteamUser_SteamUser008_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser008_BLoggedOn(struct w_steam_iface *_this) { struct ISteamUser_SteamUser008_BLoggedOn_params params = { @@ -1426,7 +1426,7 @@ CSteamID * __thiscall winISteamUser_SteamUser008_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser008_InitiateGameConnection(struct w_steam_iface *_this, void *pBlob, int32_t cbMaxBlob, CSteamID steamID, CGameID gameID, uint32_t unIPServer, uint16_t usPortServer, bool bSecure, void *pvSteam2GetEncryptionKey, int32_t cbSteam2GetEncryptionKey) +int32_t __thiscall winISteamUser_SteamUser008_InitiateGameConnection(struct w_steam_iface *_this, void *pBlob, int32_t cbMaxBlob, CSteamID steamID, CGameID gameID, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure, void *pvSteam2GetEncryptionKey, int32_t cbSteam2GetEncryptionKey) { struct ISteamUser_SteamUser008_InitiateGameConnection_params params = { @@ -1525,7 +1525,7 @@ int32_t __thiscall winISteamUser_SteamUser009_GetHSteamUser(struct w_steam_iface return params._ret; } -bool __thiscall winISteamUser_SteamUser009_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser009_BLoggedOn(struct w_steam_iface *_this) { struct ISteamUser_SteamUser009_BLoggedOn_params params = { @@ -1548,7 +1548,7 @@ CSteamID * __thiscall winISteamUser_SteamUser009_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser009_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, CGameID gameID, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) +int32_t __thiscall winISteamUser_SteamUser009_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, CGameID gameID, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser009_InitiateGameConnection_params params = { @@ -1644,7 +1644,7 @@ int32_t __thiscall winISteamUser_SteamUser010_GetHSteamUser(struct w_steam_iface return params._ret; } -bool __thiscall winISteamUser_SteamUser010_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser010_BLoggedOn(struct w_steam_iface *_this) { struct ISteamUser_SteamUser010_BLoggedOn_params params = { @@ -1667,7 +1667,7 @@ CSteamID * __thiscall winISteamUser_SteamUser010_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser010_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) +int32_t __thiscall winISteamUser_SteamUser010_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser010_InitiateGameConnection_params params = { @@ -1756,7 +1756,7 @@ int32_t __thiscall winISteamUser_SteamUser011_GetHSteamUser(struct w_steam_iface return params._ret; } -bool __thiscall winISteamUser_SteamUser011_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser011_BLoggedOn(struct w_steam_iface *_this) { struct ISteamUser_SteamUser011_BLoggedOn_params params = { @@ -1779,7 +1779,7 @@ CSteamID * __thiscall winISteamUser_SteamUser011_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser011_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) +int32_t __thiscall winISteamUser_SteamUser011_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser011_InitiateGameConnection_params params = { @@ -1821,7 +1821,7 @@ void __thiscall winISteamUser_SteamUser011_TrackAppUsageEvent(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser011_TrackAppUsageEvent, ¶ms ); } -bool __thiscall winISteamUser_SteamUser011_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) +int8_t __thiscall winISteamUser_SteamUser011_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) { struct ISteamUser_SteamUser011_GetUserDataFolder_params params = { @@ -1941,7 +1941,7 @@ int32_t __thiscall winISteamUser_SteamUser012_GetHSteamUser(struct w_steam_iface return params._ret; } -bool __thiscall winISteamUser_SteamUser012_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser012_BLoggedOn(struct w_steam_iface *_this) { struct ISteamUser_SteamUser012_BLoggedOn_params params = { @@ -1964,7 +1964,7 @@ CSteamID * __thiscall winISteamUser_SteamUser012_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser012_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) +int32_t __thiscall winISteamUser_SteamUser012_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser012_InitiateGameConnection_params params = { @@ -2006,7 +2006,7 @@ void __thiscall winISteamUser_SteamUser012_TrackAppUsageEvent(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser012_TrackAppUsageEvent, ¶ms ); } -bool __thiscall winISteamUser_SteamUser012_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) +int8_t __thiscall winISteamUser_SteamUser012_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) { struct ISteamUser_SteamUser012_GetUserDataFolder_params params = { @@ -2195,7 +2195,7 @@ int32_t __thiscall winISteamUser_SteamUser013_GetHSteamUser(struct w_steam_iface return params._ret; } -bool __thiscall winISteamUser_SteamUser013_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser013_BLoggedOn(struct w_steam_iface *_this) { struct ISteamUser_SteamUser013_BLoggedOn_params params = { @@ -2218,7 +2218,7 @@ CSteamID * __thiscall winISteamUser_SteamUser013_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser013_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) +int32_t __thiscall winISteamUser_SteamUser013_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser013_InitiateGameConnection_params params = { @@ -2260,7 +2260,7 @@ void __thiscall winISteamUser_SteamUser013_TrackAppUsageEvent(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser013_TrackAppUsageEvent, ¶ms ); } -bool __thiscall winISteamUser_SteamUser013_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) +int8_t __thiscall winISteamUser_SteamUser013_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) { struct ISteamUser_SteamUser013_GetUserDataFolder_params params = { @@ -2306,7 +2306,7 @@ uint32_t __thiscall winISteamUser_SteamUser013_GetAvailableVoice(struct w_steam_ return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser013_GetVoice(struct w_steam_iface *_this, bool bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, bool bWantUncompressed, void *pUncompressedDestBuffer, uint32_t cbUncompressedDestBufferSize, uint32_t *nUncompressBytesWritten) +uint32_t __thiscall winISteamUser_SteamUser013_GetVoice(struct w_steam_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed, void *pUncompressedDestBuffer, uint32_t cbUncompressedDestBufferSize, uint32_t *nUncompressBytesWritten) { struct ISteamUser_SteamUser013_GetVoice_params params = { @@ -2472,7 +2472,7 @@ int32_t __thiscall winISteamUser_SteamUser014_GetHSteamUser(struct w_steam_iface return params._ret; } -bool __thiscall winISteamUser_SteamUser014_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser014_BLoggedOn(struct w_steam_iface *_this) { struct ISteamUser_SteamUser014_BLoggedOn_params params = { @@ -2495,7 +2495,7 @@ CSteamID * __thiscall winISteamUser_SteamUser014_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser014_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) +int32_t __thiscall winISteamUser_SteamUser014_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser014_InitiateGameConnection_params params = { @@ -2537,7 +2537,7 @@ void __thiscall winISteamUser_SteamUser014_TrackAppUsageEvent(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser014_TrackAppUsageEvent, ¶ms ); } -bool __thiscall winISteamUser_SteamUser014_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) +int8_t __thiscall winISteamUser_SteamUser014_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) { struct ISteamUser_SteamUser014_GetUserDataFolder_params params = { @@ -2583,7 +2583,7 @@ uint32_t __thiscall winISteamUser_SteamUser014_GetAvailableVoice(struct w_steam_ return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser014_GetVoice(struct w_steam_iface *_this, bool bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, bool bWantUncompressed, void *pUncompressedDestBuffer, uint32_t cbUncompressedDestBufferSize, uint32_t *nUncompressBytesWritten) +uint32_t __thiscall winISteamUser_SteamUser014_GetVoice(struct w_steam_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed, void *pUncompressedDestBuffer, uint32_t cbUncompressedDestBufferSize, uint32_t *nUncompressBytesWritten) { struct ISteamUser_SteamUser014_GetVoice_params params = { @@ -2681,7 +2681,7 @@ uint32_t __thiscall winISteamUser_SteamUser014_UserHasLicenseForApp(struct w_ste return params._ret; } -bool __thiscall winISteamUser_SteamUser014_BIsBehindNAT(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser014_BIsBehindNAT(struct w_steam_iface *_this) { struct ISteamUser_SteamUser014_BIsBehindNAT_params params = { @@ -2718,7 +2718,7 @@ uint64_t __thiscall winISteamUser_SteamUser014_RequestEncryptedAppTicket(struct return params._ret; } -bool __thiscall winISteamUser_SteamUser014_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +int8_t __thiscall winISteamUser_SteamUser014_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamUser_SteamUser014_GetEncryptedAppTicket_params params = { @@ -2805,7 +2805,7 @@ int32_t __thiscall winISteamUser_SteamUser015_GetHSteamUser(struct w_steam_iface return params._ret; } -bool __thiscall winISteamUser_SteamUser015_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser015_BLoggedOn(struct w_steam_iface *_this) { struct ISteamUser_SteamUser015_BLoggedOn_params params = { @@ -2828,7 +2828,7 @@ CSteamID * __thiscall winISteamUser_SteamUser015_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser015_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) +int32_t __thiscall winISteamUser_SteamUser015_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser015_InitiateGameConnection_params params = { @@ -2870,7 +2870,7 @@ void __thiscall winISteamUser_SteamUser015_TrackAppUsageEvent(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser015_TrackAppUsageEvent, ¶ms ); } -bool __thiscall winISteamUser_SteamUser015_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) +int8_t __thiscall winISteamUser_SteamUser015_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) { struct ISteamUser_SteamUser015_GetUserDataFolder_params params = { @@ -2916,7 +2916,7 @@ uint32_t __thiscall winISteamUser_SteamUser015_GetAvailableVoice(struct w_steam_ return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser015_GetVoice(struct w_steam_iface *_this, bool bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, bool bWantUncompressed, void *pUncompressedDestBuffer, uint32_t cbUncompressedDestBufferSize, uint32_t *nUncompressBytesWritten) +uint32_t __thiscall winISteamUser_SteamUser015_GetVoice(struct w_steam_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed, void *pUncompressedDestBuffer, uint32_t cbUncompressedDestBufferSize, uint32_t *nUncompressBytesWritten) { struct ISteamUser_SteamUser015_GetVoice_params params = { @@ -3026,7 +3026,7 @@ uint32_t __thiscall winISteamUser_SteamUser015_UserHasLicenseForApp(struct w_ste return params._ret; } -bool __thiscall winISteamUser_SteamUser015_BIsBehindNAT(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser015_BIsBehindNAT(struct w_steam_iface *_this) { struct ISteamUser_SteamUser015_BIsBehindNAT_params params = { @@ -3063,7 +3063,7 @@ uint64_t __thiscall winISteamUser_SteamUser015_RequestEncryptedAppTicket(struct return params._ret; } -bool __thiscall winISteamUser_SteamUser015_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +int8_t __thiscall winISteamUser_SteamUser015_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamUser_SteamUser015_GetEncryptedAppTicket_params params = { @@ -3151,7 +3151,7 @@ int32_t __thiscall winISteamUser_SteamUser016_GetHSteamUser(struct w_steam_iface return params._ret; } -bool __thiscall winISteamUser_SteamUser016_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser016_BLoggedOn(struct w_steam_iface *_this) { struct ISteamUser_SteamUser016_BLoggedOn_params params = { @@ -3174,7 +3174,7 @@ CSteamID * __thiscall winISteamUser_SteamUser016_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser016_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) +int32_t __thiscall winISteamUser_SteamUser016_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser016_InitiateGameConnection_params params = { @@ -3216,7 +3216,7 @@ void __thiscall winISteamUser_SteamUser016_TrackAppUsageEvent(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser016_TrackAppUsageEvent, ¶ms ); } -bool __thiscall winISteamUser_SteamUser016_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) +int8_t __thiscall winISteamUser_SteamUser016_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) { struct ISteamUser_SteamUser016_GetUserDataFolder_params params = { @@ -3263,7 +3263,7 @@ uint32_t __thiscall winISteamUser_SteamUser016_GetAvailableVoice(struct w_steam_ return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser016_GetVoice(struct w_steam_iface *_this, bool bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, bool bWantUncompressed, void *pUncompressedDestBuffer, uint32_t cbUncompressedDestBufferSize, uint32_t *nUncompressBytesWritten, uint32_t nUncompressedVoiceDesiredSampleRate) +uint32_t __thiscall winISteamUser_SteamUser016_GetVoice(struct w_steam_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed, void *pUncompressedDestBuffer, uint32_t cbUncompressedDestBufferSize, uint32_t *nUncompressBytesWritten, uint32_t nUncompressedVoiceDesiredSampleRate) { struct ISteamUser_SteamUser016_GetVoice_params params = { @@ -3374,7 +3374,7 @@ uint32_t __thiscall winISteamUser_SteamUser016_UserHasLicenseForApp(struct w_ste return params._ret; } -bool __thiscall winISteamUser_SteamUser016_BIsBehindNAT(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser016_BIsBehindNAT(struct w_steam_iface *_this) { struct ISteamUser_SteamUser016_BIsBehindNAT_params params = { @@ -3411,7 +3411,7 @@ uint64_t __thiscall winISteamUser_SteamUser016_RequestEncryptedAppTicket(struct return params._ret; } -bool __thiscall winISteamUser_SteamUser016_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +int8_t __thiscall winISteamUser_SteamUser016_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamUser_SteamUser016_GetEncryptedAppTicket_params params = { @@ -3501,7 +3501,7 @@ int32_t __thiscall winISteamUser_SteamUser017_GetHSteamUser(struct w_steam_iface return params._ret; } -bool __thiscall winISteamUser_SteamUser017_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser017_BLoggedOn(struct w_steam_iface *_this) { struct ISteamUser_SteamUser017_BLoggedOn_params params = { @@ -3524,7 +3524,7 @@ CSteamID * __thiscall winISteamUser_SteamUser017_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser017_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) +int32_t __thiscall winISteamUser_SteamUser017_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser017_InitiateGameConnection_params params = { @@ -3566,7 +3566,7 @@ void __thiscall winISteamUser_SteamUser017_TrackAppUsageEvent(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser017_TrackAppUsageEvent, ¶ms ); } -bool __thiscall winISteamUser_SteamUser017_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) +int8_t __thiscall winISteamUser_SteamUser017_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) { struct ISteamUser_SteamUser017_GetUserDataFolder_params params = { @@ -3613,7 +3613,7 @@ uint32_t __thiscall winISteamUser_SteamUser017_GetAvailableVoice(struct w_steam_ return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser017_GetVoice(struct w_steam_iface *_this, bool bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, bool bWantUncompressed, void *pUncompressedDestBuffer, uint32_t cbUncompressedDestBufferSize, uint32_t *nUncompressBytesWritten, uint32_t nUncompressedVoiceDesiredSampleRate) +uint32_t __thiscall winISteamUser_SteamUser017_GetVoice(struct w_steam_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed, void *pUncompressedDestBuffer, uint32_t cbUncompressedDestBufferSize, uint32_t *nUncompressBytesWritten, uint32_t nUncompressedVoiceDesiredSampleRate) { struct ISteamUser_SteamUser017_GetVoice_params params = { @@ -3724,7 +3724,7 @@ uint32_t __thiscall winISteamUser_SteamUser017_UserHasLicenseForApp(struct w_ste return params._ret; } -bool __thiscall winISteamUser_SteamUser017_BIsBehindNAT(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser017_BIsBehindNAT(struct w_steam_iface *_this) { struct ISteamUser_SteamUser017_BIsBehindNAT_params params = { @@ -3761,7 +3761,7 @@ uint64_t __thiscall winISteamUser_SteamUser017_RequestEncryptedAppTicket(struct return params._ret; } -bool __thiscall winISteamUser_SteamUser017_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +int8_t __thiscall winISteamUser_SteamUser017_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamUser_SteamUser017_GetEncryptedAppTicket_params params = { @@ -3775,7 +3775,7 @@ bool __thiscall winISteamUser_SteamUser017_GetEncryptedAppTicket(struct w_steam_ return params._ret; } -int32_t __thiscall winISteamUser_SteamUser017_GetGameBadgeLevel(struct w_steam_iface *_this, int32_t nSeries, bool bFoil) +int32_t __thiscall winISteamUser_SteamUser017_GetGameBadgeLevel(struct w_steam_iface *_this, int32_t nSeries, int8_t bFoil) { struct ISteamUser_SteamUser017_GetGameBadgeLevel_params params = { @@ -3878,7 +3878,7 @@ int32_t __thiscall winISteamUser_SteamUser018_GetHSteamUser(struct w_steam_iface return params._ret; } -bool __thiscall winISteamUser_SteamUser018_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser018_BLoggedOn(struct w_steam_iface *_this) { struct ISteamUser_SteamUser018_BLoggedOn_params params = { @@ -3901,7 +3901,7 @@ CSteamID * __thiscall winISteamUser_SteamUser018_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser018_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) +int32_t __thiscall winISteamUser_SteamUser018_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser018_InitiateGameConnection_params params = { @@ -3943,7 +3943,7 @@ void __thiscall winISteamUser_SteamUser018_TrackAppUsageEvent(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser018_TrackAppUsageEvent, ¶ms ); } -bool __thiscall winISteamUser_SteamUser018_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) +int8_t __thiscall winISteamUser_SteamUser018_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) { struct ISteamUser_SteamUser018_GetUserDataFolder_params params = { @@ -3990,7 +3990,7 @@ uint32_t __thiscall winISteamUser_SteamUser018_GetAvailableVoice(struct w_steam_ return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser018_GetVoice(struct w_steam_iface *_this, bool bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, bool bWantUncompressed, void *pUncompressedDestBuffer, uint32_t cbUncompressedDestBufferSize, uint32_t *nUncompressBytesWritten, uint32_t nUncompressedVoiceDesiredSampleRate) +uint32_t __thiscall winISteamUser_SteamUser018_GetVoice(struct w_steam_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed, void *pUncompressedDestBuffer, uint32_t cbUncompressedDestBufferSize, uint32_t *nUncompressBytesWritten, uint32_t nUncompressedVoiceDesiredSampleRate) { struct ISteamUser_SteamUser018_GetVoice_params params = { @@ -4101,7 +4101,7 @@ uint32_t __thiscall winISteamUser_SteamUser018_UserHasLicenseForApp(struct w_ste return params._ret; } -bool __thiscall winISteamUser_SteamUser018_BIsBehindNAT(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser018_BIsBehindNAT(struct w_steam_iface *_this) { struct ISteamUser_SteamUser018_BIsBehindNAT_params params = { @@ -4138,7 +4138,7 @@ uint64_t __thiscall winISteamUser_SteamUser018_RequestEncryptedAppTicket(struct return params._ret; } -bool __thiscall winISteamUser_SteamUser018_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +int8_t __thiscall winISteamUser_SteamUser018_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamUser_SteamUser018_GetEncryptedAppTicket_params params = { @@ -4152,7 +4152,7 @@ bool __thiscall winISteamUser_SteamUser018_GetEncryptedAppTicket(struct w_steam_ return params._ret; } -int32_t __thiscall winISteamUser_SteamUser018_GetGameBadgeLevel(struct w_steam_iface *_this, int32_t nSeries, bool bFoil) +int32_t __thiscall winISteamUser_SteamUser018_GetGameBadgeLevel(struct w_steam_iface *_this, int32_t nSeries, int8_t bFoil) { struct ISteamUser_SteamUser018_GetGameBadgeLevel_params params = { @@ -4272,7 +4272,7 @@ int32_t __thiscall winISteamUser_SteamUser019_GetHSteamUser(struct w_steam_iface return params._ret; } -bool __thiscall winISteamUser_SteamUser019_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser019_BLoggedOn(struct w_steam_iface *_this) { struct ISteamUser_SteamUser019_BLoggedOn_params params = { @@ -4295,7 +4295,7 @@ CSteamID * __thiscall winISteamUser_SteamUser019_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser019_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) +int32_t __thiscall winISteamUser_SteamUser019_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser019_InitiateGameConnection_params params = { @@ -4337,7 +4337,7 @@ void __thiscall winISteamUser_SteamUser019_TrackAppUsageEvent(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser019_TrackAppUsageEvent, ¶ms ); } -bool __thiscall winISteamUser_SteamUser019_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) +int8_t __thiscall winISteamUser_SteamUser019_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) { struct ISteamUser_SteamUser019_GetUserDataFolder_params params = { @@ -4384,7 +4384,7 @@ uint32_t __thiscall winISteamUser_SteamUser019_GetAvailableVoice(struct w_steam_ return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser019_GetVoice(struct w_steam_iface *_this, bool bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, bool bWantUncompressed_Deprecated, void *pUncompressedDestBuffer_Deprecated, uint32_t cbUncompressedDestBufferSize_Deprecated, uint32_t *nUncompressBytesWritten_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) +uint32_t __thiscall winISteamUser_SteamUser019_GetVoice(struct w_steam_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed_Deprecated, void *pUncompressedDestBuffer_Deprecated, uint32_t cbUncompressedDestBufferSize_Deprecated, uint32_t *nUncompressBytesWritten_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) { struct ISteamUser_SteamUser019_GetVoice_params params = { @@ -4495,7 +4495,7 @@ uint32_t __thiscall winISteamUser_SteamUser019_UserHasLicenseForApp(struct w_ste return params._ret; } -bool __thiscall winISteamUser_SteamUser019_BIsBehindNAT(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser019_BIsBehindNAT(struct w_steam_iface *_this) { struct ISteamUser_SteamUser019_BIsBehindNAT_params params = { @@ -4532,7 +4532,7 @@ uint64_t __thiscall winISteamUser_SteamUser019_RequestEncryptedAppTicket(struct return params._ret; } -bool __thiscall winISteamUser_SteamUser019_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +int8_t __thiscall winISteamUser_SteamUser019_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamUser_SteamUser019_GetEncryptedAppTicket_params params = { @@ -4546,7 +4546,7 @@ bool __thiscall winISteamUser_SteamUser019_GetEncryptedAppTicket(struct w_steam_ return params._ret; } -int32_t __thiscall winISteamUser_SteamUser019_GetGameBadgeLevel(struct w_steam_iface *_this, int32_t nSeries, bool bFoil) +int32_t __thiscall winISteamUser_SteamUser019_GetGameBadgeLevel(struct w_steam_iface *_this, int32_t nSeries, int8_t bFoil) { struct ISteamUser_SteamUser019_GetGameBadgeLevel_params params = { @@ -4582,7 +4582,7 @@ uint64_t __thiscall winISteamUser_SteamUser019_RequestStoreAuthURL(struct w_stea return params._ret; } -bool __thiscall winISteamUser_SteamUser019_BIsPhoneVerified(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser019_BIsPhoneVerified(struct w_steam_iface *_this) { struct ISteamUser_SteamUser019_BIsPhoneVerified_params params = { @@ -4593,7 +4593,7 @@ bool __thiscall winISteamUser_SteamUser019_BIsPhoneVerified(struct w_steam_iface return params._ret; } -bool __thiscall winISteamUser_SteamUser019_BIsTwoFactorEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser019_BIsTwoFactorEnabled(struct w_steam_iface *_this) { struct ISteamUser_SteamUser019_BIsTwoFactorEnabled_params params = { @@ -4604,7 +4604,7 @@ bool __thiscall winISteamUser_SteamUser019_BIsTwoFactorEnabled(struct w_steam_if return params._ret; } -bool __thiscall winISteamUser_SteamUser019_BIsPhoneIdentifying(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser019_BIsPhoneIdentifying(struct w_steam_iface *_this) { struct ISteamUser_SteamUser019_BIsPhoneIdentifying_params params = { @@ -4615,7 +4615,7 @@ bool __thiscall winISteamUser_SteamUser019_BIsPhoneIdentifying(struct w_steam_if return params._ret; } -bool __thiscall winISteamUser_SteamUser019_BIsPhoneRequiringVerification(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser019_BIsPhoneRequiringVerification(struct w_steam_iface *_this) { struct ISteamUser_SteamUser019_BIsPhoneRequiringVerification_params params = { @@ -4716,7 +4716,7 @@ int32_t __thiscall winISteamUser_SteamUser020_GetHSteamUser(struct w_steam_iface return params._ret; } -bool __thiscall winISteamUser_SteamUser020_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser020_BLoggedOn(struct w_steam_iface *_this) { struct ISteamUser_SteamUser020_BLoggedOn_params params = { @@ -4739,7 +4739,7 @@ CSteamID * __thiscall winISteamUser_SteamUser020_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser020_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) +int32_t __thiscall winISteamUser_SteamUser020_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser020_InitiateGameConnection_params params = { @@ -4781,7 +4781,7 @@ void __thiscall winISteamUser_SteamUser020_TrackAppUsageEvent(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser020_TrackAppUsageEvent, ¶ms ); } -bool __thiscall winISteamUser_SteamUser020_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) +int8_t __thiscall winISteamUser_SteamUser020_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) { struct ISteamUser_SteamUser020_GetUserDataFolder_params params = { @@ -4828,7 +4828,7 @@ uint32_t __thiscall winISteamUser_SteamUser020_GetAvailableVoice(struct w_steam_ return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser020_GetVoice(struct w_steam_iface *_this, bool bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, bool bWantUncompressed_Deprecated, void *pUncompressedDestBuffer_Deprecated, uint32_t cbUncompressedDestBufferSize_Deprecated, uint32_t *nUncompressBytesWritten_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) +uint32_t __thiscall winISteamUser_SteamUser020_GetVoice(struct w_steam_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed_Deprecated, void *pUncompressedDestBuffer_Deprecated, uint32_t cbUncompressedDestBufferSize_Deprecated, uint32_t *nUncompressBytesWritten_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) { struct ISteamUser_SteamUser020_GetVoice_params params = { @@ -4939,7 +4939,7 @@ uint32_t __thiscall winISteamUser_SteamUser020_UserHasLicenseForApp(struct w_ste return params._ret; } -bool __thiscall winISteamUser_SteamUser020_BIsBehindNAT(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser020_BIsBehindNAT(struct w_steam_iface *_this) { struct ISteamUser_SteamUser020_BIsBehindNAT_params params = { @@ -4976,7 +4976,7 @@ uint64_t __thiscall winISteamUser_SteamUser020_RequestEncryptedAppTicket(struct return params._ret; } -bool __thiscall winISteamUser_SteamUser020_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +int8_t __thiscall winISteamUser_SteamUser020_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamUser_SteamUser020_GetEncryptedAppTicket_params params = { @@ -4990,7 +4990,7 @@ bool __thiscall winISteamUser_SteamUser020_GetEncryptedAppTicket(struct w_steam_ return params._ret; } -int32_t __thiscall winISteamUser_SteamUser020_GetGameBadgeLevel(struct w_steam_iface *_this, int32_t nSeries, bool bFoil) +int32_t __thiscall winISteamUser_SteamUser020_GetGameBadgeLevel(struct w_steam_iface *_this, int32_t nSeries, int8_t bFoil) { struct ISteamUser_SteamUser020_GetGameBadgeLevel_params params = { @@ -5026,7 +5026,7 @@ uint64_t __thiscall winISteamUser_SteamUser020_RequestStoreAuthURL(struct w_stea return params._ret; } -bool __thiscall winISteamUser_SteamUser020_BIsPhoneVerified(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser020_BIsPhoneVerified(struct w_steam_iface *_this) { struct ISteamUser_SteamUser020_BIsPhoneVerified_params params = { @@ -5037,7 +5037,7 @@ bool __thiscall winISteamUser_SteamUser020_BIsPhoneVerified(struct w_steam_iface return params._ret; } -bool __thiscall winISteamUser_SteamUser020_BIsTwoFactorEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser020_BIsTwoFactorEnabled(struct w_steam_iface *_this) { struct ISteamUser_SteamUser020_BIsTwoFactorEnabled_params params = { @@ -5048,7 +5048,7 @@ bool __thiscall winISteamUser_SteamUser020_BIsTwoFactorEnabled(struct w_steam_if return params._ret; } -bool __thiscall winISteamUser_SteamUser020_BIsPhoneIdentifying(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser020_BIsPhoneIdentifying(struct w_steam_iface *_this) { struct ISteamUser_SteamUser020_BIsPhoneIdentifying_params params = { @@ -5059,7 +5059,7 @@ bool __thiscall winISteamUser_SteamUser020_BIsPhoneIdentifying(struct w_steam_if return params._ret; } -bool __thiscall winISteamUser_SteamUser020_BIsPhoneRequiringVerification(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser020_BIsPhoneRequiringVerification(struct w_steam_iface *_this) { struct ISteamUser_SteamUser020_BIsPhoneRequiringVerification_params params = { @@ -5185,7 +5185,7 @@ int32_t __thiscall winISteamUser_SteamUser021_GetHSteamUser(struct w_steam_iface return params._ret; } -bool __thiscall winISteamUser_SteamUser021_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser021_BLoggedOn(struct w_steam_iface *_this) { struct ISteamUser_SteamUser021_BLoggedOn_params params = { @@ -5208,7 +5208,7 @@ CSteamID * __thiscall winISteamUser_SteamUser021_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) +int32_t __thiscall winISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED_params params = { @@ -5250,7 +5250,7 @@ void __thiscall winISteamUser_SteamUser021_TrackAppUsageEvent(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser021_TrackAppUsageEvent, ¶ms ); } -bool __thiscall winISteamUser_SteamUser021_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) +int8_t __thiscall winISteamUser_SteamUser021_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) { struct ISteamUser_SteamUser021_GetUserDataFolder_params params = { @@ -5297,7 +5297,7 @@ uint32_t __thiscall winISteamUser_SteamUser021_GetAvailableVoice(struct w_steam_ return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser021_GetVoice(struct w_steam_iface *_this, bool bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, bool bWantUncompressed_Deprecated, void *pUncompressedDestBuffer_Deprecated, uint32_t cbUncompressedDestBufferSize_Deprecated, uint32_t *nUncompressBytesWritten_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) +uint32_t __thiscall winISteamUser_SteamUser021_GetVoice(struct w_steam_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed_Deprecated, void *pUncompressedDestBuffer_Deprecated, uint32_t cbUncompressedDestBufferSize_Deprecated, uint32_t *nUncompressBytesWritten_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) { struct ISteamUser_SteamUser021_GetVoice_params params = { @@ -5408,7 +5408,7 @@ uint32_t __thiscall winISteamUser_SteamUser021_UserHasLicenseForApp(struct w_ste return params._ret; } -bool __thiscall winISteamUser_SteamUser021_BIsBehindNAT(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser021_BIsBehindNAT(struct w_steam_iface *_this) { struct ISteamUser_SteamUser021_BIsBehindNAT_params params = { @@ -5445,7 +5445,7 @@ uint64_t __thiscall winISteamUser_SteamUser021_RequestEncryptedAppTicket(struct return params._ret; } -bool __thiscall winISteamUser_SteamUser021_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +int8_t __thiscall winISteamUser_SteamUser021_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamUser_SteamUser021_GetEncryptedAppTicket_params params = { @@ -5459,7 +5459,7 @@ bool __thiscall winISteamUser_SteamUser021_GetEncryptedAppTicket(struct w_steam_ return params._ret; } -int32_t __thiscall winISteamUser_SteamUser021_GetGameBadgeLevel(struct w_steam_iface *_this, int32_t nSeries, bool bFoil) +int32_t __thiscall winISteamUser_SteamUser021_GetGameBadgeLevel(struct w_steam_iface *_this, int32_t nSeries, int8_t bFoil) { struct ISteamUser_SteamUser021_GetGameBadgeLevel_params params = { @@ -5495,7 +5495,7 @@ uint64_t __thiscall winISteamUser_SteamUser021_RequestStoreAuthURL(struct w_stea return params._ret; } -bool __thiscall winISteamUser_SteamUser021_BIsPhoneVerified(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser021_BIsPhoneVerified(struct w_steam_iface *_this) { struct ISteamUser_SteamUser021_BIsPhoneVerified_params params = { @@ -5506,7 +5506,7 @@ bool __thiscall winISteamUser_SteamUser021_BIsPhoneVerified(struct w_steam_iface return params._ret; } -bool __thiscall winISteamUser_SteamUser021_BIsTwoFactorEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser021_BIsTwoFactorEnabled(struct w_steam_iface *_this) { struct ISteamUser_SteamUser021_BIsTwoFactorEnabled_params params = { @@ -5517,7 +5517,7 @@ bool __thiscall winISteamUser_SteamUser021_BIsTwoFactorEnabled(struct w_steam_if return params._ret; } -bool __thiscall winISteamUser_SteamUser021_BIsPhoneIdentifying(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser021_BIsPhoneIdentifying(struct w_steam_iface *_this) { struct ISteamUser_SteamUser021_BIsPhoneIdentifying_params params = { @@ -5528,7 +5528,7 @@ bool __thiscall winISteamUser_SteamUser021_BIsPhoneIdentifying(struct w_steam_if return params._ret; } -bool __thiscall winISteamUser_SteamUser021_BIsPhoneRequiringVerification(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser021_BIsPhoneRequiringVerification(struct w_steam_iface *_this) { struct ISteamUser_SteamUser021_BIsPhoneRequiringVerification_params params = { @@ -5561,7 +5561,7 @@ uint64_t __thiscall winISteamUser_SteamUser021_GetDurationControl(struct w_steam return params._ret; } -bool __thiscall winISteamUser_SteamUser021_BSetDurationControlOnlineState(struct w_steam_iface *_this, uint32_t eNewState) +int8_t __thiscall winISteamUser_SteamUser021_BSetDurationControlOnlineState(struct w_steam_iface *_this, uint32_t eNewState) { struct ISteamUser_SteamUser021_BSetDurationControlOnlineState_params params = { @@ -5667,7 +5667,7 @@ int32_t __thiscall winISteamUser_SteamUser022_GetHSteamUser(struct w_steam_iface return params._ret; } -bool __thiscall winISteamUser_SteamUser022_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser022_BLoggedOn(struct w_steam_iface *_this) { struct ISteamUser_SteamUser022_BLoggedOn_params params = { @@ -5690,7 +5690,7 @@ CSteamID * __thiscall winISteamUser_SteamUser022_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) +int32_t __thiscall winISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED_params params = { @@ -5732,7 +5732,7 @@ void __thiscall winISteamUser_SteamUser022_TrackAppUsageEvent(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser022_TrackAppUsageEvent, ¶ms ); } -bool __thiscall winISteamUser_SteamUser022_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) +int8_t __thiscall winISteamUser_SteamUser022_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) { struct ISteamUser_SteamUser022_GetUserDataFolder_params params = { @@ -5779,7 +5779,7 @@ uint32_t __thiscall winISteamUser_SteamUser022_GetAvailableVoice(struct w_steam_ return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser022_GetVoice(struct w_steam_iface *_this, bool bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, bool bWantUncompressed_Deprecated, void *pUncompressedDestBuffer_Deprecated, uint32_t cbUncompressedDestBufferSize_Deprecated, uint32_t *nUncompressBytesWritten_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) +uint32_t __thiscall winISteamUser_SteamUser022_GetVoice(struct w_steam_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed_Deprecated, void *pUncompressedDestBuffer_Deprecated, uint32_t cbUncompressedDestBufferSize_Deprecated, uint32_t *nUncompressBytesWritten_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) { struct ISteamUser_SteamUser022_GetVoice_params params = { @@ -5891,7 +5891,7 @@ uint32_t __thiscall winISteamUser_SteamUser022_UserHasLicenseForApp(struct w_ste return params._ret; } -bool __thiscall winISteamUser_SteamUser022_BIsBehindNAT(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser022_BIsBehindNAT(struct w_steam_iface *_this) { struct ISteamUser_SteamUser022_BIsBehindNAT_params params = { @@ -5928,7 +5928,7 @@ uint64_t __thiscall winISteamUser_SteamUser022_RequestEncryptedAppTicket(struct return params._ret; } -bool __thiscall winISteamUser_SteamUser022_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +int8_t __thiscall winISteamUser_SteamUser022_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamUser_SteamUser022_GetEncryptedAppTicket_params params = { @@ -5942,7 +5942,7 @@ bool __thiscall winISteamUser_SteamUser022_GetEncryptedAppTicket(struct w_steam_ return params._ret; } -int32_t __thiscall winISteamUser_SteamUser022_GetGameBadgeLevel(struct w_steam_iface *_this, int32_t nSeries, bool bFoil) +int32_t __thiscall winISteamUser_SteamUser022_GetGameBadgeLevel(struct w_steam_iface *_this, int32_t nSeries, int8_t bFoil) { struct ISteamUser_SteamUser022_GetGameBadgeLevel_params params = { @@ -5978,7 +5978,7 @@ uint64_t __thiscall winISteamUser_SteamUser022_RequestStoreAuthURL(struct w_stea return params._ret; } -bool __thiscall winISteamUser_SteamUser022_BIsPhoneVerified(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser022_BIsPhoneVerified(struct w_steam_iface *_this) { struct ISteamUser_SteamUser022_BIsPhoneVerified_params params = { @@ -5989,7 +5989,7 @@ bool __thiscall winISteamUser_SteamUser022_BIsPhoneVerified(struct w_steam_iface return params._ret; } -bool __thiscall winISteamUser_SteamUser022_BIsTwoFactorEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser022_BIsTwoFactorEnabled(struct w_steam_iface *_this) { struct ISteamUser_SteamUser022_BIsTwoFactorEnabled_params params = { @@ -6000,7 +6000,7 @@ bool __thiscall winISteamUser_SteamUser022_BIsTwoFactorEnabled(struct w_steam_if return params._ret; } -bool __thiscall winISteamUser_SteamUser022_BIsPhoneIdentifying(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser022_BIsPhoneIdentifying(struct w_steam_iface *_this) { struct ISteamUser_SteamUser022_BIsPhoneIdentifying_params params = { @@ -6011,7 +6011,7 @@ bool __thiscall winISteamUser_SteamUser022_BIsPhoneIdentifying(struct w_steam_if return params._ret; } -bool __thiscall winISteamUser_SteamUser022_BIsPhoneRequiringVerification(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser022_BIsPhoneRequiringVerification(struct w_steam_iface *_this) { struct ISteamUser_SteamUser022_BIsPhoneRequiringVerification_params params = { @@ -6044,7 +6044,7 @@ uint64_t __thiscall winISteamUser_SteamUser022_GetDurationControl(struct w_steam return params._ret; } -bool __thiscall winISteamUser_SteamUser022_BSetDurationControlOnlineState(struct w_steam_iface *_this, uint32_t eNewState) +int8_t __thiscall winISteamUser_SteamUser022_BSetDurationControlOnlineState(struct w_steam_iface *_this, uint32_t eNewState) { struct ISteamUser_SteamUser022_BSetDurationControlOnlineState_params params = { @@ -6151,7 +6151,7 @@ int32_t __thiscall winISteamUser_SteamUser023_GetHSteamUser(struct w_steam_iface return params._ret; } -bool __thiscall winISteamUser_SteamUser023_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser023_BLoggedOn(struct w_steam_iface *_this) { struct ISteamUser_SteamUser023_BLoggedOn_params params = { @@ -6174,7 +6174,7 @@ CSteamID * __thiscall winISteamUser_SteamUser023_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, bool bSecure) +int32_t __thiscall winISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED_params params = { @@ -6216,7 +6216,7 @@ void __thiscall winISteamUser_SteamUser023_TrackAppUsageEvent(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser023_TrackAppUsageEvent, ¶ms ); } -bool __thiscall winISteamUser_SteamUser023_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) +int8_t __thiscall winISteamUser_SteamUser023_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) { struct ISteamUser_SteamUser023_GetUserDataFolder_params params = { @@ -6263,7 +6263,7 @@ uint32_t __thiscall winISteamUser_SteamUser023_GetAvailableVoice(struct w_steam_ return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser023_GetVoice(struct w_steam_iface *_this, bool bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, bool bWantUncompressed_Deprecated, void *pUncompressedDestBuffer_Deprecated, uint32_t cbUncompressedDestBufferSize_Deprecated, uint32_t *nUncompressBytesWritten_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) +uint32_t __thiscall winISteamUser_SteamUser023_GetVoice(struct w_steam_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed_Deprecated, void *pUncompressedDestBuffer_Deprecated, uint32_t cbUncompressedDestBufferSize_Deprecated, uint32_t *nUncompressBytesWritten_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) { struct ISteamUser_SteamUser023_GetVoice_params params = { @@ -6387,7 +6387,7 @@ uint32_t __thiscall winISteamUser_SteamUser023_UserHasLicenseForApp(struct w_ste return params._ret; } -bool __thiscall winISteamUser_SteamUser023_BIsBehindNAT(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser023_BIsBehindNAT(struct w_steam_iface *_this) { struct ISteamUser_SteamUser023_BIsBehindNAT_params params = { @@ -6424,7 +6424,7 @@ uint64_t __thiscall winISteamUser_SteamUser023_RequestEncryptedAppTicket(struct return params._ret; } -bool __thiscall winISteamUser_SteamUser023_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +int8_t __thiscall winISteamUser_SteamUser023_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamUser_SteamUser023_GetEncryptedAppTicket_params params = { @@ -6438,7 +6438,7 @@ bool __thiscall winISteamUser_SteamUser023_GetEncryptedAppTicket(struct w_steam_ return params._ret; } -int32_t __thiscall winISteamUser_SteamUser023_GetGameBadgeLevel(struct w_steam_iface *_this, int32_t nSeries, bool bFoil) +int32_t __thiscall winISteamUser_SteamUser023_GetGameBadgeLevel(struct w_steam_iface *_this, int32_t nSeries, int8_t bFoil) { struct ISteamUser_SteamUser023_GetGameBadgeLevel_params params = { @@ -6474,7 +6474,7 @@ uint64_t __thiscall winISteamUser_SteamUser023_RequestStoreAuthURL(struct w_stea return params._ret; } -bool __thiscall winISteamUser_SteamUser023_BIsPhoneVerified(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser023_BIsPhoneVerified(struct w_steam_iface *_this) { struct ISteamUser_SteamUser023_BIsPhoneVerified_params params = { @@ -6485,7 +6485,7 @@ bool __thiscall winISteamUser_SteamUser023_BIsPhoneVerified(struct w_steam_iface return params._ret; } -bool __thiscall winISteamUser_SteamUser023_BIsTwoFactorEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser023_BIsTwoFactorEnabled(struct w_steam_iface *_this) { struct ISteamUser_SteamUser023_BIsTwoFactorEnabled_params params = { @@ -6496,7 +6496,7 @@ bool __thiscall winISteamUser_SteamUser023_BIsTwoFactorEnabled(struct w_steam_if return params._ret; } -bool __thiscall winISteamUser_SteamUser023_BIsPhoneIdentifying(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser023_BIsPhoneIdentifying(struct w_steam_iface *_this) { struct ISteamUser_SteamUser023_BIsPhoneIdentifying_params params = { @@ -6507,7 +6507,7 @@ bool __thiscall winISteamUser_SteamUser023_BIsPhoneIdentifying(struct w_steam_if return params._ret; } -bool __thiscall winISteamUser_SteamUser023_BIsPhoneRequiringVerification(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser023_BIsPhoneRequiringVerification(struct w_steam_iface *_this) { struct ISteamUser_SteamUser023_BIsPhoneRequiringVerification_params params = { @@ -6540,7 +6540,7 @@ uint64_t __thiscall winISteamUser_SteamUser023_GetDurationControl(struct w_steam return params._ret; } -bool __thiscall winISteamUser_SteamUser023_BSetDurationControlOnlineState(struct w_steam_iface *_this, uint32_t eNewState) +int8_t __thiscall winISteamUser_SteamUser023_BSetDurationControlOnlineState(struct w_steam_iface *_this, uint32_t eNewState) { struct ISteamUser_SteamUser023_BSetDurationControlOnlineState_params params = { diff --git a/lsteamclient/winISteamUserStats.c b/lsteamclient/winISteamUserStats.c index 9de74099..fa78cc01 100644 --- a/lsteamclient/winISteamUserStats.c +++ b/lsteamclient/winISteamUserStats.c @@ -114,7 +114,7 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_G return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_RequestCurrentStats(struct w_steam_iface *_this, CGameID nGameID) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_RequestCurrentStats(struct w_steam_iface *_this, CGameID nGameID) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_RequestCurrentStats_params params = { @@ -126,7 +126,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_RequestCu return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_params params = { @@ -140,7 +140,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat(s return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2_params params = { @@ -154,7 +154,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2 return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, int32_t nData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, int32_t nData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_params params = { @@ -168,7 +168,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat(s return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, float fData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, float fData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2_params params = { @@ -182,7 +182,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2 return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvgRateStat(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, float flCountThisSession, double dSessionLength) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvgRateStat(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, float flCountThisSession, double dSessionLength) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvgRateStat_params params = { @@ -197,7 +197,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvg return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, bool *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievement_params params = { @@ -211,7 +211,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, bool *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievement_params params = { @@ -225,7 +225,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupA return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchievement_params params = { @@ -238,7 +238,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupAchievement_params params = { @@ -251,7 +251,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupA return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_StoreStats(struct w_steam_iface *_this, CGameID nGameID) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_StoreStats(struct w_steam_iface *_this, CGameID nGameID) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_StoreStats_params params = { @@ -263,7 +263,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_StoreStat return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchievement_params params = { @@ -276,7 +276,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchi return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearGroupAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearGroupAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearGroupAchievement_params params = { @@ -438,7 +438,7 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_G return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_RequestCurrentStats(struct w_steam_iface *_this, CGameID nGameID) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_RequestCurrentStats(struct w_steam_iface *_this, CGameID nGameID) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_RequestCurrentStats_params params = { @@ -450,7 +450,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_RequestCu return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_params params = { @@ -464,7 +464,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat(s return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2_params params = { @@ -478,7 +478,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2 return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, int32_t nData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, int32_t nData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_params params = { @@ -492,7 +492,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat(s return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, float fData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, float fData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2_params params = { @@ -506,7 +506,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2 return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvgRateStat(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, float flCountThisSession, double dSessionLength) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvgRateStat(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, float flCountThisSession, double dSessionLength) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvgRateStat_params params = { @@ -521,7 +521,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvg return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, bool *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievement_params params = { @@ -535,7 +535,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchievement_params params = { @@ -548,7 +548,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchievement_params params = { @@ -561,7 +561,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchi return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_StoreStats(struct w_steam_iface *_this, CGameID nGameID) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_StoreStats(struct w_steam_iface *_this, CGameID nGameID) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_StoreStats_params params = { @@ -600,7 +600,7 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_G return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateAchievementProgress(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateAchievementProgress(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateAchievementProgress_params params = { @@ -665,7 +665,7 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_G DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementDisplayAttribute, 12) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementProgress, 16) -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCurrentStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCurrentStats(struct w_steam_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCurrentStats_params params = { @@ -676,7 +676,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCu return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_params params = { @@ -689,7 +689,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat(s return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2_params params = { @@ -702,7 +702,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2 return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_params params = { @@ -715,7 +715,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat(s return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2_params params = { @@ -728,7 +728,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2 return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat_params params = { @@ -742,7 +742,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvg return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievement(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievement(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievement_params params = { @@ -755,7 +755,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetAchievement(struct w_steam_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetAchievement_params params = { @@ -767,7 +767,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_ClearAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_ClearAchievement(struct w_steam_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_ClearAchievement_params params = { @@ -779,7 +779,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_ClearAchi return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_StoreStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_StoreStats(struct w_steam_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_StoreStats_params params = { @@ -815,7 +815,7 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_G return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementProgress_params params = { @@ -878,7 +878,7 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_G DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2, 20) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAchievement, 20) -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestCurrentStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestCurrentStats(struct w_steam_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestCurrentStats_params params = { @@ -889,7 +889,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestCu return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_params params = { @@ -902,7 +902,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat(s return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2_params params = { @@ -915,7 +915,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2 return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_params params = { @@ -928,7 +928,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat(s return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2_params params = { @@ -941,7 +941,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2 return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvgRateStat_params params = { @@ -955,7 +955,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvg return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievement(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievement(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievement_params params = { @@ -968,7 +968,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetAchievement(struct w_steam_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetAchievement_params params = { @@ -980,7 +980,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_ClearAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_ClearAchievement(struct w_steam_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_ClearAchievement_params params = { @@ -992,7 +992,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_ClearAchi return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_StoreStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_StoreStats(struct w_steam_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_StoreStats_params params = { @@ -1028,7 +1028,7 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_G return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_IndicateAchievementProgress_params params = { @@ -1054,7 +1054,7 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_Reque return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_params params = { @@ -1068,7 +1068,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserSt return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2_params params = { @@ -1082,7 +1082,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserSt return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAchievement_params params = { @@ -1159,7 +1159,7 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_D DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeaderboardEntry, 28) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UploadLeaderboardScore, 24) -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestCurrentStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestCurrentStats(struct w_steam_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestCurrentStats_params params = { @@ -1170,7 +1170,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestCu return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_params params = { @@ -1183,7 +1183,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat(s return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2_params params = { @@ -1196,7 +1196,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2 return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_params params = { @@ -1209,7 +1209,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat(s return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2_params params = { @@ -1222,7 +1222,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2 return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvgRateStat_params params = { @@ -1236,7 +1236,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvg return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievement(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievement(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievement_params params = { @@ -1249,7 +1249,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetAchievement(struct w_steam_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetAchievement_params params = { @@ -1261,7 +1261,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ClearAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ClearAchievement(struct w_steam_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ClearAchievement_params params = { @@ -1273,7 +1273,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ClearAchi return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_StoreStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_StoreStats(struct w_steam_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_StoreStats_params params = { @@ -1309,7 +1309,7 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_G return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_IndicateAchievementProgress_params params = { @@ -1335,7 +1335,7 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_Reque return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_params params = { @@ -1349,7 +1349,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserSt return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_2_params params = { @@ -1363,7 +1363,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserSt return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAchievement_params params = { @@ -1377,7 +1377,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAc return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ResetAllStats(struct w_steam_iface *_this, bool bAchievementsToo) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ResetAllStats(struct w_steam_iface *_this, int8_t bAchievementsToo) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ResetAllStats_params params = { @@ -1478,7 +1478,7 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_Downl return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_104 *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_104 *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeaderboardEntry_params params = { @@ -1583,7 +1583,7 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_G DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UploadLeaderboardScore, 28) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetNumberOfCurrentPlayers, 4) -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestCurrentStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestCurrentStats(struct w_steam_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestCurrentStats_params params = { @@ -1594,7 +1594,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestCu return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_params params = { @@ -1607,7 +1607,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat(s return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2_params params = { @@ -1620,7 +1620,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2 return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_params params = { @@ -1633,7 +1633,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat(s return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2_params params = { @@ -1646,7 +1646,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2 return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvgRateStat_params params = { @@ -1660,7 +1660,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvg return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievement(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievement(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievement_params params = { @@ -1673,7 +1673,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetAchievement(struct w_steam_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetAchievement_params params = { @@ -1685,7 +1685,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ClearAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ClearAchievement(struct w_steam_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ClearAchievement_params params = { @@ -1697,7 +1697,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ClearAchi return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_StoreStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_StoreStats(struct w_steam_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_StoreStats_params params = { @@ -1733,7 +1733,7 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_G return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_IndicateAchievementProgress_params params = { @@ -1759,7 +1759,7 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_Reque return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_params params = { @@ -1773,7 +1773,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserSt return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_2_params params = { @@ -1787,7 +1787,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserSt return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAchievement_params params = { @@ -1801,7 +1801,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAc return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ResetAllStats(struct w_steam_iface *_this, bool bAchievementsToo) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ResetAllStats(struct w_steam_iface *_this, int8_t bAchievementsToo) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ResetAllStats_params params = { @@ -1902,7 +1902,7 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_Downl return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_104 *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_104 *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDownloadedLeaderboardEntry_params params = { @@ -2022,7 +2022,7 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_G DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UploadLeaderboardScore, 28) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetNumberOfCurrentPlayers, 4) -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestCurrentStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestCurrentStats(struct w_steam_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestCurrentStats_params params = { @@ -2033,7 +2033,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestCu return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_params params = { @@ -2046,7 +2046,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat(s return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2_params params = { @@ -2059,7 +2059,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2 return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_params params = { @@ -2072,7 +2072,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat(s return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2_params params = { @@ -2085,7 +2085,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2 return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvgRateStat_params params = { @@ -2099,7 +2099,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvg return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievement(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievement(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievement_params params = { @@ -2112,7 +2112,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetAchievement(struct w_steam_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetAchievement_params params = { @@ -2124,7 +2124,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ClearAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ClearAchievement(struct w_steam_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ClearAchievement_params params = { @@ -2136,7 +2136,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ClearAchi return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementAndUnlockTime(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved, uint32_t *punUnlockTime) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementAndUnlockTime(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementAndUnlockTime_params params = { @@ -2150,7 +2150,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_StoreStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_StoreStats(struct w_steam_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_StoreStats_params params = { @@ -2186,7 +2186,7 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_G return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_IndicateAchievementProgress_params params = { @@ -2212,7 +2212,7 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_Reque return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_params params = { @@ -2226,7 +2226,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserSt return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_2_params params = { @@ -2240,7 +2240,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserSt return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievement_params params = { @@ -2254,7 +2254,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAc return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievementAndUnlockTime(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved, uint32_t *punUnlockTime) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievementAndUnlockTime(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievementAndUnlockTime_params params = { @@ -2269,7 +2269,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAc return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ResetAllStats(struct w_steam_iface *_this, bool bAchievementsToo) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ResetAllStats(struct w_steam_iface *_this, int8_t bAchievementsToo) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ResetAllStats_params params = { @@ -2370,7 +2370,7 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_Downl return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_104 *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_104 *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDownloadedLeaderboardEntry_params params = { @@ -2493,7 +2493,7 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_U DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_AttachLeaderboardUGC, 20) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetNumberOfCurrentPlayers, 4) -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestCurrentStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestCurrentStats(struct w_steam_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestCurrentStats_params params = { @@ -2504,7 +2504,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestCu return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_params params = { @@ -2517,7 +2517,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat(s return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2_params params = { @@ -2530,7 +2530,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2 return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_params params = { @@ -2543,7 +2543,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat(s return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2_params params = { @@ -2556,7 +2556,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2 return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvgRateStat_params params = { @@ -2570,7 +2570,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvg return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievement(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievement(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievement_params params = { @@ -2583,7 +2583,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetAchievement(struct w_steam_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetAchievement_params params = { @@ -2595,7 +2595,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ClearAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ClearAchievement(struct w_steam_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ClearAchievement_params params = { @@ -2607,7 +2607,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ClearAchi return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementAndUnlockTime(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved, uint32_t *punUnlockTime) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementAndUnlockTime(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementAndUnlockTime_params params = { @@ -2621,7 +2621,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_StoreStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_StoreStats(struct w_steam_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_StoreStats_params params = { @@ -2657,7 +2657,7 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_G return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_IndicateAchievementProgress_params params = { @@ -2683,7 +2683,7 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_Reque return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_params params = { @@ -2697,7 +2697,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserSt return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_2_params params = { @@ -2711,7 +2711,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserSt return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievement_params params = { @@ -2725,7 +2725,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAc return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievementAndUnlockTime(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved, uint32_t *punUnlockTime) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievementAndUnlockTime(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievementAndUnlockTime_params params = { @@ -2740,7 +2740,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAc return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ResetAllStats(struct w_steam_iface *_this, bool bAchievementsToo) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ResetAllStats(struct w_steam_iface *_this, int8_t bAchievementsToo) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ResetAllStats_params params = { @@ -2841,7 +2841,7 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_Downl return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_111x *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_111x *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDownloadedLeaderboardEntry_params params = { @@ -2979,7 +2979,7 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_U DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_AttachLeaderboardUGC, 20) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetNumberOfCurrentPlayers, 4) -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestCurrentStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestCurrentStats(struct w_steam_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestCurrentStats_params params = { @@ -2990,7 +2990,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestCu return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_params params = { @@ -3003,7 +3003,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat(s return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2_params params = { @@ -3016,7 +3016,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2 return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_params params = { @@ -3029,7 +3029,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat(s return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2_params params = { @@ -3042,7 +3042,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2 return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvgRateStat_params params = { @@ -3056,7 +3056,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvg return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievement(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievement(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievement_params params = { @@ -3069,7 +3069,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetAchievement(struct w_steam_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetAchievement_params params = { @@ -3081,7 +3081,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ClearAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ClearAchievement(struct w_steam_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ClearAchievement_params params = { @@ -3093,7 +3093,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ClearAchi return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementAndUnlockTime(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved, uint32_t *punUnlockTime) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementAndUnlockTime(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementAndUnlockTime_params params = { @@ -3107,7 +3107,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_StoreStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_StoreStats(struct w_steam_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_StoreStats_params params = { @@ -3143,7 +3143,7 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_G return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_IndicateAchievementProgress_params params = { @@ -3169,7 +3169,7 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_Reque return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_params params = { @@ -3183,7 +3183,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserSt return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_2_params params = { @@ -3197,7 +3197,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserSt return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievement_params params = { @@ -3211,7 +3211,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAc return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievementAndUnlockTime(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved, uint32_t *punUnlockTime) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievementAndUnlockTime(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievementAndUnlockTime_params params = { @@ -3226,7 +3226,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAc return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ResetAllStats(struct w_steam_iface *_this, bool bAchievementsToo) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ResetAllStats(struct w_steam_iface *_this, int8_t bAchievementsToo) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ResetAllStats_params params = { @@ -3341,7 +3341,7 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_Downl return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_111x *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_111x *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDownloadedLeaderboardEntry_params params = { @@ -3489,7 +3489,7 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_G DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory, 16) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_2, 16) -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats(struct w_steam_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats_params params = { @@ -3500,7 +3500,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCu return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_params params = { @@ -3513,7 +3513,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat(s return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2_params params = { @@ -3526,7 +3526,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2 return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_params params = { @@ -3539,7 +3539,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat(s return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2_params params = { @@ -3552,7 +3552,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2 return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat_params params = { @@ -3566,7 +3566,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvg return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement_params params = { @@ -3579,7 +3579,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchievement(struct w_steam_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchievement_params params = { @@ -3591,7 +3591,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAchievement(struct w_steam_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAchievement_params params = { @@ -3603,7 +3603,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAchi return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUnlockTime(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved, uint32_t *punUnlockTime) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUnlockTime(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUnlockTime_params params = { @@ -3617,7 +3617,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_StoreStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_StoreStats(struct w_steam_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_StoreStats_params params = { @@ -3653,7 +3653,7 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_G return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievementProgress_params params = { @@ -3679,7 +3679,7 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_Reque return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_params params = { @@ -3693,7 +3693,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserSt return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2_params params = { @@ -3707,7 +3707,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserSt return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement_params params = { @@ -3721,7 +3721,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAc return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementAndUnlockTime(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved, uint32_t *punUnlockTime) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementAndUnlockTime(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementAndUnlockTime_params params = { @@ -3736,7 +3736,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAc return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ResetAllStats(struct w_steam_iface *_this, bool bAchievementsToo) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ResetAllStats(struct w_steam_iface *_this, int8_t bAchievementsToo) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ResetAllStats_params params = { @@ -3851,7 +3851,7 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_Downl return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_111x *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_111x *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeaderboardEntry_params params = { @@ -3918,7 +3918,7 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_Reque return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMostAchievedAchievementInfo(struct w_steam_iface *_this, char *pchName, uint32_t unNameBufLen, float *pflPercent, bool *pbAchieved) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMostAchievedAchievementInfo(struct w_steam_iface *_this, char *pchName, uint32_t unNameBufLen, float *pflPercent, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMostAchievedAchievementInfo_params params = { @@ -3933,7 +3933,7 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMos return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAchievementInfo(struct w_steam_iface *_this, int32_t iIteratorPrevious, char *pchName, uint32_t unNameBufLen, float *pflPercent, bool *pbAchieved) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAchievementInfo(struct w_steam_iface *_this, int32_t iIteratorPrevious, char *pchName, uint32_t unNameBufLen, float *pflPercent, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAchievementInfo_params params = { @@ -3949,7 +3949,7 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNex return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchievedPercent(struct w_steam_iface *_this, const char *pchName, float *pflPercent) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchievedPercent(struct w_steam_iface *_this, const char *pchName, float *pflPercent) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchievedPercent_params params = { @@ -3974,7 +3974,7 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_Reque return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat(struct w_steam_iface *_this, const char *pchStatName, int64_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat(struct w_steam_iface *_this, const char *pchStatName, int64_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_params params = { @@ -3987,7 +3987,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobal return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2(struct w_steam_iface *_this, const char *pchStatName, double *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2(struct w_steam_iface *_this, const char *pchStatName, double *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2_params params = { @@ -4131,7 +4131,7 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_G DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory, 16) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_2, 16) -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestCurrentStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestCurrentStats(struct w_steam_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestCurrentStats_params params = { @@ -4142,7 +4142,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestCu return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_params params = { @@ -4155,7 +4155,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat(s return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2_params params = { @@ -4168,7 +4168,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2 return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_params params = { @@ -4181,7 +4181,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat(s return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2_params params = { @@ -4194,7 +4194,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2 return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvgRateStat_params params = { @@ -4208,7 +4208,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvg return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievement(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievement(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievement_params params = { @@ -4221,7 +4221,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetAchievement(struct w_steam_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetAchievement_params params = { @@ -4233,7 +4233,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ClearAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ClearAchievement(struct w_steam_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ClearAchievement_params params = { @@ -4245,7 +4245,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ClearAchi return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAndUnlockTime(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved, uint32_t *punUnlockTime) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAndUnlockTime(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAndUnlockTime_params params = { @@ -4259,7 +4259,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_StoreStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_StoreStats(struct w_steam_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_StoreStats_params params = { @@ -4295,7 +4295,7 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_G return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_IndicateAchievementProgress_params params = { @@ -4344,7 +4344,7 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_Reque return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_params params = { @@ -4358,7 +4358,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserSt return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_2_params params = { @@ -4372,7 +4372,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserSt return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievement_params params = { @@ -4386,7 +4386,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAc return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievementAndUnlockTime(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved, uint32_t *punUnlockTime) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievementAndUnlockTime(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievementAndUnlockTime_params params = { @@ -4401,7 +4401,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAc return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ResetAllStats(struct w_steam_iface *_this, bool bAchievementsToo) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ResetAllStats(struct w_steam_iface *_this, int8_t bAchievementsToo) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ResetAllStats_params params = { @@ -4516,7 +4516,7 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_Downl return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_123 *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_123 *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDownloadedLeaderboardEntry_params params = { @@ -4583,7 +4583,7 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_Reque return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMostAchievedAchievementInfo(struct w_steam_iface *_this, char *pchName, uint32_t unNameBufLen, float *pflPercent, bool *pbAchieved) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMostAchievedAchievementInfo(struct w_steam_iface *_this, char *pchName, uint32_t unNameBufLen, float *pflPercent, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMostAchievedAchievementInfo_params params = { @@ -4598,7 +4598,7 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMos return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNextMostAchievedAchievementInfo(struct w_steam_iface *_this, int32_t iIteratorPrevious, char *pchName, uint32_t unNameBufLen, float *pflPercent, bool *pbAchieved) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNextMostAchievedAchievementInfo(struct w_steam_iface *_this, int32_t iIteratorPrevious, char *pchName, uint32_t unNameBufLen, float *pflPercent, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNextMostAchievedAchievementInfo_params params = { @@ -4614,7 +4614,7 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNex return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAchievedPercent(struct w_steam_iface *_this, const char *pchName, float *pflPercent) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAchievedPercent(struct w_steam_iface *_this, const char *pchName, float *pflPercent) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAchievedPercent_params params = { @@ -4639,7 +4639,7 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_Reque return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat(struct w_steam_iface *_this, const char *pchStatName, int64_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat(struct w_steam_iface *_this, const char *pchStatName, int64_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_params params = { @@ -4652,7 +4652,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobal return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_2(struct w_steam_iface *_this, const char *pchStatName, double *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_2(struct w_steam_iface *_this, const char *pchStatName, double *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_2_params params = { @@ -4800,7 +4800,7 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_G DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits, 16) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_2, 16) -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestCurrentStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestCurrentStats(struct w_steam_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestCurrentStats_params params = { @@ -4811,7 +4811,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestCu return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_params params = { @@ -4824,7 +4824,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat(s return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2_params params = { @@ -4837,7 +4837,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2 return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_params params = { @@ -4850,7 +4850,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat(s return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2_params params = { @@ -4863,7 +4863,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2 return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvgRateStat_params params = { @@ -4877,7 +4877,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvg return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievement(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievement(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievement_params params = { @@ -4890,7 +4890,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetAchievement(struct w_steam_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetAchievement_params params = { @@ -4902,7 +4902,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ClearAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ClearAchievement(struct w_steam_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ClearAchievement_params params = { @@ -4914,7 +4914,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ClearAchi return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAndUnlockTime(struct w_steam_iface *_this, const char *pchName, bool *pbAchieved, uint32_t *punUnlockTime) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAndUnlockTime(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAndUnlockTime_params params = { @@ -4928,7 +4928,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_StoreStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_StoreStats(struct w_steam_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_StoreStats_params params = { @@ -4964,7 +4964,7 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_G return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_IndicateAchievementProgress_params params = { @@ -5013,7 +5013,7 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_Reque return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_params params = { @@ -5027,7 +5027,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserSt return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_2_params params = { @@ -5041,7 +5041,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserSt return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievement_params params = { @@ -5055,7 +5055,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAc return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievementAndUnlockTime(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, bool *pbAchieved, uint32_t *punUnlockTime) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievementAndUnlockTime(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievementAndUnlockTime_params params = { @@ -5070,7 +5070,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAc return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ResetAllStats(struct w_steam_iface *_this, bool bAchievementsToo) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ResetAllStats(struct w_steam_iface *_this, int8_t bAchievementsToo) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ResetAllStats_params params = { @@ -5185,7 +5185,7 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_Downl return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_123 *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_123 *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDownloadedLeaderboardEntry_params params = { @@ -5252,7 +5252,7 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_Reque return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMostAchievedAchievementInfo(struct w_steam_iface *_this, char *pchName, uint32_t unNameBufLen, float *pflPercent, bool *pbAchieved) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMostAchievedAchievementInfo(struct w_steam_iface *_this, char *pchName, uint32_t unNameBufLen, float *pflPercent, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMostAchievedAchievementInfo_params params = { @@ -5267,7 +5267,7 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMos return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNextMostAchievedAchievementInfo(struct w_steam_iface *_this, int32_t iIteratorPrevious, char *pchName, uint32_t unNameBufLen, float *pflPercent, bool *pbAchieved) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNextMostAchievedAchievementInfo(struct w_steam_iface *_this, int32_t iIteratorPrevious, char *pchName, uint32_t unNameBufLen, float *pflPercent, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNextMostAchievedAchievementInfo_params params = { @@ -5283,7 +5283,7 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNex return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAchievedPercent(struct w_steam_iface *_this, const char *pchName, float *pflPercent) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAchievedPercent(struct w_steam_iface *_this, const char *pchName, float *pflPercent) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAchievedPercent_params params = { @@ -5308,7 +5308,7 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_Reque return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat(struct w_steam_iface *_this, const char *pchStatName, int64_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat(struct w_steam_iface *_this, const char *pchStatName, int64_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_params params = { @@ -5321,7 +5321,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobal return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_2(struct w_steam_iface *_this, const char *pchStatName, double *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_2(struct w_steam_iface *_this, const char *pchStatName, double *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_2_params params = { @@ -5362,7 +5362,7 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlo return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits(struct w_steam_iface *_this, const char *pchName, int32_t *pnMinProgress, int32_t *pnMaxProgress) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits(struct w_steam_iface *_this, const char *pchName, int32_t *pnMinProgress, int32_t *pnMaxProgress) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_params params = { @@ -5376,7 +5376,7 @@ bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchiev return params._ret; } -bool __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_2(struct w_steam_iface *_this, const char *pchName, float *pfMinProgress, float *pfMaxProgress) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_2(struct w_steam_iface *_this, const char *pchName, float *pfMinProgress, float *pfMaxProgress) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_2_params params = { diff --git a/lsteamclient/winISteamUtils.c b/lsteamclient/winISteamUtils.c index 04b5951f..9ab8f81e 100644 --- a/lsteamclient/winISteamUtils.c +++ b/lsteamclient/winISteamUtils.c @@ -73,7 +73,7 @@ const char * __thiscall winISteamUtils_SteamUtils002_GetIPCountry(struct w_steam return params._ret; } -bool __thiscall winISteamUtils_SteamUtils002_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) +int8_t __thiscall winISteamUtils_SteamUtils002_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) { struct ISteamUtils_SteamUtils002_GetImageSize_params params = { @@ -87,7 +87,7 @@ bool __thiscall winISteamUtils_SteamUtils002_GetImageSize(struct w_steam_iface * return params._ret; } -bool __thiscall winISteamUtils_SteamUtils002_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) +int8_t __thiscall winISteamUtils_SteamUtils002_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) { struct ISteamUtils_SteamUtils002_GetImageRGBA_params params = { @@ -101,7 +101,7 @@ bool __thiscall winISteamUtils_SteamUtils002_GetImageRGBA(struct w_steam_iface * return params._ret; } -bool __thiscall winISteamUtils_SteamUtils002_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) +int8_t __thiscall winISteamUtils_SteamUtils002_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) { struct ISteamUtils_SteamUtils002_GetCSERIPPort_params params = { @@ -147,7 +147,7 @@ void __thiscall winISteamUtils_SteamUtils002_SetOverlayNotificationPosition(stru STEAMCLIENT_CALL( ISteamUtils_SteamUtils002_SetOverlayNotificationPosition, ¶ms ); } -bool __thiscall winISteamUtils_SteamUtils002_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, bool *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils002_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, int8_t *pbFailed) { struct ISteamUtils_SteamUtils002_IsAPICallCompleted_params params = { @@ -172,7 +172,7 @@ uint32_t __thiscall winISteamUtils_SteamUtils002_GetAPICallFailureReason(struct return params._ret; } -bool __thiscall winISteamUtils_SteamUtils002_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, bool *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils002_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, int8_t *pbFailed) { struct ISteamUtils_SteamUtils002_GetAPICallResult_params params = { @@ -294,7 +294,7 @@ const char * __thiscall winISteamUtils_SteamUtils004_GetIPCountry(struct w_steam return params._ret; } -bool __thiscall winISteamUtils_SteamUtils004_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) +int8_t __thiscall winISteamUtils_SteamUtils004_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) { struct ISteamUtils_SteamUtils004_GetImageSize_params params = { @@ -308,7 +308,7 @@ bool __thiscall winISteamUtils_SteamUtils004_GetImageSize(struct w_steam_iface * return params._ret; } -bool __thiscall winISteamUtils_SteamUtils004_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) +int8_t __thiscall winISteamUtils_SteamUtils004_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) { struct ISteamUtils_SteamUtils004_GetImageRGBA_params params = { @@ -322,7 +322,7 @@ bool __thiscall winISteamUtils_SteamUtils004_GetImageRGBA(struct w_steam_iface * return params._ret; } -bool __thiscall winISteamUtils_SteamUtils004_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) +int8_t __thiscall winISteamUtils_SteamUtils004_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) { struct ISteamUtils_SteamUtils004_GetCSERIPPort_params params = { @@ -368,7 +368,7 @@ void __thiscall winISteamUtils_SteamUtils004_SetOverlayNotificationPosition(stru STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_SetOverlayNotificationPosition, ¶ms ); } -bool __thiscall winISteamUtils_SteamUtils004_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, bool *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils004_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, int8_t *pbFailed) { struct ISteamUtils_SteamUtils004_IsAPICallCompleted_params params = { @@ -393,7 +393,7 @@ uint32_t __thiscall winISteamUtils_SteamUtils004_GetAPICallFailureReason(struct return params._ret; } -bool __thiscall winISteamUtils_SteamUtils004_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, bool *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils004_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, int8_t *pbFailed) { struct ISteamUtils_SteamUtils004_GetAPICallResult_params params = { @@ -441,7 +441,7 @@ void __thiscall winISteamUtils_SteamUtils004_SetWarningMessageHook(struct w_stea STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_SetWarningMessageHook, ¶ms ); } -bool __thiscall winISteamUtils_SteamUtils004_IsOverlayEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils004_IsOverlayEnabled(struct w_steam_iface *_this) { struct ISteamUtils_SteamUtils004_IsOverlayEnabled_params params = { @@ -567,7 +567,7 @@ const char * __thiscall winISteamUtils_SteamUtils005_GetIPCountry(struct w_steam return params._ret; } -bool __thiscall winISteamUtils_SteamUtils005_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) +int8_t __thiscall winISteamUtils_SteamUtils005_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) { struct ISteamUtils_SteamUtils005_GetImageSize_params params = { @@ -581,7 +581,7 @@ bool __thiscall winISteamUtils_SteamUtils005_GetImageSize(struct w_steam_iface * return params._ret; } -bool __thiscall winISteamUtils_SteamUtils005_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) +int8_t __thiscall winISteamUtils_SteamUtils005_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) { struct ISteamUtils_SteamUtils005_GetImageRGBA_params params = { @@ -595,7 +595,7 @@ bool __thiscall winISteamUtils_SteamUtils005_GetImageRGBA(struct w_steam_iface * return params._ret; } -bool __thiscall winISteamUtils_SteamUtils005_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) +int8_t __thiscall winISteamUtils_SteamUtils005_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) { struct ISteamUtils_SteamUtils005_GetCSERIPPort_params params = { @@ -641,7 +641,7 @@ void __thiscall winISteamUtils_SteamUtils005_SetOverlayNotificationPosition(stru STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_SetOverlayNotificationPosition, ¶ms ); } -bool __thiscall winISteamUtils_SteamUtils005_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, bool *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils005_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, int8_t *pbFailed) { struct ISteamUtils_SteamUtils005_IsAPICallCompleted_params params = { @@ -666,7 +666,7 @@ uint32_t __thiscall winISteamUtils_SteamUtils005_GetAPICallFailureReason(struct return params._ret; } -bool __thiscall winISteamUtils_SteamUtils005_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, bool *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils005_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, int8_t *pbFailed) { struct ISteamUtils_SteamUtils005_GetAPICallResult_params params = { @@ -714,7 +714,7 @@ void __thiscall winISteamUtils_SteamUtils005_SetWarningMessageHook(struct w_stea STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_SetWarningMessageHook, ¶ms ); } -bool __thiscall winISteamUtils_SteamUtils005_IsOverlayEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils005_IsOverlayEnabled(struct w_steam_iface *_this) { struct ISteamUtils_SteamUtils005_IsOverlayEnabled_params params = { @@ -725,7 +725,7 @@ bool __thiscall winISteamUtils_SteamUtils005_IsOverlayEnabled(struct w_steam_ifa return params._ret; } -bool __thiscall winISteamUtils_SteamUtils005_BOverlayNeedsPresent(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils005_BOverlayNeedsPresent(struct w_steam_iface *_this) { struct ISteamUtils_SteamUtils005_BOverlayNeedsPresent_params params = { @@ -748,7 +748,7 @@ uint64_t __thiscall winISteamUtils_SteamUtils005_CheckFileSignature(struct w_ste return params._ret; } -bool __thiscall winISteamUtils_SteamUtils005_ShowGamepadTextInput(struct w_steam_iface *_this, uint32_t eInputMode, uint32_t eLineInputMode, const char *pchDescription, uint32_t unCharMax) +int8_t __thiscall winISteamUtils_SteamUtils005_ShowGamepadTextInput(struct w_steam_iface *_this, uint32_t eInputMode, uint32_t eLineInputMode, const char *pchDescription, uint32_t unCharMax) { struct ISteamUtils_SteamUtils005_ShowGamepadTextInput_params params = { @@ -774,7 +774,7 @@ uint32_t __thiscall winISteamUtils_SteamUtils005_GetEnteredGamepadTextLength(str return params._ret; } -bool __thiscall winISteamUtils_SteamUtils005_GetEnteredGamepadTextInput(struct w_steam_iface *_this, char *pchText, uint32_t cchText) +int8_t __thiscall winISteamUtils_SteamUtils005_GetEnteredGamepadTextInput(struct w_steam_iface *_this, char *pchText, uint32_t cchText) { struct ISteamUtils_SteamUtils005_GetEnteredGamepadTextInput_params params = { @@ -909,7 +909,7 @@ const char * __thiscall winISteamUtils_SteamUtils006_GetIPCountry(struct w_steam return params._ret; } -bool __thiscall winISteamUtils_SteamUtils006_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) +int8_t __thiscall winISteamUtils_SteamUtils006_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) { struct ISteamUtils_SteamUtils006_GetImageSize_params params = { @@ -923,7 +923,7 @@ bool __thiscall winISteamUtils_SteamUtils006_GetImageSize(struct w_steam_iface * return params._ret; } -bool __thiscall winISteamUtils_SteamUtils006_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) +int8_t __thiscall winISteamUtils_SteamUtils006_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) { struct ISteamUtils_SteamUtils006_GetImageRGBA_params params = { @@ -937,7 +937,7 @@ bool __thiscall winISteamUtils_SteamUtils006_GetImageRGBA(struct w_steam_iface * return params._ret; } -bool __thiscall winISteamUtils_SteamUtils006_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) +int8_t __thiscall winISteamUtils_SteamUtils006_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) { struct ISteamUtils_SteamUtils006_GetCSERIPPort_params params = { @@ -983,7 +983,7 @@ void __thiscall winISteamUtils_SteamUtils006_SetOverlayNotificationPosition(stru STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_SetOverlayNotificationPosition, ¶ms ); } -bool __thiscall winISteamUtils_SteamUtils006_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, bool *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils006_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, int8_t *pbFailed) { struct ISteamUtils_SteamUtils006_IsAPICallCompleted_params params = { @@ -1008,7 +1008,7 @@ uint32_t __thiscall winISteamUtils_SteamUtils006_GetAPICallFailureReason(struct return params._ret; } -bool __thiscall winISteamUtils_SteamUtils006_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, bool *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils006_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, int8_t *pbFailed) { struct ISteamUtils_SteamUtils006_GetAPICallResult_params params = { @@ -1056,7 +1056,7 @@ void __thiscall winISteamUtils_SteamUtils006_SetWarningMessageHook(struct w_stea STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_SetWarningMessageHook, ¶ms ); } -bool __thiscall winISteamUtils_SteamUtils006_IsOverlayEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils006_IsOverlayEnabled(struct w_steam_iface *_this) { struct ISteamUtils_SteamUtils006_IsOverlayEnabled_params params = { @@ -1067,7 +1067,7 @@ bool __thiscall winISteamUtils_SteamUtils006_IsOverlayEnabled(struct w_steam_ifa return params._ret; } -bool __thiscall winISteamUtils_SteamUtils006_BOverlayNeedsPresent(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils006_BOverlayNeedsPresent(struct w_steam_iface *_this) { struct ISteamUtils_SteamUtils006_BOverlayNeedsPresent_params params = { @@ -1090,7 +1090,7 @@ uint64_t __thiscall winISteamUtils_SteamUtils006_CheckFileSignature(struct w_ste return params._ret; } -bool __thiscall winISteamUtils_SteamUtils006_ShowGamepadTextInput(struct w_steam_iface *_this, uint32_t eInputMode, uint32_t eLineInputMode, const char *pchDescription, uint32_t unCharMax) +int8_t __thiscall winISteamUtils_SteamUtils006_ShowGamepadTextInput(struct w_steam_iface *_this, uint32_t eInputMode, uint32_t eLineInputMode, const char *pchDescription, uint32_t unCharMax) { struct ISteamUtils_SteamUtils006_ShowGamepadTextInput_params params = { @@ -1116,7 +1116,7 @@ uint32_t __thiscall winISteamUtils_SteamUtils006_GetEnteredGamepadTextLength(str return params._ret; } -bool __thiscall winISteamUtils_SteamUtils006_GetEnteredGamepadTextInput(struct w_steam_iface *_this, char *pchText, uint32_t cchText) +int8_t __thiscall winISteamUtils_SteamUtils006_GetEnteredGamepadTextInput(struct w_steam_iface *_this, char *pchText, uint32_t cchText) { struct ISteamUtils_SteamUtils006_GetEnteredGamepadTextInput_params params = { @@ -1140,7 +1140,7 @@ const char * __thiscall winISteamUtils_SteamUtils006_GetSteamUILanguage(struct w return params._ret; } -bool __thiscall winISteamUtils_SteamUtils006_IsSteamRunningInVR(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils006_IsSteamRunningInVR(struct w_steam_iface *_this) { struct ISteamUtils_SteamUtils006_IsSteamRunningInVR_params params = { @@ -1276,7 +1276,7 @@ const char * __thiscall winISteamUtils_SteamUtils007_GetIPCountry(struct w_steam return params._ret; } -bool __thiscall winISteamUtils_SteamUtils007_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) +int8_t __thiscall winISteamUtils_SteamUtils007_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) { struct ISteamUtils_SteamUtils007_GetImageSize_params params = { @@ -1290,7 +1290,7 @@ bool __thiscall winISteamUtils_SteamUtils007_GetImageSize(struct w_steam_iface * return params._ret; } -bool __thiscall winISteamUtils_SteamUtils007_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) +int8_t __thiscall winISteamUtils_SteamUtils007_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) { struct ISteamUtils_SteamUtils007_GetImageRGBA_params params = { @@ -1304,7 +1304,7 @@ bool __thiscall winISteamUtils_SteamUtils007_GetImageRGBA(struct w_steam_iface * return params._ret; } -bool __thiscall winISteamUtils_SteamUtils007_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) +int8_t __thiscall winISteamUtils_SteamUtils007_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) { struct ISteamUtils_SteamUtils007_GetCSERIPPort_params params = { @@ -1350,7 +1350,7 @@ void __thiscall winISteamUtils_SteamUtils007_SetOverlayNotificationPosition(stru STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_SetOverlayNotificationPosition, ¶ms ); } -bool __thiscall winISteamUtils_SteamUtils007_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, bool *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils007_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, int8_t *pbFailed) { struct ISteamUtils_SteamUtils007_IsAPICallCompleted_params params = { @@ -1375,7 +1375,7 @@ uint32_t __thiscall winISteamUtils_SteamUtils007_GetAPICallFailureReason(struct return params._ret; } -bool __thiscall winISteamUtils_SteamUtils007_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, bool *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils007_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, int8_t *pbFailed) { struct ISteamUtils_SteamUtils007_GetAPICallResult_params params = { @@ -1423,7 +1423,7 @@ void __thiscall winISteamUtils_SteamUtils007_SetWarningMessageHook(struct w_stea STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_SetWarningMessageHook, ¶ms ); } -bool __thiscall winISteamUtils_SteamUtils007_IsOverlayEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils007_IsOverlayEnabled(struct w_steam_iface *_this) { struct ISteamUtils_SteamUtils007_IsOverlayEnabled_params params = { @@ -1434,7 +1434,7 @@ bool __thiscall winISteamUtils_SteamUtils007_IsOverlayEnabled(struct w_steam_ifa return params._ret; } -bool __thiscall winISteamUtils_SteamUtils007_BOverlayNeedsPresent(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils007_BOverlayNeedsPresent(struct w_steam_iface *_this) { struct ISteamUtils_SteamUtils007_BOverlayNeedsPresent_params params = { @@ -1457,7 +1457,7 @@ uint64_t __thiscall winISteamUtils_SteamUtils007_CheckFileSignature(struct w_ste return params._ret; } -bool __thiscall winISteamUtils_SteamUtils007_ShowGamepadTextInput(struct w_steam_iface *_this, uint32_t eInputMode, uint32_t eLineInputMode, const char *pchDescription, uint32_t unCharMax, const char *pchExistingText) +int8_t __thiscall winISteamUtils_SteamUtils007_ShowGamepadTextInput(struct w_steam_iface *_this, uint32_t eInputMode, uint32_t eLineInputMode, const char *pchDescription, uint32_t unCharMax, const char *pchExistingText) { struct ISteamUtils_SteamUtils007_ShowGamepadTextInput_params params = { @@ -1484,7 +1484,7 @@ uint32_t __thiscall winISteamUtils_SteamUtils007_GetEnteredGamepadTextLength(str return params._ret; } -bool __thiscall winISteamUtils_SteamUtils007_GetEnteredGamepadTextInput(struct w_steam_iface *_this, char *pchText, uint32_t cchText) +int8_t __thiscall winISteamUtils_SteamUtils007_GetEnteredGamepadTextInput(struct w_steam_iface *_this, char *pchText, uint32_t cchText) { struct ISteamUtils_SteamUtils007_GetEnteredGamepadTextInput_params params = { @@ -1508,7 +1508,7 @@ const char * __thiscall winISteamUtils_SteamUtils007_GetSteamUILanguage(struct w return params._ret; } -bool __thiscall winISteamUtils_SteamUtils007_IsSteamRunningInVR(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils007_IsSteamRunningInVR(struct w_steam_iface *_this) { struct ISteamUtils_SteamUtils007_IsSteamRunningInVR_params params = { @@ -1659,7 +1659,7 @@ const char * __thiscall winISteamUtils_SteamUtils008_GetIPCountry(struct w_steam return params._ret; } -bool __thiscall winISteamUtils_SteamUtils008_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) +int8_t __thiscall winISteamUtils_SteamUtils008_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) { struct ISteamUtils_SteamUtils008_GetImageSize_params params = { @@ -1673,7 +1673,7 @@ bool __thiscall winISteamUtils_SteamUtils008_GetImageSize(struct w_steam_iface * return params._ret; } -bool __thiscall winISteamUtils_SteamUtils008_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) +int8_t __thiscall winISteamUtils_SteamUtils008_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) { struct ISteamUtils_SteamUtils008_GetImageRGBA_params params = { @@ -1687,7 +1687,7 @@ bool __thiscall winISteamUtils_SteamUtils008_GetImageRGBA(struct w_steam_iface * return params._ret; } -bool __thiscall winISteamUtils_SteamUtils008_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) +int8_t __thiscall winISteamUtils_SteamUtils008_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) { struct ISteamUtils_SteamUtils008_GetCSERIPPort_params params = { @@ -1733,7 +1733,7 @@ void __thiscall winISteamUtils_SteamUtils008_SetOverlayNotificationPosition(stru STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_SetOverlayNotificationPosition, ¶ms ); } -bool __thiscall winISteamUtils_SteamUtils008_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, bool *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils008_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, int8_t *pbFailed) { struct ISteamUtils_SteamUtils008_IsAPICallCompleted_params params = { @@ -1758,7 +1758,7 @@ uint32_t __thiscall winISteamUtils_SteamUtils008_GetAPICallFailureReason(struct return params._ret; } -bool __thiscall winISteamUtils_SteamUtils008_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, bool *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils008_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, int8_t *pbFailed) { struct ISteamUtils_SteamUtils008_GetAPICallResult_params params = { @@ -1806,7 +1806,7 @@ void __thiscall winISteamUtils_SteamUtils008_SetWarningMessageHook(struct w_stea STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_SetWarningMessageHook, ¶ms ); } -bool __thiscall winISteamUtils_SteamUtils008_IsOverlayEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils008_IsOverlayEnabled(struct w_steam_iface *_this) { struct ISteamUtils_SteamUtils008_IsOverlayEnabled_params params = { @@ -1817,7 +1817,7 @@ bool __thiscall winISteamUtils_SteamUtils008_IsOverlayEnabled(struct w_steam_ifa return params._ret; } -bool __thiscall winISteamUtils_SteamUtils008_BOverlayNeedsPresent(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils008_BOverlayNeedsPresent(struct w_steam_iface *_this) { struct ISteamUtils_SteamUtils008_BOverlayNeedsPresent_params params = { @@ -1840,7 +1840,7 @@ uint64_t __thiscall winISteamUtils_SteamUtils008_CheckFileSignature(struct w_ste return params._ret; } -bool __thiscall winISteamUtils_SteamUtils008_ShowGamepadTextInput(struct w_steam_iface *_this, uint32_t eInputMode, uint32_t eLineInputMode, const char *pchDescription, uint32_t unCharMax, const char *pchExistingText) +int8_t __thiscall winISteamUtils_SteamUtils008_ShowGamepadTextInput(struct w_steam_iface *_this, uint32_t eInputMode, uint32_t eLineInputMode, const char *pchDescription, uint32_t unCharMax, const char *pchExistingText) { struct ISteamUtils_SteamUtils008_ShowGamepadTextInput_params params = { @@ -1867,7 +1867,7 @@ uint32_t __thiscall winISteamUtils_SteamUtils008_GetEnteredGamepadTextLength(str return params._ret; } -bool __thiscall winISteamUtils_SteamUtils008_GetEnteredGamepadTextInput(struct w_steam_iface *_this, char *pchText, uint32_t cchText) +int8_t __thiscall winISteamUtils_SteamUtils008_GetEnteredGamepadTextInput(struct w_steam_iface *_this, char *pchText, uint32_t cchText) { struct ISteamUtils_SteamUtils008_GetEnteredGamepadTextInput_params params = { @@ -1891,7 +1891,7 @@ const char * __thiscall winISteamUtils_SteamUtils008_GetSteamUILanguage(struct w return params._ret; } -bool __thiscall winISteamUtils_SteamUtils008_IsSteamRunningInVR(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils008_IsSteamRunningInVR(struct w_steam_iface *_this) { struct ISteamUtils_SteamUtils008_IsSteamRunningInVR_params params = { @@ -1914,7 +1914,7 @@ void __thiscall winISteamUtils_SteamUtils008_SetOverlayNotificationInset(struct STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_SetOverlayNotificationInset, ¶ms ); } -bool __thiscall winISteamUtils_SteamUtils008_IsSteamInBigPictureMode(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils008_IsSteamInBigPictureMode(struct w_steam_iface *_this) { struct ISteamUtils_SteamUtils008_IsSteamInBigPictureMode_params params = { @@ -2071,7 +2071,7 @@ const char * __thiscall winISteamUtils_SteamUtils009_GetIPCountry(struct w_steam return params._ret; } -bool __thiscall winISteamUtils_SteamUtils009_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) +int8_t __thiscall winISteamUtils_SteamUtils009_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) { struct ISteamUtils_SteamUtils009_GetImageSize_params params = { @@ -2085,7 +2085,7 @@ bool __thiscall winISteamUtils_SteamUtils009_GetImageSize(struct w_steam_iface * return params._ret; } -bool __thiscall winISteamUtils_SteamUtils009_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) +int8_t __thiscall winISteamUtils_SteamUtils009_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) { struct ISteamUtils_SteamUtils009_GetImageRGBA_params params = { @@ -2099,7 +2099,7 @@ bool __thiscall winISteamUtils_SteamUtils009_GetImageRGBA(struct w_steam_iface * return params._ret; } -bool __thiscall winISteamUtils_SteamUtils009_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) +int8_t __thiscall winISteamUtils_SteamUtils009_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) { struct ISteamUtils_SteamUtils009_GetCSERIPPort_params params = { @@ -2145,7 +2145,7 @@ void __thiscall winISteamUtils_SteamUtils009_SetOverlayNotificationPosition(stru STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_SetOverlayNotificationPosition, ¶ms ); } -bool __thiscall winISteamUtils_SteamUtils009_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, bool *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils009_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, int8_t *pbFailed) { struct ISteamUtils_SteamUtils009_IsAPICallCompleted_params params = { @@ -2170,7 +2170,7 @@ uint32_t __thiscall winISteamUtils_SteamUtils009_GetAPICallFailureReason(struct return params._ret; } -bool __thiscall winISteamUtils_SteamUtils009_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, bool *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils009_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, int8_t *pbFailed) { struct ISteamUtils_SteamUtils009_GetAPICallResult_params params = { @@ -2218,7 +2218,7 @@ void __thiscall winISteamUtils_SteamUtils009_SetWarningMessageHook(struct w_stea STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_SetWarningMessageHook, ¶ms ); } -bool __thiscall winISteamUtils_SteamUtils009_IsOverlayEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils009_IsOverlayEnabled(struct w_steam_iface *_this) { struct ISteamUtils_SteamUtils009_IsOverlayEnabled_params params = { @@ -2229,7 +2229,7 @@ bool __thiscall winISteamUtils_SteamUtils009_IsOverlayEnabled(struct w_steam_ifa return params._ret; } -bool __thiscall winISteamUtils_SteamUtils009_BOverlayNeedsPresent(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils009_BOverlayNeedsPresent(struct w_steam_iface *_this) { struct ISteamUtils_SteamUtils009_BOverlayNeedsPresent_params params = { @@ -2252,7 +2252,7 @@ uint64_t __thiscall winISteamUtils_SteamUtils009_CheckFileSignature(struct w_ste return params._ret; } -bool __thiscall winISteamUtils_SteamUtils009_ShowGamepadTextInput(struct w_steam_iface *_this, uint32_t eInputMode, uint32_t eLineInputMode, const char *pchDescription, uint32_t unCharMax, const char *pchExistingText) +int8_t __thiscall winISteamUtils_SteamUtils009_ShowGamepadTextInput(struct w_steam_iface *_this, uint32_t eInputMode, uint32_t eLineInputMode, const char *pchDescription, uint32_t unCharMax, const char *pchExistingText) { struct ISteamUtils_SteamUtils009_ShowGamepadTextInput_params params = { @@ -2279,7 +2279,7 @@ uint32_t __thiscall winISteamUtils_SteamUtils009_GetEnteredGamepadTextLength(str return params._ret; } -bool __thiscall winISteamUtils_SteamUtils009_GetEnteredGamepadTextInput(struct w_steam_iface *_this, char *pchText, uint32_t cchText) +int8_t __thiscall winISteamUtils_SteamUtils009_GetEnteredGamepadTextInput(struct w_steam_iface *_this, char *pchText, uint32_t cchText) { struct ISteamUtils_SteamUtils009_GetEnteredGamepadTextInput_params params = { @@ -2303,7 +2303,7 @@ const char * __thiscall winISteamUtils_SteamUtils009_GetSteamUILanguage(struct w return params._ret; } -bool __thiscall winISteamUtils_SteamUtils009_IsSteamRunningInVR(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils009_IsSteamRunningInVR(struct w_steam_iface *_this) { struct ISteamUtils_SteamUtils009_IsSteamRunningInVR_params params = { @@ -2326,7 +2326,7 @@ void __thiscall winISteamUtils_SteamUtils009_SetOverlayNotificationInset(struct STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_SetOverlayNotificationInset, ¶ms ); } -bool __thiscall winISteamUtils_SteamUtils009_IsSteamInBigPictureMode(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils009_IsSteamInBigPictureMode(struct w_steam_iface *_this) { struct ISteamUtils_SteamUtils009_IsSteamInBigPictureMode_params params = { @@ -2347,7 +2347,7 @@ void __thiscall winISteamUtils_SteamUtils009_StartVRDashboard(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_StartVRDashboard, ¶ms ); } -bool __thiscall winISteamUtils_SteamUtils009_IsVRHeadsetStreamingEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils009_IsVRHeadsetStreamingEnabled(struct w_steam_iface *_this) { struct ISteamUtils_SteamUtils009_IsVRHeadsetStreamingEnabled_params params = { @@ -2358,7 +2358,7 @@ bool __thiscall winISteamUtils_SteamUtils009_IsVRHeadsetStreamingEnabled(struct return params._ret; } -void __thiscall winISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled(struct w_steam_iface *_this, bool bEnabled) +void __thiscall winISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled(struct w_steam_iface *_this, int8_t bEnabled) { struct ISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled_params params = { @@ -2369,7 +2369,7 @@ void __thiscall winISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled(struct STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled, ¶ms ); } -bool __thiscall winISteamUtils_SteamUtils009_IsSteamChinaLauncher(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils009_IsSteamChinaLauncher(struct w_steam_iface *_this) { struct ISteamUtils_SteamUtils009_IsSteamChinaLauncher_params params = { @@ -2380,7 +2380,7 @@ bool __thiscall winISteamUtils_SteamUtils009_IsSteamChinaLauncher(struct w_steam return params._ret; } -bool __thiscall winISteamUtils_SteamUtils009_InitFilterText(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils009_InitFilterText(struct w_steam_iface *_this) { struct ISteamUtils_SteamUtils009_InitFilterText_params params = { @@ -2391,7 +2391,7 @@ bool __thiscall winISteamUtils_SteamUtils009_InitFilterText(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUtils_SteamUtils009_FilterText(struct w_steam_iface *_this, char *pchOutFilteredText, uint32_t nByteSizeOutFilteredText, const char *pchInputMessage, bool bLegalOnly) +int32_t __thiscall winISteamUtils_SteamUtils009_FilterText(struct w_steam_iface *_this, char *pchOutFilteredText, uint32_t nByteSizeOutFilteredText, const char *pchInputMessage, int8_t bLegalOnly) { struct ISteamUtils_SteamUtils009_FilterText_params params = { @@ -2564,7 +2564,7 @@ const char * __thiscall winISteamUtils_SteamUtils010_GetIPCountry(struct w_steam return params._ret; } -bool __thiscall winISteamUtils_SteamUtils010_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) +int8_t __thiscall winISteamUtils_SteamUtils010_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) { struct ISteamUtils_SteamUtils010_GetImageSize_params params = { @@ -2578,7 +2578,7 @@ bool __thiscall winISteamUtils_SteamUtils010_GetImageSize(struct w_steam_iface * return params._ret; } -bool __thiscall winISteamUtils_SteamUtils010_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) +int8_t __thiscall winISteamUtils_SteamUtils010_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) { struct ISteamUtils_SteamUtils010_GetImageRGBA_params params = { @@ -2592,7 +2592,7 @@ bool __thiscall winISteamUtils_SteamUtils010_GetImageRGBA(struct w_steam_iface * return params._ret; } -bool __thiscall winISteamUtils_SteamUtils010_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) +int8_t __thiscall winISteamUtils_SteamUtils010_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) { struct ISteamUtils_SteamUtils010_GetCSERIPPort_params params = { @@ -2638,7 +2638,7 @@ void __thiscall winISteamUtils_SteamUtils010_SetOverlayNotificationPosition(stru STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_SetOverlayNotificationPosition, ¶ms ); } -bool __thiscall winISteamUtils_SteamUtils010_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, bool *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils010_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, int8_t *pbFailed) { struct ISteamUtils_SteamUtils010_IsAPICallCompleted_params params = { @@ -2663,7 +2663,7 @@ uint32_t __thiscall winISteamUtils_SteamUtils010_GetAPICallFailureReason(struct return params._ret; } -bool __thiscall winISteamUtils_SteamUtils010_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, bool *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils010_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, int8_t *pbFailed) { struct ISteamUtils_SteamUtils010_GetAPICallResult_params params = { @@ -2711,7 +2711,7 @@ void __thiscall winISteamUtils_SteamUtils010_SetWarningMessageHook(struct w_stea STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_SetWarningMessageHook, ¶ms ); } -bool __thiscall winISteamUtils_SteamUtils010_IsOverlayEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils010_IsOverlayEnabled(struct w_steam_iface *_this) { struct ISteamUtils_SteamUtils010_IsOverlayEnabled_params params = { @@ -2722,7 +2722,7 @@ bool __thiscall winISteamUtils_SteamUtils010_IsOverlayEnabled(struct w_steam_ifa return params._ret; } -bool __thiscall winISteamUtils_SteamUtils010_BOverlayNeedsPresent(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils010_BOverlayNeedsPresent(struct w_steam_iface *_this) { struct ISteamUtils_SteamUtils010_BOverlayNeedsPresent_params params = { @@ -2745,7 +2745,7 @@ uint64_t __thiscall winISteamUtils_SteamUtils010_CheckFileSignature(struct w_ste return params._ret; } -bool __thiscall winISteamUtils_SteamUtils010_ShowGamepadTextInput(struct w_steam_iface *_this, uint32_t eInputMode, uint32_t eLineInputMode, const char *pchDescription, uint32_t unCharMax, const char *pchExistingText) +int8_t __thiscall winISteamUtils_SteamUtils010_ShowGamepadTextInput(struct w_steam_iface *_this, uint32_t eInputMode, uint32_t eLineInputMode, const char *pchDescription, uint32_t unCharMax, const char *pchExistingText) { struct ISteamUtils_SteamUtils010_ShowGamepadTextInput_params params = { @@ -2772,7 +2772,7 @@ uint32_t __thiscall winISteamUtils_SteamUtils010_GetEnteredGamepadTextLength(str return params._ret; } -bool __thiscall winISteamUtils_SteamUtils010_GetEnteredGamepadTextInput(struct w_steam_iface *_this, char *pchText, uint32_t cchText) +int8_t __thiscall winISteamUtils_SteamUtils010_GetEnteredGamepadTextInput(struct w_steam_iface *_this, char *pchText, uint32_t cchText) { struct ISteamUtils_SteamUtils010_GetEnteredGamepadTextInput_params params = { @@ -2796,7 +2796,7 @@ const char * __thiscall winISteamUtils_SteamUtils010_GetSteamUILanguage(struct w return params._ret; } -bool __thiscall winISteamUtils_SteamUtils010_IsSteamRunningInVR(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils010_IsSteamRunningInVR(struct w_steam_iface *_this) { struct ISteamUtils_SteamUtils010_IsSteamRunningInVR_params params = { @@ -2819,7 +2819,7 @@ void __thiscall winISteamUtils_SteamUtils010_SetOverlayNotificationInset(struct STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_SetOverlayNotificationInset, ¶ms ); } -bool __thiscall winISteamUtils_SteamUtils010_IsSteamInBigPictureMode(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils010_IsSteamInBigPictureMode(struct w_steam_iface *_this) { struct ISteamUtils_SteamUtils010_IsSteamInBigPictureMode_params params = { @@ -2840,7 +2840,7 @@ void __thiscall winISteamUtils_SteamUtils010_StartVRDashboard(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_StartVRDashboard, ¶ms ); } -bool __thiscall winISteamUtils_SteamUtils010_IsVRHeadsetStreamingEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils010_IsVRHeadsetStreamingEnabled(struct w_steam_iface *_this) { struct ISteamUtils_SteamUtils010_IsVRHeadsetStreamingEnabled_params params = { @@ -2851,7 +2851,7 @@ bool __thiscall winISteamUtils_SteamUtils010_IsVRHeadsetStreamingEnabled(struct return params._ret; } -void __thiscall winISteamUtils_SteamUtils010_SetVRHeadsetStreamingEnabled(struct w_steam_iface *_this, bool bEnabled) +void __thiscall winISteamUtils_SteamUtils010_SetVRHeadsetStreamingEnabled(struct w_steam_iface *_this, int8_t bEnabled) { struct ISteamUtils_SteamUtils010_SetVRHeadsetStreamingEnabled_params params = { @@ -2862,7 +2862,7 @@ void __thiscall winISteamUtils_SteamUtils010_SetVRHeadsetStreamingEnabled(struct STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_SetVRHeadsetStreamingEnabled, ¶ms ); } -bool __thiscall winISteamUtils_SteamUtils010_IsSteamChinaLauncher(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils010_IsSteamChinaLauncher(struct w_steam_iface *_this) { struct ISteamUtils_SteamUtils010_IsSteamChinaLauncher_params params = { @@ -2873,7 +2873,7 @@ bool __thiscall winISteamUtils_SteamUtils010_IsSteamChinaLauncher(struct w_steam return params._ret; } -bool __thiscall winISteamUtils_SteamUtils010_InitFilterText(struct w_steam_iface *_this, uint32_t unFilterOptions) +int8_t __thiscall winISteamUtils_SteamUtils010_InitFilterText(struct w_steam_iface *_this, uint32_t unFilterOptions) { struct ISteamUtils_SteamUtils010_InitFilterText_params params = { @@ -2913,7 +2913,7 @@ uint32_t __thiscall winISteamUtils_SteamUtils010_GetIPv6ConnectivityState(struct return params._ret; } -bool __thiscall winISteamUtils_SteamUtils010_IsSteamRunningOnSteamDeck(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils010_IsSteamRunningOnSteamDeck(struct w_steam_iface *_this) { struct ISteamUtils_SteamUtils010_IsSteamRunningOnSteamDeck_params params = { @@ -2924,7 +2924,7 @@ bool __thiscall winISteamUtils_SteamUtils010_IsSteamRunningOnSteamDeck(struct w_ return params._ret; } -bool __thiscall winISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput(struct w_steam_iface *_this, uint32_t eKeyboardMode, int32_t nTextFieldXPosition, int32_t nTextFieldYPosition, int32_t nTextFieldWidth, int32_t nTextFieldHeight) +int8_t __thiscall winISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput(struct w_steam_iface *_this, uint32_t eKeyboardMode, int32_t nTextFieldXPosition, int32_t nTextFieldYPosition, int32_t nTextFieldWidth, int32_t nTextFieldHeight) { struct ISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput_params params = { @@ -2940,7 +2940,7 @@ bool __thiscall winISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput(struct return params._ret; } -void __thiscall winISteamUtils_SteamUtils010_SetGameLauncherMode(struct w_steam_iface *_this, bool bLauncherMode) +void __thiscall winISteamUtils_SteamUtils010_SetGameLauncherMode(struct w_steam_iface *_this, int8_t bLauncherMode) { struct ISteamUtils_SteamUtils010_SetGameLauncherMode_params params = { @@ -2951,7 +2951,7 @@ void __thiscall winISteamUtils_SteamUtils010_SetGameLauncherMode(struct w_steam_ STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_SetGameLauncherMode, ¶ms ); } -bool __thiscall winISteamUtils_SteamUtils010_DismissFloatingGamepadTextInput(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils010_DismissFloatingGamepadTextInput(struct w_steam_iface *_this) { struct ISteamUtils_SteamUtils010_DismissFloatingGamepadTextInput_params params = { diff --git a/lsteamclient/winISteamVideo.c b/lsteamclient/winISteamVideo.c index dfc9d632..f5b51838 100644 --- a/lsteamclient/winISteamVideo.c +++ b/lsteamclient/winISteamVideo.c @@ -17,7 +17,7 @@ void __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL(struct w_st STEAMCLIENT_CALL( ISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL, ¶ms ); } -bool __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting(struct w_steam_iface *_this, int32_t *pnNumViewers) +int8_t __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting(struct w_steam_iface *_this, int32_t *pnNumViewers) { struct ISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting_params params = { @@ -65,7 +65,7 @@ void __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V002_GetVideoURL(struct w_st STEAMCLIENT_CALL( ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetVideoURL, ¶ms ); } -bool __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting(struct w_steam_iface *_this, int32_t *pnNumViewers) +int8_t __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting(struct w_steam_iface *_this, int32_t *pnNumViewers) { struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting_params params = { @@ -88,7 +88,7 @@ void __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFSettings(struct w STEAMCLIENT_CALL( ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFSettings, ¶ms ); } -bool __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp(struct w_steam_iface *_this, uint32_t unVideoAppID, char *pchBuffer, int32_t *pnBufferSize) +int8_t __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp(struct w_steam_iface *_this, uint32_t unVideoAppID, char *pchBuffer, int32_t *pnBufferSize) { struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp_params params = {