From d89c5c80bb5ca3bb1fb0c24456622fb6abeea2fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Bernon?= Date: Thu, 16 Jan 2025 10:40:36 +0100 Subject: [PATCH] lsteamclient: Use 64bit handles for unix side interface pointers. Based on a patch from Billy Laws. --- lsteamclient/gen_wrapper.py | 25 +- lsteamclient/steamclient_generated.h | 408 +- lsteamclient/steamclient_main.c | 8 +- lsteamclient/steamclient_private.h | 8 +- lsteamclient/steamclient_structs.h | 9 +- lsteamclient/unixlib.h | 2 +- lsteamclient/unixlib_generated.h | 13110 ++++++++-------- lsteamclient/winISteamAppList.c | 2 +- lsteamclient/winISteamAppTicket.c | 2 +- lsteamclient/winISteamApps.c | 16 +- lsteamclient/winISteamClient.c | 953 +- lsteamclient/winISteamController.c | 14 +- lsteamclient/winISteamFriends.c | 34 +- lsteamclient/winISteamGameCoordinator.c | 2 +- lsteamclient/winISteamGameSearch.c | 2 +- lsteamclient/winISteamGameServer.c | 24 +- lsteamclient/winISteamGameServerStats.c | 2 +- lsteamclient/winISteamGameStats.c | 2 +- lsteamclient/winISteamHTMLSurface.c | 10 +- lsteamclient/winISteamHTTP.c | 6 +- lsteamclient/winISteamInput.c | 8 +- lsteamclient/winISteamInventory.c | 6 +- lsteamclient/winISteamMasterServerUpdater.c | 2 +- lsteamclient/winISteamMatchmaking.c | 18 +- lsteamclient/winISteamMatchmakingServers.c | 4 +- lsteamclient/winISteamMusic.c | 2 +- lsteamclient/winISteamMusicRemote.c | 2 +- lsteamclient/winISteamNetworking.c | 12 +- lsteamclient/winISteamNetworkingFakeUDPPort.c | 2 +- lsteamclient/winISteamNetworkingMessages.c | 2 +- lsteamclient/winISteamNetworkingSockets.c | 15 +- .../winISteamNetworkingSocketsSerialized.c | 4 +- lsteamclient/winISteamNetworkingUtils.c | 8 +- lsteamclient/winISteamParentalSettings.c | 2 +- lsteamclient/winISteamParties.c | 2 +- lsteamclient/winISteamRemotePlay.c | 6 +- lsteamclient/winISteamRemoteStorage.c | 30 +- lsteamclient/winISteamScreenshots.c | 6 +- lsteamclient/winISteamTimeline.c | 4 +- lsteamclient/winISteamUGC.c | 38 +- lsteamclient/winISteamUnifiedMessages.c | 2 +- lsteamclient/winISteamUser.c | 40 +- lsteamclient/winISteamUserStats.c | 26 +- lsteamclient/winISteamUtils.c | 16 +- lsteamclient/winISteamVideo.c | 6 +- 45 files changed, 7301 insertions(+), 7601 deletions(-) diff --git a/lsteamclient/gen_wrapper.py b/lsteamclient/gen_wrapper.py index d0749260..784a7db9 100755 --- a/lsteamclient/gen_wrapper.py +++ b/lsteamclient/gen_wrapper.py @@ -659,11 +659,17 @@ class Method: return True return False # FIXME + def returns_unix_iface(self): + return self.result_type.spelling.startswith("ISteam") or "GetISteam" in self.name + def write_params(self, out): returns_record = self.result_type.get_canonical().kind == TypeKind.RECORD - ret = "*_ret" if returns_record else "_ret" - ret = f'{declspec(self.result_type, ret, "w_")}' + if self.returns_unix_iface(): + ret = 'struct u_iface _ret' + else: + ret = "*_ret" if returns_record else "_ret" + ret = f'{declspec(self.result_type, ret, "w_")}' names = [p.spelling if p.spelling != "" else f'_{chr(0x61 + i)}' for i, p in enumerate(self.get_arguments())] @@ -673,7 +679,7 @@ class Method: params = [ret] + params names = ['_ret'] + names - params = ['struct u_iface *u_iface'] + params + params = ['struct u_iface u_iface'] + params names = ['u_iface'] + names out(f'struct {self.full_name}_params\n') @@ -1108,11 +1114,10 @@ def handle_method_c(klass, method, winclassname, out): out(f' STEAMCLIENT_CALL( {method.full_name}, ¶ms );\n') if method.name.startswith('CreateFakeUDPPort'): - out(u' params._ret = create_winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001( params._ret );\n') - elif method.result_type.spelling.startswith("ISteam") or "GetISteam" in method.name: - out(u' params._ret = create_win_interface( pchVersion, params._ret );\n') - - if not returns_void: + out(u' return create_winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001( params._ret );\n') + elif method.returns_unix_iface(): + out(u' return create_win_interface( pchVersion, params._ret );\n') + elif not returns_void: out(u' return params._ret;\n') out(u'}\n\n') @@ -1165,7 +1170,7 @@ def handle_class(klass): out(u' );\n') out(u'__ASM_BLOCK_END\n') out(u'\n') - out(f'struct w_iface *create_{winclassname}( struct u_iface *u_iface )\n') + out(f'struct w_iface *create_{winclassname}( struct u_iface u_iface )\n') out(u'{\n') out(f' struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "{klass.version}");\n') out(u' TRACE("-> %p\\n", r);\n') @@ -1390,7 +1395,7 @@ with open("steamclient_generated.h", "w") as file: out(u'/* This file is auto-generated, do not edit. */\n\n') for _, klass in sorted(all_classes.items()): - out(f"extern struct w_iface *create_win{klass.full_name}( struct u_iface * );\n") + out(f"extern struct w_iface *create_win{klass.full_name}( struct u_iface );\n") with open("steamclient_generated.c", "w") as file: diff --git a/lsteamclient/steamclient_generated.h b/lsteamclient/steamclient_generated.h index 8599d811..70473347 100644 --- a/lsteamclient/steamclient_generated.h +++ b/lsteamclient/steamclient_generated.h @@ -1,206 +1,206 @@ /* This file is auto-generated, do not edit. */ -extern struct w_iface *create_winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001( struct u_iface * ); -extern struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION001( struct u_iface * ); -extern struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION002( struct u_iface * ); -extern struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION003( struct u_iface * ); -extern struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION004( struct u_iface * ); -extern struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION005( struct u_iface * ); -extern struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION006( struct u_iface * ); -extern struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION007( struct u_iface * ); -extern struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION008( struct u_iface * ); -extern struct w_iface *create_winISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001( struct u_iface * ); -extern struct w_iface *create_winISteamController_STEAMCONTROLLER_INTERFACE_VERSION( struct u_iface * ); -extern struct w_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001( struct u_iface * ); -extern struct w_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002( struct u_iface * ); -extern struct w_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003( struct u_iface * ); -extern struct w_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004( struct u_iface * ); -extern struct w_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005( struct u_iface * ); -extern struct w_iface *create_winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001( struct u_iface * ); -extern struct w_iface *create_winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002( struct u_iface * ); -extern struct w_iface *create_winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003( struct u_iface * ); -extern struct w_iface *create_winISteamInventory_STEAMINVENTORY_INTERFACE_V001( struct u_iface * ); -extern struct w_iface *create_winISteamInventory_STEAMINVENTORY_INTERFACE_V002( struct u_iface * ); -extern struct w_iface *create_winISteamInventory_STEAMINVENTORY_INTERFACE_V003( struct u_iface * ); -extern struct w_iface *create_winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001( struct u_iface * ); -extern struct w_iface *create_winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001( struct u_iface * ); -extern struct w_iface *create_winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001( struct u_iface * ); -extern struct w_iface *create_winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001( struct u_iface * ); -extern struct w_iface *create_winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002( struct u_iface * ); -extern struct w_iface *create_winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003( struct u_iface * ); -extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001( struct u_iface * ); -extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002( struct u_iface * ); -extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003( struct u_iface * ); -extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004( struct u_iface * ); -extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005( struct u_iface * ); -extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006( struct u_iface * ); -extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007( struct u_iface * ); -extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008( struct u_iface * ); -extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009( struct u_iface * ); -extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010( struct u_iface * ); -extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011( struct u_iface * ); -extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012( struct u_iface * ); -extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013( struct u_iface * ); -extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014( struct u_iface * ); -extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016( struct u_iface * ); -extern struct w_iface *create_winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001( struct u_iface * ); -extern struct w_iface *create_winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002( struct u_iface * ); -extern struct w_iface *create_winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003( struct u_iface * ); -extern struct w_iface *create_winISteamTimeline_STEAMTIMELINE_INTERFACE_V001( struct u_iface * ); -extern struct w_iface *create_winISteamTimeline_STEAMTIMELINE_INTERFACE_V004( struct u_iface * ); -extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION001( struct u_iface * ); -extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION002( struct u_iface * ); -extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION003( struct u_iface * ); -extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION004( struct u_iface * ); -extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION005( struct u_iface * ); -extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION006( struct u_iface * ); -extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION007( struct u_iface * ); -extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION008( struct u_iface * ); -extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION009( struct u_iface * ); -extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION010( struct u_iface * ); -extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION012( struct u_iface * ); -extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION013( struct u_iface * ); -extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION014( struct u_iface * ); -extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION015( struct u_iface * ); -extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION016( struct u_iface * ); -extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION017( struct u_iface * ); -extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION018( struct u_iface * ); -extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION020( struct u_iface * ); -extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION021( struct u_iface * ); -extern struct w_iface *create_winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001( struct u_iface * ); -extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001( struct u_iface * ); -extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002( struct u_iface * ); -extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003( struct u_iface * ); -extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004( struct u_iface * ); -extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005( struct u_iface * ); -extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006( struct u_iface * ); -extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007( struct u_iface * ); -extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008( struct u_iface * ); -extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009( struct u_iface * ); -extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010( struct u_iface * ); -extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011( struct u_iface * ); -extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012( struct u_iface * ); -extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013( struct u_iface * ); -extern struct w_iface *create_winISteamVideo_STEAMVIDEO_INTERFACE_V001( struct u_iface * ); -extern struct w_iface *create_winISteamVideo_STEAMVIDEO_INTERFACE_V002( struct u_iface * ); -extern struct w_iface *create_winISteamVideo_STEAMVIDEO_INTERFACE_V007( struct u_iface * ); -extern struct w_iface *create_winISteamClient_SteamClient006( struct u_iface * ); -extern struct w_iface *create_winISteamClient_SteamClient007( struct u_iface * ); -extern struct w_iface *create_winISteamClient_SteamClient008( struct u_iface * ); -extern struct w_iface *create_winISteamClient_SteamClient009( struct u_iface * ); -extern struct w_iface *create_winISteamClient_SteamClient010( struct u_iface * ); -extern struct w_iface *create_winISteamClient_SteamClient011( struct u_iface * ); -extern struct w_iface *create_winISteamClient_SteamClient012( struct u_iface * ); -extern struct w_iface *create_winISteamClient_SteamClient013( struct u_iface * ); -extern struct w_iface *create_winISteamClient_SteamClient014( struct u_iface * ); -extern struct w_iface *create_winISteamClient_SteamClient015( struct u_iface * ); -extern struct w_iface *create_winISteamClient_SteamClient016( struct u_iface * ); -extern struct w_iface *create_winISteamClient_SteamClient017( struct u_iface * ); -extern struct w_iface *create_winISteamClient_SteamClient018( struct u_iface * ); -extern struct w_iface *create_winISteamClient_SteamClient019( struct u_iface * ); -extern struct w_iface *create_winISteamClient_SteamClient020( struct u_iface * ); -extern struct w_iface *create_winISteamClient_SteamClient021( struct u_iface * ); -extern struct w_iface *create_winISteamController_SteamController003( struct u_iface * ); -extern struct w_iface *create_winISteamController_SteamController004( struct u_iface * ); -extern struct w_iface *create_winISteamController_SteamController005( struct u_iface * ); -extern struct w_iface *create_winISteamController_SteamController006( struct u_iface * ); -extern struct w_iface *create_winISteamController_SteamController007( struct u_iface * ); -extern struct w_iface *create_winISteamController_SteamController008( struct u_iface * ); -extern struct w_iface *create_winISteamFriends_SteamFriends001( struct u_iface * ); -extern struct w_iface *create_winISteamFriends_SteamFriends002( struct u_iface * ); -extern struct w_iface *create_winISteamFriends_SteamFriends003( struct u_iface * ); -extern struct w_iface *create_winISteamFriends_SteamFriends004( struct u_iface * ); -extern struct w_iface *create_winISteamFriends_SteamFriends005( struct u_iface * ); -extern struct w_iface *create_winISteamFriends_SteamFriends006( struct u_iface * ); -extern struct w_iface *create_winISteamFriends_SteamFriends007( struct u_iface * ); -extern struct w_iface *create_winISteamFriends_SteamFriends008( struct u_iface * ); -extern struct w_iface *create_winISteamFriends_SteamFriends009( struct u_iface * ); -extern struct w_iface *create_winISteamFriends_SteamFriends010( struct u_iface * ); -extern struct w_iface *create_winISteamFriends_SteamFriends011( struct u_iface * ); -extern struct w_iface *create_winISteamFriends_SteamFriends012( struct u_iface * ); -extern struct w_iface *create_winISteamFriends_SteamFriends013( struct u_iface * ); -extern struct w_iface *create_winISteamFriends_SteamFriends014( struct u_iface * ); -extern struct w_iface *create_winISteamFriends_SteamFriends015( struct u_iface * ); -extern struct w_iface *create_winISteamFriends_SteamFriends017( struct u_iface * ); -extern struct w_iface *create_winISteamFriends_SteamFriends018( struct u_iface * ); -extern struct w_iface *create_winISteamGameCoordinator_SteamGameCoordinator001( struct u_iface * ); -extern struct w_iface *create_winISteamGameServer_SteamGameServer002( struct u_iface * ); -extern struct w_iface *create_winISteamGameServer_SteamGameServer003( struct u_iface * ); -extern struct w_iface *create_winISteamGameServer_SteamGameServer004( struct u_iface * ); -extern struct w_iface *create_winISteamGameServer_SteamGameServer005( struct u_iface * ); -extern struct w_iface *create_winISteamGameServer_SteamGameServer008( struct u_iface * ); -extern struct w_iface *create_winISteamGameServer_SteamGameServer009( struct u_iface * ); -extern struct w_iface *create_winISteamGameServer_SteamGameServer010( struct u_iface * ); -extern struct w_iface *create_winISteamGameServer_SteamGameServer011( struct u_iface * ); -extern struct w_iface *create_winISteamGameServer_SteamGameServer012( struct u_iface * ); -extern struct w_iface *create_winISteamGameServer_SteamGameServer013( struct u_iface * ); -extern struct w_iface *create_winISteamGameServer_SteamGameServer014( struct u_iface * ); -extern struct w_iface *create_winISteamGameServer_SteamGameServer015( struct u_iface * ); -extern struct w_iface *create_winISteamGameServerStats_SteamGameServerStats001( struct u_iface * ); -extern struct w_iface *create_winISteamGameStats_SteamGameStats001( struct u_iface * ); -extern struct w_iface *create_winISteamInput_SteamInput001( struct u_iface * ); -extern struct w_iface *create_winISteamInput_SteamInput002( struct u_iface * ); -extern struct w_iface *create_winISteamInput_SteamInput005( struct u_iface * ); -extern struct w_iface *create_winISteamInput_SteamInput006( struct u_iface * ); -extern struct w_iface *create_winISteamMasterServerUpdater_SteamMasterServerUpdater001( struct u_iface * ); -extern struct w_iface *create_winISteamGameSearch_SteamMatchGameSearch001( struct u_iface * ); -extern struct w_iface *create_winISteamMatchmaking_SteamMatchMaking001( struct u_iface * ); -extern struct w_iface *create_winISteamMatchmaking_SteamMatchMaking002( struct u_iface * ); -extern struct w_iface *create_winISteamMatchmaking_SteamMatchMaking003( struct u_iface * ); -extern struct w_iface *create_winISteamMatchmaking_SteamMatchMaking004( struct u_iface * ); -extern struct w_iface *create_winISteamMatchmaking_SteamMatchMaking005( struct u_iface * ); -extern struct w_iface *create_winISteamMatchmaking_SteamMatchMaking006( struct u_iface * ); -extern struct w_iface *create_winISteamMatchmaking_SteamMatchMaking007( struct u_iface * ); -extern struct w_iface *create_winISteamMatchmaking_SteamMatchMaking008( struct u_iface * ); -extern struct w_iface *create_winISteamMatchmaking_SteamMatchMaking009( struct u_iface * ); -extern struct w_iface *create_winISteamMatchmakingServers_SteamMatchMakingServers001( struct u_iface * ); -extern struct w_iface *create_winISteamMatchmakingServers_SteamMatchMakingServers002( struct u_iface * ); -extern struct w_iface *create_winISteamNetworking_SteamNetworking001( struct u_iface * ); -extern struct w_iface *create_winISteamNetworking_SteamNetworking002( struct u_iface * ); -extern struct w_iface *create_winISteamNetworking_SteamNetworking003( struct u_iface * ); -extern struct w_iface *create_winISteamNetworking_SteamNetworking004( struct u_iface * ); -extern struct w_iface *create_winISteamNetworking_SteamNetworking005( struct u_iface * ); -extern struct w_iface *create_winISteamNetworking_SteamNetworking006( struct u_iface * ); -extern struct w_iface *create_winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001( struct u_iface * ); -extern struct w_iface *create_winISteamNetworkingMessages_SteamNetworkingMessages002( struct u_iface * ); -extern struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets002( struct u_iface * ); -extern struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets004( struct u_iface * ); -extern struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets006( struct u_iface * ); -extern struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets008( struct u_iface * ); -extern struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets009( struct u_iface * ); -extern struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets012( struct u_iface * ); -extern struct w_iface *create_winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002( struct u_iface * ); -extern struct w_iface *create_winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003( struct u_iface * ); -extern struct w_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils001( struct u_iface * ); -extern struct w_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils002( struct u_iface * ); -extern struct w_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils003( struct u_iface * ); -extern struct w_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils004( struct u_iface * ); -extern struct w_iface *create_winISteamParties_SteamParties002( struct u_iface * ); -extern struct w_iface *create_winISteamUser_SteamUser004( struct u_iface * ); -extern struct w_iface *create_winISteamUser_SteamUser005( struct u_iface * ); -extern struct w_iface *create_winISteamUser_SteamUser006( struct u_iface * ); -extern struct w_iface *create_winISteamUser_SteamUser007( struct u_iface * ); -extern struct w_iface *create_winISteamUser_SteamUser008( struct u_iface * ); -extern struct w_iface *create_winISteamUser_SteamUser009( struct u_iface * ); -extern struct w_iface *create_winISteamUser_SteamUser010( struct u_iface * ); -extern struct w_iface *create_winISteamUser_SteamUser011( struct u_iface * ); -extern struct w_iface *create_winISteamUser_SteamUser012( struct u_iface * ); -extern struct w_iface *create_winISteamUser_SteamUser013( struct u_iface * ); -extern struct w_iface *create_winISteamUser_SteamUser014( struct u_iface * ); -extern struct w_iface *create_winISteamUser_SteamUser015( struct u_iface * ); -extern struct w_iface *create_winISteamUser_SteamUser016( struct u_iface * ); -extern struct w_iface *create_winISteamUser_SteamUser017( struct u_iface * ); -extern struct w_iface *create_winISteamUser_SteamUser018( struct u_iface * ); -extern struct w_iface *create_winISteamUser_SteamUser019( struct u_iface * ); -extern struct w_iface *create_winISteamUser_SteamUser020( struct u_iface * ); -extern struct w_iface *create_winISteamUser_SteamUser021( struct u_iface * ); -extern struct w_iface *create_winISteamUser_SteamUser022( struct u_iface * ); -extern struct w_iface *create_winISteamUser_SteamUser023( struct u_iface * ); -extern struct w_iface *create_winISteamUtils_SteamUtils002( struct u_iface * ); -extern struct w_iface *create_winISteamUtils_SteamUtils004( struct u_iface * ); -extern struct w_iface *create_winISteamUtils_SteamUtils005( struct u_iface * ); -extern struct w_iface *create_winISteamUtils_SteamUtils006( struct u_iface * ); -extern struct w_iface *create_winISteamUtils_SteamUtils007( struct u_iface * ); -extern struct w_iface *create_winISteamUtils_SteamUtils008( struct u_iface * ); -extern struct w_iface *create_winISteamUtils_SteamUtils009( struct u_iface * ); -extern struct w_iface *create_winISteamUtils_SteamUtils010( struct u_iface * ); +extern struct w_iface *create_winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001( struct u_iface ); +extern struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION001( struct u_iface ); +extern struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION002( struct u_iface ); +extern struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION003( struct u_iface ); +extern struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION004( struct u_iface ); +extern struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION005( struct u_iface ); +extern struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION006( struct u_iface ); +extern struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION007( struct u_iface ); +extern struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION008( struct u_iface ); +extern struct w_iface *create_winISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001( struct u_iface ); +extern struct w_iface *create_winISteamController_STEAMCONTROLLER_INTERFACE_VERSION( struct u_iface ); +extern struct w_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001( struct u_iface ); +extern struct w_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002( struct u_iface ); +extern struct w_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003( struct u_iface ); +extern struct w_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004( struct u_iface ); +extern struct w_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005( struct u_iface ); +extern struct w_iface *create_winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001( struct u_iface ); +extern struct w_iface *create_winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002( struct u_iface ); +extern struct w_iface *create_winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003( struct u_iface ); +extern struct w_iface *create_winISteamInventory_STEAMINVENTORY_INTERFACE_V001( struct u_iface ); +extern struct w_iface *create_winISteamInventory_STEAMINVENTORY_INTERFACE_V002( struct u_iface ); +extern struct w_iface *create_winISteamInventory_STEAMINVENTORY_INTERFACE_V003( struct u_iface ); +extern struct w_iface *create_winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001( struct u_iface ); +extern struct w_iface *create_winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001( struct u_iface ); +extern struct w_iface *create_winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001( struct u_iface ); +extern struct w_iface *create_winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001( struct u_iface ); +extern struct w_iface *create_winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002( struct u_iface ); +extern struct w_iface *create_winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003( struct u_iface ); +extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001( struct u_iface ); +extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002( struct u_iface ); +extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003( struct u_iface ); +extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004( struct u_iface ); +extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005( struct u_iface ); +extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006( struct u_iface ); +extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007( struct u_iface ); +extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008( struct u_iface ); +extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009( struct u_iface ); +extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010( struct u_iface ); +extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011( struct u_iface ); +extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012( struct u_iface ); +extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013( struct u_iface ); +extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014( struct u_iface ); +extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016( struct u_iface ); +extern struct w_iface *create_winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001( struct u_iface ); +extern struct w_iface *create_winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002( struct u_iface ); +extern struct w_iface *create_winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003( struct u_iface ); +extern struct w_iface *create_winISteamTimeline_STEAMTIMELINE_INTERFACE_V001( struct u_iface ); +extern struct w_iface *create_winISteamTimeline_STEAMTIMELINE_INTERFACE_V004( struct u_iface ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION001( struct u_iface ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION002( struct u_iface ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION003( struct u_iface ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION004( struct u_iface ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION005( struct u_iface ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION006( struct u_iface ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION007( struct u_iface ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION008( struct u_iface ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION009( struct u_iface ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION010( struct u_iface ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION012( struct u_iface ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION013( struct u_iface ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION014( struct u_iface ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION015( struct u_iface ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION016( struct u_iface ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION017( struct u_iface ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION018( struct u_iface ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION020( struct u_iface ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION021( struct u_iface ); +extern struct w_iface *create_winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001( struct u_iface ); +extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001( struct u_iface ); +extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002( struct u_iface ); +extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003( struct u_iface ); +extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004( struct u_iface ); +extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005( struct u_iface ); +extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006( struct u_iface ); +extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007( struct u_iface ); +extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008( struct u_iface ); +extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009( struct u_iface ); +extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010( struct u_iface ); +extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011( struct u_iface ); +extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012( struct u_iface ); +extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013( struct u_iface ); +extern struct w_iface *create_winISteamVideo_STEAMVIDEO_INTERFACE_V001( struct u_iface ); +extern struct w_iface *create_winISteamVideo_STEAMVIDEO_INTERFACE_V002( struct u_iface ); +extern struct w_iface *create_winISteamVideo_STEAMVIDEO_INTERFACE_V007( struct u_iface ); +extern struct w_iface *create_winISteamClient_SteamClient006( struct u_iface ); +extern struct w_iface *create_winISteamClient_SteamClient007( struct u_iface ); +extern struct w_iface *create_winISteamClient_SteamClient008( struct u_iface ); +extern struct w_iface *create_winISteamClient_SteamClient009( struct u_iface ); +extern struct w_iface *create_winISteamClient_SteamClient010( struct u_iface ); +extern struct w_iface *create_winISteamClient_SteamClient011( struct u_iface ); +extern struct w_iface *create_winISteamClient_SteamClient012( struct u_iface ); +extern struct w_iface *create_winISteamClient_SteamClient013( struct u_iface ); +extern struct w_iface *create_winISteamClient_SteamClient014( struct u_iface ); +extern struct w_iface *create_winISteamClient_SteamClient015( struct u_iface ); +extern struct w_iface *create_winISteamClient_SteamClient016( struct u_iface ); +extern struct w_iface *create_winISteamClient_SteamClient017( struct u_iface ); +extern struct w_iface *create_winISteamClient_SteamClient018( struct u_iface ); +extern struct w_iface *create_winISteamClient_SteamClient019( struct u_iface ); +extern struct w_iface *create_winISteamClient_SteamClient020( struct u_iface ); +extern struct w_iface *create_winISteamClient_SteamClient021( struct u_iface ); +extern struct w_iface *create_winISteamController_SteamController003( struct u_iface ); +extern struct w_iface *create_winISteamController_SteamController004( struct u_iface ); +extern struct w_iface *create_winISteamController_SteamController005( struct u_iface ); +extern struct w_iface *create_winISteamController_SteamController006( struct u_iface ); +extern struct w_iface *create_winISteamController_SteamController007( struct u_iface ); +extern struct w_iface *create_winISteamController_SteamController008( struct u_iface ); +extern struct w_iface *create_winISteamFriends_SteamFriends001( struct u_iface ); +extern struct w_iface *create_winISteamFriends_SteamFriends002( struct u_iface ); +extern struct w_iface *create_winISteamFriends_SteamFriends003( struct u_iface ); +extern struct w_iface *create_winISteamFriends_SteamFriends004( struct u_iface ); +extern struct w_iface *create_winISteamFriends_SteamFriends005( struct u_iface ); +extern struct w_iface *create_winISteamFriends_SteamFriends006( struct u_iface ); +extern struct w_iface *create_winISteamFriends_SteamFriends007( struct u_iface ); +extern struct w_iface *create_winISteamFriends_SteamFriends008( struct u_iface ); +extern struct w_iface *create_winISteamFriends_SteamFriends009( struct u_iface ); +extern struct w_iface *create_winISteamFriends_SteamFriends010( struct u_iface ); +extern struct w_iface *create_winISteamFriends_SteamFriends011( struct u_iface ); +extern struct w_iface *create_winISteamFriends_SteamFriends012( struct u_iface ); +extern struct w_iface *create_winISteamFriends_SteamFriends013( struct u_iface ); +extern struct w_iface *create_winISteamFriends_SteamFriends014( struct u_iface ); +extern struct w_iface *create_winISteamFriends_SteamFriends015( struct u_iface ); +extern struct w_iface *create_winISteamFriends_SteamFriends017( struct u_iface ); +extern struct w_iface *create_winISteamFriends_SteamFriends018( struct u_iface ); +extern struct w_iface *create_winISteamGameCoordinator_SteamGameCoordinator001( struct u_iface ); +extern struct w_iface *create_winISteamGameServer_SteamGameServer002( struct u_iface ); +extern struct w_iface *create_winISteamGameServer_SteamGameServer003( struct u_iface ); +extern struct w_iface *create_winISteamGameServer_SteamGameServer004( struct u_iface ); +extern struct w_iface *create_winISteamGameServer_SteamGameServer005( struct u_iface ); +extern struct w_iface *create_winISteamGameServer_SteamGameServer008( struct u_iface ); +extern struct w_iface *create_winISteamGameServer_SteamGameServer009( struct u_iface ); +extern struct w_iface *create_winISteamGameServer_SteamGameServer010( struct u_iface ); +extern struct w_iface *create_winISteamGameServer_SteamGameServer011( struct u_iface ); +extern struct w_iface *create_winISteamGameServer_SteamGameServer012( struct u_iface ); +extern struct w_iface *create_winISteamGameServer_SteamGameServer013( struct u_iface ); +extern struct w_iface *create_winISteamGameServer_SteamGameServer014( struct u_iface ); +extern struct w_iface *create_winISteamGameServer_SteamGameServer015( struct u_iface ); +extern struct w_iface *create_winISteamGameServerStats_SteamGameServerStats001( struct u_iface ); +extern struct w_iface *create_winISteamGameStats_SteamGameStats001( struct u_iface ); +extern struct w_iface *create_winISteamInput_SteamInput001( struct u_iface ); +extern struct w_iface *create_winISteamInput_SteamInput002( struct u_iface ); +extern struct w_iface *create_winISteamInput_SteamInput005( struct u_iface ); +extern struct w_iface *create_winISteamInput_SteamInput006( struct u_iface ); +extern struct w_iface *create_winISteamMasterServerUpdater_SteamMasterServerUpdater001( struct u_iface ); +extern struct w_iface *create_winISteamGameSearch_SteamMatchGameSearch001( struct u_iface ); +extern struct w_iface *create_winISteamMatchmaking_SteamMatchMaking001( struct u_iface ); +extern struct w_iface *create_winISteamMatchmaking_SteamMatchMaking002( struct u_iface ); +extern struct w_iface *create_winISteamMatchmaking_SteamMatchMaking003( struct u_iface ); +extern struct w_iface *create_winISteamMatchmaking_SteamMatchMaking004( struct u_iface ); +extern struct w_iface *create_winISteamMatchmaking_SteamMatchMaking005( struct u_iface ); +extern struct w_iface *create_winISteamMatchmaking_SteamMatchMaking006( struct u_iface ); +extern struct w_iface *create_winISteamMatchmaking_SteamMatchMaking007( struct u_iface ); +extern struct w_iface *create_winISteamMatchmaking_SteamMatchMaking008( struct u_iface ); +extern struct w_iface *create_winISteamMatchmaking_SteamMatchMaking009( struct u_iface ); +extern struct w_iface *create_winISteamMatchmakingServers_SteamMatchMakingServers001( struct u_iface ); +extern struct w_iface *create_winISteamMatchmakingServers_SteamMatchMakingServers002( struct u_iface ); +extern struct w_iface *create_winISteamNetworking_SteamNetworking001( struct u_iface ); +extern struct w_iface *create_winISteamNetworking_SteamNetworking002( struct u_iface ); +extern struct w_iface *create_winISteamNetworking_SteamNetworking003( struct u_iface ); +extern struct w_iface *create_winISteamNetworking_SteamNetworking004( struct u_iface ); +extern struct w_iface *create_winISteamNetworking_SteamNetworking005( struct u_iface ); +extern struct w_iface *create_winISteamNetworking_SteamNetworking006( struct u_iface ); +extern struct w_iface *create_winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001( struct u_iface ); +extern struct w_iface *create_winISteamNetworkingMessages_SteamNetworkingMessages002( struct u_iface ); +extern struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets002( struct u_iface ); +extern struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets004( struct u_iface ); +extern struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets006( struct u_iface ); +extern struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets008( struct u_iface ); +extern struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets009( struct u_iface ); +extern struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets012( struct u_iface ); +extern struct w_iface *create_winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002( struct u_iface ); +extern struct w_iface *create_winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003( struct u_iface ); +extern struct w_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils001( struct u_iface ); +extern struct w_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils002( struct u_iface ); +extern struct w_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils003( struct u_iface ); +extern struct w_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils004( struct u_iface ); +extern struct w_iface *create_winISteamParties_SteamParties002( struct u_iface ); +extern struct w_iface *create_winISteamUser_SteamUser004( struct u_iface ); +extern struct w_iface *create_winISteamUser_SteamUser005( struct u_iface ); +extern struct w_iface *create_winISteamUser_SteamUser006( struct u_iface ); +extern struct w_iface *create_winISteamUser_SteamUser007( struct u_iface ); +extern struct w_iface *create_winISteamUser_SteamUser008( struct u_iface ); +extern struct w_iface *create_winISteamUser_SteamUser009( struct u_iface ); +extern struct w_iface *create_winISteamUser_SteamUser010( struct u_iface ); +extern struct w_iface *create_winISteamUser_SteamUser011( struct u_iface ); +extern struct w_iface *create_winISteamUser_SteamUser012( struct u_iface ); +extern struct w_iface *create_winISteamUser_SteamUser013( struct u_iface ); +extern struct w_iface *create_winISteamUser_SteamUser014( struct u_iface ); +extern struct w_iface *create_winISteamUser_SteamUser015( struct u_iface ); +extern struct w_iface *create_winISteamUser_SteamUser016( struct u_iface ); +extern struct w_iface *create_winISteamUser_SteamUser017( struct u_iface ); +extern struct w_iface *create_winISteamUser_SteamUser018( struct u_iface ); +extern struct w_iface *create_winISteamUser_SteamUser019( struct u_iface ); +extern struct w_iface *create_winISteamUser_SteamUser020( struct u_iface ); +extern struct w_iface *create_winISteamUser_SteamUser021( struct u_iface ); +extern struct w_iface *create_winISteamUser_SteamUser022( struct u_iface ); +extern struct w_iface *create_winISteamUser_SteamUser023( struct u_iface ); +extern struct w_iface *create_winISteamUtils_SteamUtils002( struct u_iface ); +extern struct w_iface *create_winISteamUtils_SteamUtils004( struct u_iface ); +extern struct w_iface *create_winISteamUtils_SteamUtils005( struct u_iface ); +extern struct w_iface *create_winISteamUtils_SteamUtils006( struct u_iface ); +extern struct w_iface *create_winISteamUtils_SteamUtils007( struct u_iface ); +extern struct w_iface *create_winISteamUtils_SteamUtils008( struct u_iface ); +extern struct w_iface *create_winISteamUtils_SteamUtils009( struct u_iface ); +extern struct w_iface *create_winISteamUtils_SteamUtils010( struct u_iface ); diff --git a/lsteamclient/steamclient_main.c b/lsteamclient/steamclient_main.c index 95ac556f..ca028fc8 100644 --- a/lsteamclient/steamclient_main.c +++ b/lsteamclient/steamclient_main.c @@ -269,13 +269,13 @@ struct steamclient_interface { struct list entry; const char *name; - void *u_iface; + struct u_iface u_iface; struct w_iface *w_iface; }; static struct list steamclient_interfaces = LIST_INIT(steamclient_interfaces); -struct w_iface *create_win_interface( const char *name, struct u_iface *u_iface ) +struct w_iface *create_win_interface( const char *name, struct u_iface u_iface ) { struct steamclient_interface *e; struct w_iface *ret = NULL; @@ -283,14 +283,14 @@ struct w_iface *create_win_interface( const char *name, struct u_iface *u_iface TRACE("trying to create %s\n", name); - if (!u_iface) + if (!u_iface.handle) return NULL; EnterCriticalSection(&steamclient_cs); LIST_FOR_EACH_ENTRY(e, &steamclient_interfaces, struct steamclient_interface, entry) { - if (e->u_iface == u_iface && !strcmp(e->name, name)) + if (e->u_iface.handle == u_iface.handle && !strcmp(e->name, name)) { ret = e->w_iface; TRACE("-> %p\n", ret); diff --git a/lsteamclient/steamclient_private.h b/lsteamclient/steamclient_private.h index 6592c59b..d88ad63e 100644 --- a/lsteamclient/steamclient_private.h +++ b/lsteamclient/steamclient_private.h @@ -34,16 +34,16 @@ struct u_iface; struct w_iface { vtable_ptr *vtable; - void *u_iface; + struct u_iface u_iface; }; -typedef struct w_iface *(*iface_constructor)( struct u_iface * ); +typedef struct w_iface *(*iface_constructor)( struct u_iface ); extern iface_constructor find_iface_constructor( const char *iface_version ); -extern struct w_iface *create_winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001( struct u_iface * ); +extern struct w_iface *create_winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001( struct u_iface ); extern void execute_pending_callbacks(void); -struct w_iface *create_win_interface( const char *name, struct u_iface *u_iface ); +struct w_iface *create_win_interface( const char *name, struct u_iface ); void *alloc_mem_for_iface(size_t size, const char *iface_version); void *alloc_vtable(void *vtable, unsigned int method_count, const char *iface_version); diff --git a/lsteamclient/steamclient_structs.h b/lsteamclient/steamclient_structs.h index 5dc8a022..9bb497c3 100644 --- a/lsteamclient/steamclient_structs.h +++ b/lsteamclient/steamclient_structs.h @@ -10,8 +10,6 @@ #ifdef __cplusplus #include -extern "C" -{ #endif /* __cplusplus */ #ifdef __cplusplus @@ -60,8 +58,13 @@ typedef struct SteamDatagramGameCoordinatorServerLogin SteamDatagramGameCoordina #define PATH_MAX 4096 extern char *g_tmppath; +struct u_iface +{ + UINT64 handle; #ifdef __cplusplus -} /* extern "C" */ + struct u_iface &operator=( const void* value ) { this->handle = (UINT_PTR)value; return *this; } + template< typename T > operator T*() const { return (T*)(UINT_PTR)this->handle; } #endif /* __cplusplus */ +}; #endif /* __STEAMCLIENT_STRUCTS_H */ diff --git a/lsteamclient/unixlib.h b/lsteamclient/unixlib.h index 61c6a724..38672867 100644 --- a/lsteamclient/unixlib.h +++ b/lsteamclient/unixlib.h @@ -117,7 +117,7 @@ struct steamclient_next_callback_params struct steamclient_CreateInterface_params { - void *_ret; + struct u_iface _ret; const char *name; int *return_code; }; diff --git a/lsteamclient/unixlib_generated.h b/lsteamclient/unixlib_generated.h index cf640f84..1bef8572 100644 --- a/lsteamclient/unixlib_generated.h +++ b/lsteamclient/unixlib_generated.h @@ -11,13 +11,13 @@ extern "C" { struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetNumInstalledApps_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetInstalledApps_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t *pvecAppID; uint32_t unMaxAppIDs; @@ -25,7 +25,7 @@ struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetInstalledApps_params struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t nAppID; char *pchName; @@ -34,7 +34,7 @@ struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName_params struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInstallDir_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t nAppID; char *pchDirectory; @@ -43,14 +43,14 @@ struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInstallDir_params struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppBuildId_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION001_GetAppData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t nAppID; const char *pchKey; @@ -60,169 +60,169 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION001_GetAppData_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentGameLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsVACBanned_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetCurrentGameLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetAvailableGameLanguages_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsDlcInstalled_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsVACBanned_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetCurrentGameLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetAvailableGameLanguages_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsDlcInstalled_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetEarliestPurchaseUnixTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedFromFreeWeekend_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetDLCCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iDLC; uint32_t *pAppID; @@ -233,88 +233,88 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_InstallDLC_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_UninstallDLC_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsLowViolence_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsCybercafe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsVACBanned_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentGameLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAvailableGameLanguages_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsDlcInstalled_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetEarliestPurchaseUnixTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedFromFreeWeekend_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetDLCCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iDLC; uint32_t *pAppID; @@ -325,25 +325,25 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByIndex_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_InstallDLC_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_UninstallDLC_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_RequestAppProofOfPurchaseKey_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; char *pchName; int32_t cchNameBufferSize; @@ -351,14 +351,14 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_MarkContentCorrupt_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bMissingFilesOnly; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetInstalledDepots_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t *pvecDepots; uint32_t cMaxDepots; @@ -366,7 +366,7 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetInstalledDepots_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDir_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t appID; char *pchFolder; @@ -375,83 +375,83 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDir_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsAppInstalled_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsLowViolence_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsCybercafe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsVACBanned_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentGameLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAvailableGameLanguages_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsDlcInstalled_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetEarliestPurchaseUnixTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedFromFreeWeekend_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetDLCCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iDLC; uint32_t *pAppID; @@ -462,25 +462,25 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByIndex_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_InstallDLC_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_UninstallDLC_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_RequestAppProofOfPurchaseKey_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; char *pchName; int32_t cchNameBufferSize; @@ -488,14 +488,14 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_MarkContentCorrupt_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bMissingFilesOnly; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetInstalledDepots_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t appID; uint32_t *pvecDepots; @@ -504,7 +504,7 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetInstalledDepots_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppInstallDir_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t appID; char *pchFolder; @@ -513,96 +513,96 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppInstallDir_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsAppInstalled_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppOwner_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetLaunchQueryParam_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; const char *pchKey; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsVACBanned_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentGameLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAvailableGameLanguages_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsDlcInstalled_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetEarliestPurchaseUnixTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedFromFreeWeekend_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDLCCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iDLC; uint32_t *pAppID; @@ -613,25 +613,25 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByIndex_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_InstallDLC_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_UninstallDLC_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_RequestAppProofOfPurchaseKey_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; char *pchName; int32_t cchNameBufferSize; @@ -639,14 +639,14 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_MarkContentCorrupt_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bMissingFilesOnly; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetInstalledDepots_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t appID; uint32_t *pvecDepots; @@ -655,7 +655,7 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetInstalledDepots_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppInstallDir_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t appID; char *pchFolder; @@ -664,27 +664,27 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppInstallDir_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsAppInstalled_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppOwner_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetLaunchQueryParam_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; const char *pchKey; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t nAppID; uint64_t *punBytesDownloaded; @@ -693,82 +693,82 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppBuildId_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsLowViolence_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsCybercafe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsVACBanned_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentGameLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAvailableGameLanguages_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsDlcInstalled_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetEarliestPurchaseUnixTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFreeWeekend_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDLCCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iDLC; uint32_t *pAppID; @@ -779,25 +779,25 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByIndex_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_InstallDLC_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_UninstallDLC_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAppProofOfPurchaseKey_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; char *pchName; int32_t cchNameBufferSize; @@ -805,14 +805,14 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_MarkContentCorrupt_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bMissingFilesOnly; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetInstalledDepots_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t appID; uint32_t *pvecDepots; @@ -821,7 +821,7 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetInstalledDepots_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppInstallDir_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t appID; char *pchFolder; @@ -830,27 +830,27 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppInstallDir_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsAppInstalled_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppOwner_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchQueryParam_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; const char *pchKey; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t nAppID; uint64_t *punBytesDownloaded; @@ -859,25 +859,25 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadProgress_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppBuildId_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAllProofOfPurchaseKeys_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetFileDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszFileName; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchCommandLine_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; char *pszCommandLine; int32_t cubCommandLine; @@ -885,13 +885,13 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchCommandLine_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFamilySharing_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t *punSecondsAllowed; uint32_t *punSecondsPlayed; @@ -899,14 +899,14 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetDlcContext_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetNumBetas_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t *pnAvailable; int32_t *pnPrivate; @@ -914,7 +914,7 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetNumBetas_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetBetaInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iBetaIndex; uint32_t *punFlags; @@ -927,14 +927,14 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetBetaInfo_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetActiveBeta_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchBetaName; }; struct ISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001_GetAppOwnershipTicketData_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t nAppID; void *pvBuffer; @@ -947,25 +947,25 @@ struct ISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001_GetAppOwnershipTicket struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Init_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchAbsolutePathToControllerConfigVDF; }; struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Shutdown_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_GetControllerState_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unControllerIndex; SteamControllerState001_t *pState; @@ -973,7 +973,7 @@ struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_GetControllerState_par struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_TriggerHapticPulse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unControllerIndex; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -981,25 +981,25 @@ struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_TriggerHapticPulse_par struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_SetOverrideMode_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchMode; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Init_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Shutdown_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CreateBrowser_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchUserAgent; const char *pchUserCSS; @@ -1007,13 +1007,13 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CreateBrowser_pa struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_RemoveBrowser_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_LoadURL_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; const char *pchURL; const char *pchPostData; @@ -1021,7 +1021,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_LoadURL_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t unWidth; uint32_t unHeight; @@ -1029,31 +1029,31 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetSize_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopLoad_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Reload_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoBack_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoForward_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AddHeader_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; const char *pchKey; const char *pchValue; @@ -1061,35 +1061,35 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AddHeader_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ExecuteJavascript_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; const char *pchScript; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseUp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t eMouseButton; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDown_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t eMouseButton; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDoubleClick_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t eMouseButton; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseMove_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int32_t x; int32_t y; @@ -1097,14 +1097,14 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseMove_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseWheel_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int32_t nDelta; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyDown_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t nNativeKeyCode; uint32_t eHTMLKeyModifiers; @@ -1112,7 +1112,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyDown_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyUp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t nNativeKeyCode; uint32_t eHTMLKeyModifiers; @@ -1120,7 +1120,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyUp_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyChar_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t cUnicodeChar; uint32_t eHTMLKeyModifiers; @@ -1128,46 +1128,46 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyChar_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetHorizontalScroll_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t nAbsolutePixelScroll; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetVerticalScroll_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t nAbsolutePixelScroll; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetKeyFocus_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int8_t bHasKeyFocus; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ViewSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CopyToClipboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_PasteFromClipboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; const char *pchSearchStr; int8_t bCurrentlyInFind; @@ -1176,13 +1176,13 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopFind_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GetLinkAtPosition_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int32_t x; int32_t y; @@ -1190,40 +1190,40 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GetLinkAtPositio struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AllowStartRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int8_t bAllowed; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_JSDialogResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int8_t bResult; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_FileLoadDialogResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; const char **pchSelectedFiles; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Init_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Shutdown_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CreateBrowser_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchUserAgent; const char *pchUserCSS; @@ -1231,13 +1231,13 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CreateBrowser_pa struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_RemoveBrowser_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_LoadURL_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; const char *pchURL; const char *pchPostData; @@ -1245,7 +1245,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_LoadURL_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t unWidth; uint32_t unHeight; @@ -1253,31 +1253,31 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetSize_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopLoad_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Reload_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoBack_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoForward_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AddHeader_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; const char *pchKey; const char *pchValue; @@ -1285,35 +1285,35 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AddHeader_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ExecuteJavascript_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; const char *pchScript; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseUp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t eMouseButton; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDown_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t eMouseButton; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDoubleClick_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t eMouseButton; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseMove_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int32_t x; int32_t y; @@ -1321,14 +1321,14 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseMove_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseWheel_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int32_t nDelta; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyDown_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t nNativeKeyCode; uint32_t eHTMLKeyModifiers; @@ -1336,7 +1336,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyDown_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyUp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t nNativeKeyCode; uint32_t eHTMLKeyModifiers; @@ -1344,7 +1344,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyUp_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyChar_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t cUnicodeChar; uint32_t eHTMLKeyModifiers; @@ -1352,46 +1352,46 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyChar_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetHorizontalScroll_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t nAbsolutePixelScroll; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetVerticalScroll_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t nAbsolutePixelScroll; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetKeyFocus_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int8_t bHasKeyFocus; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ViewSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CopyToClipboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_PasteFromClipboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; const char *pchSearchStr; int8_t bCurrentlyInFind; @@ -1400,13 +1400,13 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopFind_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GetLinkAtPosition_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int32_t x; int32_t y; @@ -1414,7 +1414,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GetLinkAtPositio struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetCookie_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchHostname; const char *pchKey; const char *pchValue; @@ -1426,7 +1426,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetCookie_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetPageScaleFactor_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; float flZoom; int32_t nPointX; @@ -1435,40 +1435,40 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetPageScaleFact struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AllowStartRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int8_t bAllowed; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_JSDialogResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int8_t bResult; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_FileLoadDialogResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; const char **pchSelectedFiles; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Init_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Shutdown_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CreateBrowser_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchUserAgent; const char *pchUserCSS; @@ -1476,13 +1476,13 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CreateBrowser_pa struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_RemoveBrowser_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_LoadURL_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; const char *pchURL; const char *pchPostData; @@ -1490,7 +1490,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_LoadURL_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t unWidth; uint32_t unHeight; @@ -1498,31 +1498,31 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetSize_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopLoad_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Reload_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoBack_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoForward_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AddHeader_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; const char *pchKey; const char *pchValue; @@ -1530,35 +1530,35 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AddHeader_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ExecuteJavascript_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; const char *pchScript; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseUp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t eMouseButton; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDown_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t eMouseButton; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDoubleClick_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t eMouseButton; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseMove_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int32_t x; int32_t y; @@ -1566,14 +1566,14 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseMove_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseWheel_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int32_t nDelta; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyDown_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t nNativeKeyCode; uint32_t eHTMLKeyModifiers; @@ -1581,7 +1581,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyDown_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyUp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t nNativeKeyCode; uint32_t eHTMLKeyModifiers; @@ -1589,7 +1589,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyUp_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyChar_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t cUnicodeChar; uint32_t eHTMLKeyModifiers; @@ -1597,46 +1597,46 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyChar_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetHorizontalScroll_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t nAbsolutePixelScroll; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetVerticalScroll_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t nAbsolutePixelScroll; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetKeyFocus_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int8_t bHasKeyFocus; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ViewSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CopyToClipboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_PasteFromClipboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; const char *pchSearchStr; int8_t bCurrentlyInFind; @@ -1645,13 +1645,13 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopFind_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GetLinkAtPosition_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int32_t x; int32_t y; @@ -1659,7 +1659,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GetLinkAtPositio struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetCookie_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchHostname; const char *pchKey; const char *pchValue; @@ -1671,7 +1671,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetCookie_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetPageScaleFactor_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; float flZoom; int32_t nPointX; @@ -1680,47 +1680,47 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetPageScaleFact struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetBackgroundMode_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int8_t bBackgroundMode; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AllowStartRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int8_t bAllowed; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_JSDialogResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int8_t bResult; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_FileLoadDialogResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; const char **pchSelectedFiles; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Init_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Shutdown_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CreateBrowser_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchUserAgent; const char *pchUserCSS; @@ -1728,13 +1728,13 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CreateBrowser_pa struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_RemoveBrowser_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_LoadURL_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; const char *pchURL; const char *pchPostData; @@ -1742,7 +1742,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_LoadURL_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t unWidth; uint32_t unHeight; @@ -1750,31 +1750,31 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetSize_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopLoad_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Reload_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoBack_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoForward_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AddHeader_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; const char *pchKey; const char *pchValue; @@ -1782,35 +1782,35 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AddHeader_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ExecuteJavascript_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; const char *pchScript; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseUp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t eMouseButton; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDown_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t eMouseButton; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDoubleClick_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t eMouseButton; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseMove_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int32_t x; int32_t y; @@ -1818,14 +1818,14 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseMove_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseWheel_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int32_t nDelta; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyDown_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t nNativeKeyCode; uint32_t eHTMLKeyModifiers; @@ -1833,7 +1833,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyDown_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyUp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t nNativeKeyCode; uint32_t eHTMLKeyModifiers; @@ -1841,7 +1841,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyUp_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyChar_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t cUnicodeChar; uint32_t eHTMLKeyModifiers; @@ -1849,46 +1849,46 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyChar_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetHorizontalScroll_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t nAbsolutePixelScroll; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetVerticalScroll_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t nAbsolutePixelScroll; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetKeyFocus_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int8_t bHasKeyFocus; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ViewSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CopyToClipboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_PasteFromClipboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; const char *pchSearchStr; int8_t bCurrentlyInFind; @@ -1897,13 +1897,13 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopFind_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GetLinkAtPosition_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int32_t x; int32_t y; @@ -1911,7 +1911,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GetLinkAtPositio struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetCookie_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchHostname; const char *pchKey; const char *pchValue; @@ -1923,7 +1923,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetCookie_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetPageScaleFactor_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; float flZoom; int32_t nPointX; @@ -1932,54 +1932,54 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetPageScaleFact struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetBackgroundMode_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int8_t bBackgroundMode; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetDPIScalingFactor_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; float flDPIScaling; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AllowStartRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int8_t bAllowed; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_JSDialogResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int8_t bResult; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_FileLoadDialogResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; const char **pchSelectedFiles; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Init_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Shutdown_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CreateBrowser_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchUserAgent; const char *pchUserCSS; @@ -1987,13 +1987,13 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CreateBrowser_pa struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_RemoveBrowser_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_LoadURL_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; const char *pchURL; const char *pchPostData; @@ -2001,7 +2001,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_LoadURL_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t unWidth; uint32_t unHeight; @@ -2009,31 +2009,31 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetSize_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopLoad_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Reload_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoBack_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoForward_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AddHeader_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; const char *pchKey; const char *pchValue; @@ -2041,35 +2041,35 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AddHeader_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ExecuteJavascript_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; const char *pchScript; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseUp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t eMouseButton; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDown_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t eMouseButton; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDoubleClick_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t eMouseButton; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseMove_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int32_t x; int32_t y; @@ -2077,14 +2077,14 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseMove_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseWheel_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int32_t nDelta; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyDown_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t nNativeKeyCode; uint32_t eHTMLKeyModifiers; @@ -2093,7 +2093,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyDown_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyUp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t nNativeKeyCode; uint32_t eHTMLKeyModifiers; @@ -2101,7 +2101,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyUp_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyChar_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t cUnicodeChar; uint32_t eHTMLKeyModifiers; @@ -2109,46 +2109,46 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyChar_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetHorizontalScroll_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t nAbsolutePixelScroll; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetVerticalScroll_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; uint32_t nAbsolutePixelScroll; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetKeyFocus_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int8_t bHasKeyFocus; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ViewSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CopyToClipboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_PasteFromClipboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; const char *pchSearchStr; int8_t bCurrentlyInFind; @@ -2157,13 +2157,13 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopFind_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GetLinkAtPosition_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int32_t x; int32_t y; @@ -2171,7 +2171,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GetLinkAtPositio struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetCookie_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchHostname; const char *pchKey; const char *pchValue; @@ -2183,7 +2183,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetCookie_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetPageScaleFactor_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; float flZoom; int32_t nPointX; @@ -2192,48 +2192,48 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetPageScaleFact struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetBackgroundMode_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int8_t bBackgroundMode; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetDPIScalingFactor_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; float flDPIScaling; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_OpenDeveloperTools_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AllowStartRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int8_t bAllowed; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_JSDialogResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; int8_t bResult; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_FileLoadDialogResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unBrowserHandle; const char **pchSelectedFiles; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_CreateHTTPRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t eHTTPRequestMethod; const char *pchAbsoluteURL; @@ -2241,7 +2241,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_CreateHTTPRequest_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; uint64_t ulContextValue; @@ -2249,7 +2249,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue_para struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivityTimeout_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; uint32_t unTimeoutSeconds; @@ -2257,7 +2257,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivityTi struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeaderValue_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; const char *pchHeaderName; @@ -2266,7 +2266,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeaderValue_param struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOrPostParameter_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; const char *pchParamName; @@ -2275,7 +2275,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOrPostParamete struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; uint64_t *pCallHandle; @@ -2283,21 +2283,21 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_DeferHTTPRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_PrioritizeHTTPRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; const char *pchHeaderName; @@ -2306,7 +2306,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderSize_param struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderValue_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; const char *pchHeaderName; @@ -2316,7 +2316,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderValue_para struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodySize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; uint32_t *unBodySize; @@ -2324,7 +2324,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodySize_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; uint8_t *pBodyDataBuffer; @@ -2333,14 +2333,14 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodyData_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_ReleaseHTTPRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; float *pflPercentOut; @@ -2348,7 +2348,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct_para struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestRawPostBody_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; const char *pchContentType; @@ -2358,7 +2358,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestRawPostBody_param struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateHTTPRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t eHTTPRequestMethod; const char *pchAbsoluteURL; @@ -2366,7 +2366,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateHTTPRequest_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; uint64_t ulContextValue; @@ -2374,7 +2374,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue_para struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivityTimeout_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; uint32_t unTimeoutSeconds; @@ -2382,7 +2382,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivityTi struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeaderValue_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; const char *pchHeaderName; @@ -2391,7 +2391,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeaderValue_param struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOrPostParameter_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; const char *pchParamName; @@ -2400,7 +2400,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOrPostParamete struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; uint64_t *pCallHandle; @@ -2408,7 +2408,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndStreamResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; uint64_t *pCallHandle; @@ -2416,21 +2416,21 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndStreamRespons struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_DeferHTTPRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_PrioritizeHTTPRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; const char *pchHeaderName; @@ -2439,7 +2439,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderSize_param struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderValue_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; const char *pchHeaderName; @@ -2449,7 +2449,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderValue_para struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodySize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; uint32_t *unBodySize; @@ -2457,7 +2457,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodySize_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; uint8_t *pBodyDataBuffer; @@ -2466,7 +2466,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodyData_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingResponseBodyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; uint32_t cOffset; @@ -2476,14 +2476,14 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingResponseBodyDat struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseHTTPRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProgressPct_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; float *pflPercentOut; @@ -2491,7 +2491,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProgressPct_para struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPostBody_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; const char *pchContentType; @@ -2501,21 +2501,21 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPostBody_param struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateCookieContainer_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int8_t bAllowResponsesToModify; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseCookieContainer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hCookieContainer; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hCookieContainer; const char *pchHost; @@ -2525,7 +2525,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCookieContainer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; uint32_t hCookieContainer; @@ -2533,7 +2533,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCookieContainer_p struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserAgentInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; const char *pchUserAgentInfo; @@ -2541,7 +2541,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserAgentInfo_par struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRequiresVerifiedCertificate_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; int8_t bRequireVerifiedCertificate; @@ -2549,7 +2549,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRequiresVerifiedC struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeoutMS_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; uint32_t unMilliseconds; @@ -2557,7 +2557,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeoutMS struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPRequestWasTimedOut_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; int8_t *pbWasTimedOut; @@ -2565,7 +2565,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPRequestWasTimedOut_param struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateHTTPRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t eHTTPRequestMethod; const char *pchAbsoluteURL; @@ -2573,7 +2573,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateHTTPRequest_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; uint64_t ulContextValue; @@ -2581,7 +2581,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue_para struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivityTimeout_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; uint32_t unTimeoutSeconds; @@ -2589,7 +2589,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivityTi struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeaderValue_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; const char *pchHeaderName; @@ -2598,7 +2598,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeaderValue_param struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOrPostParameter_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; const char *pchParamName; @@ -2607,7 +2607,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOrPostParamete struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; uint64_t *pCallHandle; @@ -2615,7 +2615,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndStreamResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; uint64_t *pCallHandle; @@ -2623,21 +2623,21 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndStreamRespons struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_DeferHTTPRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_PrioritizeHTTPRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; const char *pchHeaderName; @@ -2646,7 +2646,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderSize_param struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderValue_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; const char *pchHeaderName; @@ -2656,7 +2656,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderValue_para struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodySize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; uint32_t *unBodySize; @@ -2664,7 +2664,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodySize_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; uint8_t *pBodyDataBuffer; @@ -2673,7 +2673,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodyData_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingResponseBodyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; uint32_t cOffset; @@ -2683,14 +2683,14 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingResponseBodyDat struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseHTTPRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProgressPct_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; float *pflPercentOut; @@ -2698,7 +2698,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProgressPct_para struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPostBody_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; const char *pchContentType; @@ -2708,21 +2708,21 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPostBody_param struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateCookieContainer_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int8_t bAllowResponsesToModify; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseCookieContainer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hCookieContainer; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hCookieContainer; const char *pchHost; @@ -2732,7 +2732,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCookieContainer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; uint32_t hCookieContainer; @@ -2740,7 +2740,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCookieContainer_p struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserAgentInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; const char *pchUserAgentInfo; @@ -2748,7 +2748,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserAgentInfo_par struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRequiresVerifiedCertificate_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; int8_t bRequireVerifiedCertificate; @@ -2756,7 +2756,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRequiresVerifiedC struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeoutMS_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; uint32_t unMilliseconds; @@ -2764,7 +2764,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeoutMS struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPRequestWasTimedOut_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hRequest; int8_t *pbWasTimedOut; @@ -2772,14 +2772,14 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPRequestWasTimedOut_param struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t resultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t resultHandle; SteamItemDetails_t *pOutItemsArray; @@ -2788,14 +2788,14 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultTimestamp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t resultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_CheckResultSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t resultHandle; CSteamID steamIDExpected; @@ -2803,20 +2803,20 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_CheckResultSteamID_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DestroyResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t resultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetAllItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; const uint64_t *pInstanceIDs; @@ -2825,7 +2825,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t resultHandle; void *pOutBuffer; @@ -2834,7 +2834,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pOutResultHandle; const void *pBuffer; @@ -2844,7 +2844,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResult_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; const int32_t *pArrayItemDefs; @@ -2854,14 +2854,14 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GrantPromoItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; int32_t itemDef; @@ -2869,7 +2869,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; const int32_t *pArrayItemDefs; @@ -2878,7 +2878,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; uint64_t itemConsume; @@ -2887,7 +2887,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; const int32_t *pArrayGenerate; @@ -2900,7 +2900,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TransferItemQuantity_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; uint64_t itemIdSource; @@ -2910,12 +2910,12 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TransferItemQuantity_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SendItemDropHeartbeat_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; int32_t dropListDefinition; @@ -2923,7 +2923,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; CSteamID steamIDTradePartner; @@ -2937,13 +2937,13 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_LoadItemDefinitions_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionIDs_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pItemDefIDs; uint32_t *punItemDefIDsArraySize; @@ -2951,7 +2951,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionIDs_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionProperty_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iDefinition; const char *pchPropertyName; @@ -2961,14 +2961,14 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionProperty_p struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_RequestEligiblePromoItemDefinitionsIDs_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetEligiblePromoItemDefinitionIDs_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamID; int32_t *pItemDefIDs; @@ -2977,14 +2977,14 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetEligiblePromoItemDefinit struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t resultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t resultHandle; SteamItemDetails_t *pOutItemsArray; @@ -2993,7 +2993,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemProperty_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t resultHandle; uint32_t unItemIndex; @@ -3004,14 +3004,14 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemProperty_param struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultTimestamp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t resultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_CheckResultSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t resultHandle; CSteamID steamIDExpected; @@ -3019,20 +3019,20 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_CheckResultSteamID_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DestroyResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t resultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetAllItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; const uint64_t *pInstanceIDs; @@ -3041,7 +3041,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t resultHandle; void *pOutBuffer; @@ -3050,7 +3050,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pOutResultHandle; const void *pBuffer; @@ -3060,7 +3060,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResult_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; const int32_t *pArrayItemDefs; @@ -3070,14 +3070,14 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GrantPromoItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; int32_t itemDef; @@ -3085,7 +3085,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; const int32_t *pArrayItemDefs; @@ -3094,7 +3094,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; uint64_t itemConsume; @@ -3103,7 +3103,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; const int32_t *pArrayGenerate; @@ -3116,7 +3116,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TransferItemQuantity_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; uint64_t itemIdSource; @@ -3126,12 +3126,12 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TransferItemQuantity_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SendItemDropHeartbeat_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; int32_t dropListDefinition; @@ -3139,7 +3139,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; CSteamID steamIDTradePartner; @@ -3153,13 +3153,13 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_LoadItemDefinitions_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionIDs_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pItemDefIDs; uint32_t *punItemDefIDsArraySize; @@ -3167,7 +3167,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionIDs_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionProperty_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iDefinition; const char *pchPropertyName; @@ -3177,14 +3177,14 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionProperty_p struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestEligiblePromoItemDefinitionsIDs_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligiblePromoItemDefinitionIDs_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamID; int32_t *pItemDefIDs; @@ -3193,7 +3193,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligiblePromoItemDefinit struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartPurchase_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const int32_t *pArrayItemDefs; const uint32_t *punArrayQuantity; @@ -3202,19 +3202,19 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartPurchase_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestPrices_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetNumItemsWithPrices_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPrices_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pArrayItemDefs; uint64_t *pPrices; @@ -3223,7 +3223,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPrices_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemPrice_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iDefinition; uint64_t *pPrice; @@ -3231,13 +3231,13 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemPrice_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartUpdateProperties_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint64_t nItemID; @@ -3246,7 +3246,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint64_t nItemID; @@ -3256,7 +3256,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint64_t nItemID; @@ -3266,7 +3266,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint64_t nItemID; @@ -3276,7 +3276,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint64_t nItemID; @@ -3286,7 +3286,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SubmitUpdateProperties_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int32_t *pResultHandle; @@ -3294,14 +3294,14 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SubmitUpdateProperties_para struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t resultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t resultHandle; SteamItemDetails_t *pOutItemsArray; @@ -3310,7 +3310,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemProperty_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t resultHandle; uint32_t unItemIndex; @@ -3321,14 +3321,14 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemProperty_param struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultTimestamp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t resultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_CheckResultSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t resultHandle; CSteamID steamIDExpected; @@ -3336,20 +3336,20 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_CheckResultSteamID_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DestroyResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t resultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetAllItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; const uint64_t *pInstanceIDs; @@ -3358,7 +3358,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t resultHandle; void *pOutBuffer; @@ -3367,7 +3367,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pOutResultHandle; const void *pBuffer; @@ -3377,7 +3377,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResult_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; const int32_t *pArrayItemDefs; @@ -3387,14 +3387,14 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GrantPromoItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; int32_t itemDef; @@ -3402,7 +3402,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; const int32_t *pArrayItemDefs; @@ -3411,7 +3411,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; uint64_t itemConsume; @@ -3420,7 +3420,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; const int32_t *pArrayGenerate; @@ -3433,7 +3433,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TransferItemQuantity_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; uint64_t itemIdSource; @@ -3443,12 +3443,12 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TransferItemQuantity_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SendItemDropHeartbeat_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; int32_t dropListDefinition; @@ -3456,7 +3456,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; CSteamID steamIDTradePartner; @@ -3470,13 +3470,13 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_LoadItemDefinitions_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionIDs_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pItemDefIDs; uint32_t *punItemDefIDsArraySize; @@ -3484,7 +3484,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionIDs_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionProperty_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iDefinition; const char *pchPropertyName; @@ -3494,14 +3494,14 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionProperty_p struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestEligiblePromoItemDefinitionsIDs_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligiblePromoItemDefinitionIDs_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamID; int32_t *pItemDefIDs; @@ -3510,7 +3510,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligiblePromoItemDefinit struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartPurchase_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const int32_t *pArrayItemDefs; const uint32_t *punArrayQuantity; @@ -3519,19 +3519,19 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartPurchase_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestPrices_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetNumItemsWithPrices_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPrices_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pArrayItemDefs; uint64_t *pCurrentPrices; @@ -3541,7 +3541,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPrices_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iDefinition; uint64_t *pCurrentPrice; @@ -3550,13 +3550,13 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartUpdateProperties_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint64_t nItemID; @@ -3565,7 +3565,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint64_t nItemID; @@ -3575,7 +3575,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint64_t nItemID; @@ -3585,7 +3585,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint64_t nItemID; @@ -3595,7 +3595,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint64_t nItemID; @@ -3605,7 +3605,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int32_t *pResultHandle; @@ -3613,7 +3613,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties_para struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_InspectItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pResultHandle; const char *pchItemToken; @@ -3621,40 +3621,40 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_InspectItem_params struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_RegisterSteamMusicRemote_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_DeregisterSteamMusicRemote_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BIsCurrentMusicRemote_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BActivationSuccess_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetDisplayName_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchDisplayName; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPNGIcon_64x64_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; void *pvBuffer; uint32_t cbBufferLength; @@ -3662,104 +3662,104 @@ struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPNGIcon_64x64_ struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayPrevious_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayNext_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableShuffled_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableLooped_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableQueue_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlaylists_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdatePlaybackStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t nStatus; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateShuffled_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateLooped_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateVolume_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; float flValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryWillChange_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryIsAvailable_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bAvailable; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryText_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchText; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryElapsedSeconds_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t nValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryCoverArt_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; void *pvBuffer; uint32_t cbBufferLength; @@ -3767,25 +3767,25 @@ struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntr struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryDidChange_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueWillChange_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetQueueEntries_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQueueEntry_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t nID; int32_t nPosition; @@ -3794,32 +3794,32 @@ struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQueueEntry_par struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentQueueEntry_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t nID; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueDidChange_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistWillChange_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetPlaylistEntries_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPlaylistEntry_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t nID; int32_t nPosition; @@ -3828,144 +3828,144 @@ struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPlaylistEntry_ struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentPlaylistEntry_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t nID; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistDidChange_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsEnabled_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsPlaying_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetPlaybackStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Play_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Pause_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayPrevious_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayNext_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_SetVolume_params { - struct u_iface *u_iface; + struct u_iface u_iface; float flVolume; }; struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetVolume_params { - struct u_iface *u_iface; + struct u_iface u_iface; float _ret; }; struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppBlocked_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t nAppID; }; struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppInBlockList_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t nAppID; }; struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eFeature; }; struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eFeature; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionID_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t iSessionIndex; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; uint32_t unSessionID; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t unSessionID; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientFormFactor_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t unSessionID; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClientResolution_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unSessionID; int32_t *pnResolutionX; @@ -3974,48 +3974,48 @@ struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClientRe struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BSendRemotePlayTogetherInvite_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionID_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t iSessionIndex; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; uint32_t unSessionID; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t unSessionID; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientFormFactor_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t unSessionID; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSessionClientResolution_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unSessionID; int32_t *pnResolutionX; @@ -4024,55 +4024,55 @@ struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSessionClientRe struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BStartRemotePlayTogether_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bShowOverlay; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BSendRemotePlayTogetherInvite_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionID_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t iSessionIndex; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; uint32_t unSessionID; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionClientName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t unSessionID; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionClientFormFactor_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t unSessionID; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BGetSessionClientResolution_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unSessionID; int32_t *pnResolutionX; @@ -4081,31 +4081,31 @@ struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BGetSessionClientRe struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_ShowRemotePlayTogetherUI_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BSendRemotePlayTogetherInvite_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BEnableRemotePlayTogetherDirectInput_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_DisableRemotePlayTogetherDirectInput_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetInput_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; RemotePlayInput_t *pInput; uint32_t unMaxEvents; @@ -4113,14 +4113,14 @@ struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetInput_params struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMouseVisibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unSessionID; int8_t bVisible; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMousePosition_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unSessionID; float flNormalizedX; float flNormalizedY; @@ -4128,7 +4128,7 @@ struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMousePosition_pa struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_CreateMouseCursor_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t nWidth; int32_t nHeight; @@ -4140,14 +4140,14 @@ struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_CreateMouseCursor_p struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMouseCursor_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unSessionID; uint32_t unCursorID; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileWrite_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; const void *pvData; @@ -4156,14 +4156,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileWrite_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileRead_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchFile; void *pvData; @@ -4172,27 +4172,27 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileExists_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileDelete_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileNameAndSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; int32_t iFile; int32_t *pnFileSizeInBytes; @@ -4200,7 +4200,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; @@ -4208,7 +4208,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileWrite_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; const void *pvData; @@ -4217,14 +4217,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileWrite_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileRead_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchFile; void *pvData; @@ -4233,20 +4233,20 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileExists_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileNameAndSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; int32_t iFile; int32_t *pnFileSizeInBytes; @@ -4254,7 +4254,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; @@ -4262,7 +4262,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileWrite_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; const void *pvData; @@ -4271,7 +4271,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileWrite_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileRead_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchFile; void *pvData; @@ -4280,62 +4280,62 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileForget_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileDelete_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileShare_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileExists_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FilePersisted_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileTimestamp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileNameAndSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; int32_t iFile; int32_t *pnFileSizeInBytes; @@ -4343,7 +4343,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetQuota_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; @@ -4351,32 +4351,32 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForAccount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_SetCloudEnabledForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCDownload_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hContent; uint32_t *pnAppID; @@ -4387,7 +4387,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetUGCDetails struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCRead_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t hContent; void *pvData; @@ -4396,20 +4396,20 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCRead_param struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; int32_t iCachedContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileWrite_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; const void *pvData; @@ -4418,7 +4418,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileWrite_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileRead_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchFile; void *pvData; @@ -4427,28 +4427,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileForget_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileDelete_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileShare_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetSyncPlatforms_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; @@ -4456,48 +4456,48 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetSyncPlatfo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileExists_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FilePersisted_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileTimestamp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetSyncPlatforms_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileNameAndSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; int32_t iFile; int32_t *pnFileSizeInBytes; @@ -4505,7 +4505,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetQuota_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; @@ -4513,32 +4513,32 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForAccount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetCloudEnabledForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCDownload_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hContent; uint32_t *pnAppID; @@ -4549,7 +4549,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetUGCDetails struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCRead_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t hContent; void *pvData; @@ -4558,20 +4558,20 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCRead_param struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; int32_t iCachedContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileWrite_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; const void *pvData; @@ -4580,7 +4580,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileWrite_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileRead_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchFile; void *pvData; @@ -4589,28 +4589,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileForget_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileDelete_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileShare_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetSyncPlatforms_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; @@ -4618,48 +4618,48 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetSyncPlatfo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileExists_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FilePersisted_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileTimestamp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetSyncPlatforms_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileNameAndSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; int32_t iFile; int32_t *pnFileSizeInBytes; @@ -4667,7 +4667,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetQuota_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; @@ -4675,32 +4675,32 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForAccount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetCloudEnabledForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCDownload_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hContent; uint32_t *pnAppID; @@ -4711,7 +4711,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetUGCDetails struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCRead_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t hContent; void *pvData; @@ -4720,20 +4720,20 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCRead_param struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; int32_t iCachedContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; const char *pchPreviewFile; @@ -4746,7 +4746,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishFile_p struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishWorkshopFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; const char *pchPreviewFile; @@ -4758,56 +4758,56 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishWorksh struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UpdatePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; w_RemoteStorageUpdatePublishedFileRequest_t updatePublishedFileRequest; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetPublishedFileDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_DeletePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserPublishedFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SubscribePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserSubscribedFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UnsubscribePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileWrite_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; const void *pvData; @@ -4816,7 +4816,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileWrite_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileRead_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchFile; void *pvData; @@ -4825,28 +4825,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileForget_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileDelete_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileShare_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetSyncPlatforms_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; @@ -4854,48 +4854,48 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetSyncPlatfo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileExists_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FilePersisted_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileTimestamp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetSyncPlatforms_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileNameAndSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; int32_t iFile; int32_t *pnFileSizeInBytes; @@ -4903,7 +4903,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetQuota_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; @@ -4911,32 +4911,32 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForAccount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetCloudEnabledForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCDownload_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDownloadProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hContent; int32_t *pnBytesDownloaded; @@ -4945,7 +4945,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDownloa struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hContent; uint32_t *pnAppID; @@ -4956,7 +4956,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDetails struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCRead_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t hContent; void *pvData; @@ -4965,20 +4965,20 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCRead_param struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; int32_t iCachedContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishWorkshopFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; const char *pchPreviewFile; @@ -4992,14 +4992,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishWorksh struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CreatePublishedFileUpdateRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchFile; @@ -5007,7 +5007,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFilePreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchPreviewFile; @@ -5015,7 +5015,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTitle_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchTitle; @@ -5023,7 +5023,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchDescription; @@ -5031,7 +5031,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileVisibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; uint32_t eVisibility; @@ -5039,7 +5039,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; w_SteamParamStringArray_t *pTags; @@ -5047,56 +5047,56 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CommitPublishedFileUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t updateHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedFileDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_DeletePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserPublishedFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SubscribePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSubscribedFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UnsubscribePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileSetChangeDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchChangeDescription; @@ -5104,14 +5104,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedItemVoteDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdateUserPublishedItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; int8_t bVoteUp; @@ -5119,14 +5119,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdateUserPub struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUserPublishedItemVoteDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSharedWorkshopFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamId; uint32_t unStartIndex; @@ -5136,7 +5136,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUser struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchVideoURL; const char *pchPreviewFile; @@ -5149,7 +5149,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishVideo_ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetUserPublishedFileAction_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; uint32_t eAction; @@ -5157,7 +5157,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetUserPublis struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedFilesByUserAction_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eAction; uint32_t unStartIndex; @@ -5165,7 +5165,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedWorkshopFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eEnumerationType; uint32_t unStartIndex; @@ -5177,7 +5177,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileWrite_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; const void *pvData; @@ -5186,7 +5186,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileWrite_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileRead_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchFile; void *pvData; @@ -5195,28 +5195,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileForget_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileDelete_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileShare_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetSyncPlatforms_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; @@ -5224,48 +5224,48 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetSyncPlatfo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileExists_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FilePersisted_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileTimestamp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetSyncPlatforms_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileNameAndSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; int32_t iFile; int32_t *pnFileSizeInBytes; @@ -5273,7 +5273,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetQuota_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; @@ -5281,32 +5281,32 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForAccount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetCloudEnabledForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCDownload_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDownloadProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hContent; int32_t *pnBytesDownloaded; @@ -5315,7 +5315,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDownloa struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hContent; uint32_t *pnAppID; @@ -5326,7 +5326,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDetails struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCRead_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t hContent; void *pvData; @@ -5335,20 +5335,20 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCRead_param struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; int32_t iCachedContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishWorkshopFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; const char *pchPreviewFile; @@ -5362,14 +5362,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishWorksh struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CreatePublishedFileUpdateRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchFile; @@ -5377,7 +5377,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFilePreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchPreviewFile; @@ -5385,7 +5385,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTitle_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchTitle; @@ -5393,7 +5393,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchDescription; @@ -5401,7 +5401,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileVisibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; uint32_t eVisibility; @@ -5409,7 +5409,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; w_SteamParamStringArray_t *pTags; @@ -5417,56 +5417,56 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CommitPublishedFileUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t updateHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedFileDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_DeletePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserPublishedFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SubscribePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSubscribedFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UnsubscribePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileSetChangeDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchChangeDescription; @@ -5474,14 +5474,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedItemVoteDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdateUserPublishedItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; int8_t bVoteUp; @@ -5489,14 +5489,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdateUserPub struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUserPublishedItemVoteDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSharedWorkshopFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamId; uint32_t unStartIndex; @@ -5506,7 +5506,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUser struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eVideoProvider; const char *pchVideoAccount; @@ -5521,7 +5521,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishVideo_ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetUserPublishedFileAction_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; uint32_t eAction; @@ -5529,7 +5529,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetUserPublis struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedFilesByUserAction_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eAction; uint32_t unStartIndex; @@ -5537,7 +5537,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedWorkshopFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eEnumerationType; uint32_t unStartIndex; @@ -5549,7 +5549,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWrite_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; const void *pvData; @@ -5558,7 +5558,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWrite_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileRead_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchFile; void *pvData; @@ -5567,28 +5567,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileForget_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileDelete_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileShare_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetSyncPlatforms_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; @@ -5596,14 +5596,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetSyncPlatfo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamOpen_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamWriteChunk_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t writeHandle; const void *pvData; @@ -5612,62 +5612,62 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamClose_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamCancel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileExists_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FilePersisted_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileTimestamp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetSyncPlatforms_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileNameAndSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; int32_t iFile; int32_t *pnFileSizeInBytes; @@ -5675,7 +5675,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetQuota_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; @@ -5683,32 +5683,32 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForAccount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetCloudEnabledForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCDownload_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDownloadProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hContent; int32_t *pnBytesDownloaded; @@ -5717,7 +5717,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDownloa struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hContent; uint32_t *pnAppID; @@ -5728,7 +5728,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDetails struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCRead_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t hContent; void *pvData; @@ -5737,20 +5737,20 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCRead_param struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; int32_t iCachedContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishWorkshopFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; const char *pchPreviewFile; @@ -5764,14 +5764,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishWorksh struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CreatePublishedFileUpdateRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchFile; @@ -5779,7 +5779,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFilePreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchPreviewFile; @@ -5787,7 +5787,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTitle_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchTitle; @@ -5795,7 +5795,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchDescription; @@ -5803,7 +5803,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileVisibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; uint32_t eVisibility; @@ -5811,7 +5811,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; w_SteamParamStringArray_t *pTags; @@ -5819,56 +5819,56 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CommitPublishedFileUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t updateHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedFileDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_DeletePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserPublishedFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SubscribePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSubscribedFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UnsubscribePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileSetChangeDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchChangeDescription; @@ -5876,14 +5876,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedItemVoteDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdateUserPublishedItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; int8_t bVoteUp; @@ -5891,14 +5891,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdateUserPub struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUserPublishedItemVoteDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSharedWorkshopFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamId; uint32_t unStartIndex; @@ -5908,7 +5908,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUser struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eVideoProvider; const char *pchVideoAccount; @@ -5923,7 +5923,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishVideo_ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetUserPublishedFileAction_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; uint32_t eAction; @@ -5931,7 +5931,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetUserPublis struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedFilesByUserAction_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eAction; uint32_t unStartIndex; @@ -5939,7 +5939,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedWorkshopFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eEnumerationType; uint32_t unStartIndex; @@ -5951,7 +5951,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWrite_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; const void *pvData; @@ -5960,7 +5960,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWrite_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileRead_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchFile; void *pvData; @@ -5969,28 +5969,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileForget_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileDelete_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileShare_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetSyncPlatforms_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; @@ -5998,14 +5998,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetSyncPlatfo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamOpen_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamWriteChunk_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t writeHandle; const void *pvData; @@ -6014,62 +6014,62 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamClose_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamCancel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileExists_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FilePersisted_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileTimestamp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetSyncPlatforms_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileNameAndSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; int32_t iFile; int32_t *pnFileSizeInBytes; @@ -6077,7 +6077,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetQuota_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; @@ -6085,32 +6085,32 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForAccount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetCloudEnabledForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCDownload_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDownloadProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hContent; int32_t *pnBytesDownloaded; @@ -6119,7 +6119,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDownloa struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hContent; uint32_t *pnAppID; @@ -6130,7 +6130,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDetails struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCRead_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t hContent; void *pvData; @@ -6140,20 +6140,20 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCRead_param struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; int32_t iCachedContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishWorkshopFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; const char *pchPreviewFile; @@ -6167,14 +6167,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishWorksh struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CreatePublishedFileUpdateRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchFile; @@ -6182,7 +6182,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFilePreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchPreviewFile; @@ -6190,7 +6190,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTitle_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchTitle; @@ -6198,7 +6198,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchDescription; @@ -6206,7 +6206,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileVisibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; uint32_t eVisibility; @@ -6214,7 +6214,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; w_SteamParamStringArray_t *pTags; @@ -6222,56 +6222,56 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CommitPublishedFileUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t updateHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedFileDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_DeletePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserPublishedFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SubscribePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSubscribedFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UnsubscribePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileSetChangeDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchChangeDescription; @@ -6279,14 +6279,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedItemVoteDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdateUserPublishedItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; int8_t bVoteUp; @@ -6294,14 +6294,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdateUserPub struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUserPublishedItemVoteDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSharedWorkshopFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamId; uint32_t unStartIndex; @@ -6311,7 +6311,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUser struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eVideoProvider; const char *pchVideoAccount; @@ -6326,7 +6326,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishVideo_ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetUserPublishedFileAction_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; uint32_t eAction; @@ -6334,7 +6334,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetUserPublis struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedFilesByUserAction_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eAction; uint32_t unStartIndex; @@ -6342,7 +6342,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedWorkshopFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eEnumerationType; uint32_t unStartIndex; @@ -6354,7 +6354,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWrite_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; const void *pvData; @@ -6363,7 +6363,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWrite_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileRead_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchFile; void *pvData; @@ -6372,28 +6372,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileForget_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileDelete_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileShare_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetSyncPlatforms_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; @@ -6401,14 +6401,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetSyncPlatfo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamOpen_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamWriteChunk_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t writeHandle; const void *pvData; @@ -6417,62 +6417,62 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamClose_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamCancel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileExists_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FilePersisted_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileTimestamp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetSyncPlatforms_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileNameAndSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; int32_t iFile; int32_t *pnFileSizeInBytes; @@ -6480,7 +6480,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetQuota_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; @@ -6488,25 +6488,25 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForAccount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetCloudEnabledForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownload_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hContent; uint32_t unPriority; @@ -6514,7 +6514,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownload_p struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDownloadProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hContent; int32_t *pnBytesDownloaded; @@ -6523,7 +6523,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDownloa struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hContent; uint32_t *pnAppID; @@ -6534,7 +6534,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDetails struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCRead_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t hContent; void *pvData; @@ -6544,20 +6544,20 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCRead_param struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; int32_t iCachedContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishWorkshopFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; const char *pchPreviewFile; @@ -6571,14 +6571,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishWorksh struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CreatePublishedFileUpdateRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchFile; @@ -6586,7 +6586,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFilePreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchPreviewFile; @@ -6594,7 +6594,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTitle_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchTitle; @@ -6602,7 +6602,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchDescription; @@ -6610,7 +6610,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileVisibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; uint32_t eVisibility; @@ -6618,7 +6618,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; w_SteamParamStringArray_t *pTags; @@ -6626,56 +6626,56 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CommitPublishedFileUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t updateHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedFileDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_DeletePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserPublishedFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SubscribePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSubscribedFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UnsubscribePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileSetChangeDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchChangeDescription; @@ -6683,14 +6683,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedItemVoteDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdateUserPublishedItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; int8_t bVoteUp; @@ -6698,14 +6698,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdateUserPub struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUserPublishedItemVoteDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSharedWorkshopFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamId; uint32_t unStartIndex; @@ -6715,7 +6715,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUser struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eVideoProvider; const char *pchVideoAccount; @@ -6730,7 +6730,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishVideo_ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetUserPublishedFileAction_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; uint32_t eAction; @@ -6738,7 +6738,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetUserPublis struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedFilesByUserAction_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eAction; uint32_t unStartIndex; @@ -6746,7 +6746,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedWorkshopFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eEnumerationType; uint32_t unStartIndex; @@ -6758,7 +6758,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownloadToLocation_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hContent; const char *pchLocation; @@ -6767,7 +6767,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownloadTo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWrite_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; const void *pvData; @@ -6776,7 +6776,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWrite_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileRead_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchFile; void *pvData; @@ -6785,28 +6785,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileForget_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileDelete_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileShare_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetSyncPlatforms_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; @@ -6814,14 +6814,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetSyncPlatfo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamOpen_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamWriteChunk_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t writeHandle; const void *pvData; @@ -6830,62 +6830,62 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamClose_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamCancel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileExists_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FilePersisted_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileTimestamp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetSyncPlatforms_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileNameAndSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; int32_t iFile; int32_t *pnFileSizeInBytes; @@ -6893,7 +6893,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetQuota_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; @@ -6901,25 +6901,25 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForAccount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetCloudEnabledForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownload_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hContent; uint32_t unPriority; @@ -6927,7 +6927,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownload_p struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDownloadProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hContent; int32_t *pnBytesDownloaded; @@ -6936,7 +6936,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDownloa struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hContent; uint32_t *pnAppID; @@ -6947,7 +6947,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDetails struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCRead_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t hContent; void *pvData; @@ -6957,20 +6957,20 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCRead_param struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; int32_t iCachedContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishWorkshopFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; const char *pchPreviewFile; @@ -6984,14 +6984,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishWorksh struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CreatePublishedFileUpdateRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchFile; @@ -6999,7 +6999,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFilePreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchPreviewFile; @@ -7007,7 +7007,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTitle_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchTitle; @@ -7015,7 +7015,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchDescription; @@ -7023,7 +7023,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileVisibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; uint32_t eVisibility; @@ -7031,7 +7031,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; w_SteamParamStringArray_t *pTags; @@ -7039,14 +7039,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CommitPublishedFileUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t updateHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedFileDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; uint32_t unMaxSecondsOld; @@ -7054,42 +7054,42 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedF struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_DeletePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserPublishedFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SubscribePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSubscribedFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UnsubscribePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileSetChangeDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchChangeDescription; @@ -7097,14 +7097,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedItemVoteDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdateUserPublishedItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; int8_t bVoteUp; @@ -7112,14 +7112,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdateUserPub struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUserPublishedItemVoteDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSharedWorkshopFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamId; uint32_t unStartIndex; @@ -7129,7 +7129,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUser struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eVideoProvider; const char *pchVideoAccount; @@ -7144,7 +7144,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishVideo_ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetUserPublishedFileAction_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; uint32_t eAction; @@ -7152,7 +7152,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetUserPublis struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedFilesByUserAction_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eAction; uint32_t unStartIndex; @@ -7160,7 +7160,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedWorkshopFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eEnumerationType; uint32_t unStartIndex; @@ -7172,7 +7172,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownloadToLocation_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hContent; const char *pchLocation; @@ -7181,7 +7181,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownloadTo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWrite_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; const void *pvData; @@ -7190,7 +7190,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWrite_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileRead_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchFile; void *pvData; @@ -7199,28 +7199,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileForget_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileDelete_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileShare_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetSyncPlatforms_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; @@ -7228,14 +7228,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetSyncPlatfo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamOpen_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamWriteChunk_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t writeHandle; const void *pvData; @@ -7244,62 +7244,62 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamClose_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamCancel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileExists_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FilePersisted_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileTimestamp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetSyncPlatforms_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileNameAndSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; int32_t iFile; int32_t *pnFileSizeInBytes; @@ -7307,7 +7307,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetQuota_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; @@ -7315,25 +7315,25 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForAccount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetCloudEnabledForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownload_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hContent; uint32_t unPriority; @@ -7341,7 +7341,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownload_p struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDownloadProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hContent; int32_t *pnBytesDownloaded; @@ -7350,7 +7350,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDownloa struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hContent; uint32_t *pnAppID; @@ -7361,7 +7361,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDetails struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCRead_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t hContent; void *pvData; @@ -7372,20 +7372,20 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCRead_param struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; int32_t iCachedContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishWorkshopFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; const char *pchPreviewFile; @@ -7399,14 +7399,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishWorksh struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CreatePublishedFileUpdateRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchFile; @@ -7414,7 +7414,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFilePreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchPreviewFile; @@ -7422,7 +7422,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTitle_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchTitle; @@ -7430,7 +7430,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchDescription; @@ -7438,7 +7438,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileVisibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; uint32_t eVisibility; @@ -7446,7 +7446,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; w_SteamParamStringArray_t *pTags; @@ -7454,14 +7454,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CommitPublishedFileUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t updateHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedFileDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; uint32_t unMaxSecondsOld; @@ -7469,42 +7469,42 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedF struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_DeletePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserPublishedFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SubscribePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSubscribedFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UnsubscribePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileSetChangeDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchChangeDescription; @@ -7512,14 +7512,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedItemVoteDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdateUserPublishedItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; int8_t bVoteUp; @@ -7527,14 +7527,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdateUserPub struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUserPublishedItemVoteDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSharedWorkshopFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamId; uint32_t unStartIndex; @@ -7544,7 +7544,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUser struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eVideoProvider; const char *pchVideoAccount; @@ -7559,7 +7559,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishVideo_ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetUserPublishedFileAction_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; uint32_t eAction; @@ -7567,7 +7567,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetUserPublis struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedFilesByUserAction_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eAction; uint32_t unStartIndex; @@ -7575,7 +7575,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedWorkshopFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eEnumerationType; uint32_t unStartIndex; @@ -7587,7 +7587,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownloadToLocation_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hContent; const char *pchLocation; @@ -7596,7 +7596,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownloadTo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWrite_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; const void *pvData; @@ -7605,7 +7605,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWrite_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileRead_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchFile; void *pvData; @@ -7614,7 +7614,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteAsync_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; const void *pvData; @@ -7623,7 +7623,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteAsyn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsync_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; uint32_t nOffset; @@ -7632,7 +7632,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsync struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsyncComplete_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hReadCall; void *pvBuffer; @@ -7641,28 +7641,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsync struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileForget_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileDelete_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileShare_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetSyncPlatforms_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; @@ -7670,14 +7670,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetSyncPlatfo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamOpen_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamWriteChunk_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t writeHandle; const void *pvData; @@ -7686,62 +7686,62 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamClose_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamCancel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileExists_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FilePersisted_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileTimestamp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetSyncPlatforms_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileNameAndSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; int32_t iFile; int32_t *pnFileSizeInBytes; @@ -7749,7 +7749,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetQuota_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; @@ -7757,25 +7757,25 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForAccount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetCloudEnabledForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownload_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hContent; uint32_t unPriority; @@ -7783,7 +7783,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownload_p struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDownloadProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hContent; int32_t *pnBytesDownloaded; @@ -7792,7 +7792,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDownloa struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hContent; uint32_t *pnAppID; @@ -7803,7 +7803,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDetails struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCRead_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t hContent; void *pvData; @@ -7814,20 +7814,20 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCRead_param struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; int32_t iCachedContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishWorkshopFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; const char *pchPreviewFile; @@ -7841,14 +7841,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishWorksh struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CreatePublishedFileUpdateRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchFile; @@ -7856,7 +7856,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFilePreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchPreviewFile; @@ -7864,7 +7864,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTitle_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchTitle; @@ -7872,7 +7872,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchDescription; @@ -7880,7 +7880,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileVisibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; uint32_t eVisibility; @@ -7888,7 +7888,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; w_SteamParamStringArray_t *pTags; @@ -7896,14 +7896,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CommitPublishedFileUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t updateHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedFileDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; uint32_t unMaxSecondsOld; @@ -7911,42 +7911,42 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedF struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_DeletePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserPublishedFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SubscribePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSubscribedFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UnsubscribePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileSetChangeDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchChangeDescription; @@ -7954,14 +7954,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedItemVoteDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdateUserPublishedItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; int8_t bVoteUp; @@ -7969,14 +7969,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdateUserPub struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUserPublishedItemVoteDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSharedWorkshopFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamId; uint32_t unStartIndex; @@ -7986,7 +7986,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUser struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eVideoProvider; const char *pchVideoAccount; @@ -8001,7 +8001,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishVideo_ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetUserPublishedFileAction_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; uint32_t eAction; @@ -8009,7 +8009,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetUserPublis struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedFilesByUserAction_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eAction; uint32_t unStartIndex; @@ -8017,7 +8017,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedWorkshopFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eEnumerationType; uint32_t unStartIndex; @@ -8029,7 +8029,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownloadToLocation_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hContent; const char *pchLocation; @@ -8038,7 +8038,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownloadTo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWrite_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; const void *pvData; @@ -8047,7 +8047,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWrite_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileRead_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchFile; void *pvData; @@ -8056,7 +8056,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteAsync_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; const void *pvData; @@ -8065,7 +8065,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteAsyn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsync_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; uint32_t nOffset; @@ -8074,7 +8074,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsync struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsyncComplete_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hReadCall; void *pvBuffer; @@ -8083,28 +8083,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsync struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileForget_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileDelete_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileShare_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetSyncPlatforms_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; @@ -8112,14 +8112,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetSyncPlatfo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamOpen_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamWriteChunk_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t writeHandle; const void *pvData; @@ -8128,62 +8128,62 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamClose_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamCancel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileExists_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FilePersisted_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileTimestamp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetSyncPlatforms_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileNameAndSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; int32_t iFile; int32_t *pnFileSizeInBytes; @@ -8191,7 +8191,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetQuota_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t *pnTotalBytes; uint64_t *puAvailableBytes; @@ -8199,25 +8199,25 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForAccount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetCloudEnabledForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownload_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hContent; uint32_t unPriority; @@ -8225,7 +8225,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownload_p struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDownloadProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hContent; int32_t *pnBytesDownloaded; @@ -8234,7 +8234,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDownloa struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hContent; uint32_t *pnAppID; @@ -8245,7 +8245,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDetails struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCRead_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t hContent; void *pvData; @@ -8256,20 +8256,20 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCRead_param struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; int32_t iCachedContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishWorkshopFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; const char *pchPreviewFile; @@ -8283,14 +8283,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishWorksh struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CreatePublishedFileUpdateRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchFile; @@ -8298,7 +8298,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFilePreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchPreviewFile; @@ -8306,7 +8306,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTitle_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchTitle; @@ -8314,7 +8314,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchDescription; @@ -8322,7 +8322,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileVisibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; uint32_t eVisibility; @@ -8330,7 +8330,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; w_SteamParamStringArray_t *pTags; @@ -8338,14 +8338,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CommitPublishedFileUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t updateHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedFileDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; uint32_t unMaxSecondsOld; @@ -8353,42 +8353,42 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedF struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_DeletePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserPublishedFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SubscribePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSubscribedFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UnsubscribePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileSetChangeDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchChangeDescription; @@ -8396,14 +8396,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedItemVoteDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdateUserPublishedItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; int8_t bVoteUp; @@ -8411,14 +8411,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdateUserPub struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUserPublishedItemVoteDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSharedWorkshopFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamId; uint32_t unStartIndex; @@ -8428,7 +8428,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUser struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eVideoProvider; const char *pchVideoAccount; @@ -8443,7 +8443,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishVideo_ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetUserPublishedFileAction_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; uint32_t eAction; @@ -8451,7 +8451,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetUserPublis struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedFilesByUserAction_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eAction; uint32_t unStartIndex; @@ -8459,7 +8459,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedWorkshopFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eEnumerationType; uint32_t unStartIndex; @@ -8471,7 +8471,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownloadToLocation_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hContent; const char *pchLocation; @@ -8480,7 +8480,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownloadTo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWrite_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; const void *pvData; @@ -8489,7 +8489,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWrite_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileRead_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchFile; void *pvData; @@ -8498,7 +8498,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteAsync_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; const void *pvData; @@ -8507,7 +8507,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteAsyn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsync_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; uint32_t nOffset; @@ -8516,7 +8516,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsync struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsyncComplete_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hReadCall; void *pvBuffer; @@ -8525,28 +8525,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsync struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileForget_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileDelete_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileShare_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetSyncPlatforms_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; @@ -8554,14 +8554,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetSyncPlatfo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamOpen_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamWriteChunk_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t writeHandle; const void *pvData; @@ -8570,62 +8570,62 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamClose_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamCancel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileExists_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FilePersisted_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileTimestamp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetSyncPlatforms_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileNameAndSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; int32_t iFile; int32_t *pnFileSizeInBytes; @@ -8633,7 +8633,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetQuota_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t *pnTotalBytes; uint64_t *puAvailableBytes; @@ -8641,25 +8641,25 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForAccount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetCloudEnabledForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownload_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hContent; uint32_t unPriority; @@ -8667,7 +8667,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownload_p struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDownloadProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hContent; int32_t *pnBytesDownloaded; @@ -8676,7 +8676,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDownloa struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hContent; uint32_t *pnAppID; @@ -8687,7 +8687,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDetails struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCRead_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t hContent; void *pvData; @@ -8698,20 +8698,20 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCRead_param struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; int32_t iCachedContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishWorkshopFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchFile; const char *pchPreviewFile; @@ -8725,14 +8725,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishWorksh struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CreatePublishedFileUpdateRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchFile; @@ -8740,7 +8740,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFilePreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchPreviewFile; @@ -8748,7 +8748,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTitle_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchTitle; @@ -8756,7 +8756,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchDescription; @@ -8764,7 +8764,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileVisibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; uint32_t eVisibility; @@ -8772,7 +8772,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; w_SteamParamStringArray_t *pTags; @@ -8780,14 +8780,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CommitPublishedFileUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t updateHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedFileDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; uint32_t unMaxSecondsOld; @@ -8795,42 +8795,42 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedF struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_DeletePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserPublishedFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SubscribePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSubscribedFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UnsubscribePublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileSetChangeDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const char *pchChangeDescription; @@ -8838,14 +8838,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedItemVoteDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdateUserPublishedItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; int8_t bVoteUp; @@ -8853,14 +8853,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdateUserPub struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUserPublishedItemVoteDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSharedWorkshopFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamId; uint32_t unStartIndex; @@ -8870,7 +8870,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUser struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eVideoProvider; const char *pchVideoAccount; @@ -8885,7 +8885,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishVideo_ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetUserPublishedFileAction_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t unPublishedFileId; uint32_t eAction; @@ -8893,7 +8893,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetUserPublis struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedFilesByUserAction_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eAction; uint32_t unStartIndex; @@ -8901,7 +8901,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedWorkshopFiles_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eEnumerationType; uint32_t unStartIndex; @@ -8913,7 +8913,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownloadToLocation_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hContent; const char *pchLocation; @@ -8922,13 +8922,13 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownloadTo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChangeCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChange_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; int32_t iFile; uint32_t *pEChangeType; @@ -8937,19 +8937,19 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileC struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_BeginFileWriteBatch_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EndFileWriteBatch_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_WriteScreenshot_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; void *pubRGB; uint32_t cubRGB; @@ -8959,7 +8959,7 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_WriteScreenshot_p struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_AddScreenshotToLibrary_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const char *pchFilename; const char *pchThumbnailFilename; @@ -8969,18 +8969,18 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_AddScreenshotToLi struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TriggerScreenshot_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_HookScreenshots_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bHook; }; struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hScreenshot; const char *pchLocation; @@ -8988,7 +8988,7 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation_param struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TagUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hScreenshot; CSteamID steamID; @@ -8996,7 +8996,7 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TagUser_params struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_WriteScreenshot_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; void *pubRGB; uint32_t cubRGB; @@ -9006,7 +9006,7 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_WriteScreenshot_p struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_AddScreenshotToLibrary_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const char *pchFilename; const char *pchThumbnailFilename; @@ -9016,18 +9016,18 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_AddScreenshotToLi struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TriggerScreenshot_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_HookScreenshots_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bHook; }; struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLocation_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hScreenshot; const char *pchLocation; @@ -9035,7 +9035,7 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLocation_param struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hScreenshot; CSteamID steamID; @@ -9043,7 +9043,7 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser_params struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagPublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hScreenshot; uint64_t unPublishedFileID; @@ -9051,7 +9051,7 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagPublishedFile_ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_WriteScreenshot_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; void *pubRGB; uint32_t cubRGB; @@ -9061,7 +9061,7 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_WriteScreenshot_p struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddScreenshotToLibrary_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const char *pchFilename; const char *pchThumbnailFilename; @@ -9071,18 +9071,18 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddScreenshotToLi struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TriggerScreenshot_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_HookScreenshots_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bHook; }; struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLocation_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hScreenshot; const char *pchLocation; @@ -9090,7 +9090,7 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLocation_param struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hScreenshot; CSteamID steamID; @@ -9098,7 +9098,7 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUser_params struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPublishedFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hScreenshot; uint64_t unPublishedFileID; @@ -9106,13 +9106,13 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPublishedFile_ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_IsScreenshotsHooked_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddVRScreenshotToLibrary_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t eType; const char *pchFilename; @@ -9121,20 +9121,20 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddVRScreenshotTo struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_SetTimelineStateDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchDescription; float flTimeDelta; }; struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_ClearTimelineStateDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; float flTimeDelta; }; struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_AddTimelineEvent_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchIcon; const char *pchTitle; const char *pchDescription; @@ -9146,32 +9146,32 @@ struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_AddTimelineEvent_params struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_SetTimelineGameMode_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t eMode; }; struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetTimelineTooltip_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchDescription; float flTimeDelta; }; struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_ClearTimelineTooltip_params { - struct u_iface *u_iface; + struct u_iface u_iface; float flTimeDelta; }; struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetTimelineGameMode_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t eMode; }; struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddInstantaneousTimelineEvent_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchTitle; const char *pchDescription; @@ -9183,7 +9183,7 @@ struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddInstantaneousTimelineEvent struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddRangeTimelineEvent_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchTitle; const char *pchDescription; @@ -9196,7 +9196,7 @@ struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddRangeTimelineEvent_params struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_StartRangeTimelineEvent_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchTitle; const char *pchDescription; @@ -9208,7 +9208,7 @@ struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_StartRangeTimelineEvent_param struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_UpdateRangeTimelineEvent_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t ulEvent; const char *pchTitle; const char *pchDescription; @@ -9219,50 +9219,50 @@ struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_UpdateRangeTimelineEvent_para struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_EndRangeTimelineEvent_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t ulEvent; float flEndOffsetSeconds; }; struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_RemoveTimelineEvent_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t ulEvent; }; struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_DoesEventRecordingExist_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t ulEvent; }; struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_StartGamePhase_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_EndGamePhase_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetGamePhaseID_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchPhaseID; }; struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_DoesGamePhaseRecordingExist_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchPhaseID; }; struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddGamePhaseTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchTagName; const char *pchTagIcon; const char *pchTagGroup; @@ -9271,7 +9271,7 @@ struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddGamePhaseTag_params struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetGamePhaseAttribute_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchAttributeGroup; const char *pchAttributeValue; uint32_t unPriority; @@ -9279,19 +9279,19 @@ struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetGamePhaseAttribute_params struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_OpenOverlayToGamePhase_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchPhaseID; }; struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_OpenOverlayToTimelineEvent_params { - struct u_iface *u_iface; + struct u_iface u_iface; const uint64_t ulEvent; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryUserUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -9304,7 +9304,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryAllUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -9315,14 +9315,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SendQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -9331,14 +9331,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_ReleaseQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -9346,7 +9346,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -9354,7 +9354,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -9362,7 +9362,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -9370,7 +9370,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -9378,7 +9378,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -9386,7 +9386,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -9394,7 +9394,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDays_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -9402,14 +9402,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_RequestUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryUserUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -9422,7 +9422,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryAllUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -9433,14 +9433,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SendQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -9449,14 +9449,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_ReleaseQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -9464,7 +9464,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -9472,7 +9472,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -9480,7 +9480,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -9488,7 +9488,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -9496,7 +9496,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -9504,7 +9504,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -9512,7 +9512,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -9520,7 +9520,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetRankedByTrendDays_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -9528,7 +9528,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_RequestUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -9536,7 +9536,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -9544,7 +9544,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_StartItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -9552,7 +9552,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -9560,7 +9560,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -9568,7 +9568,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -9576,7 +9576,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -9584,7 +9584,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -9592,7 +9592,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -9600,7 +9600,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubmitItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -9608,7 +9608,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -9617,27 +9617,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_UnsubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetNumSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -9645,7 +9645,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -9655,7 +9655,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t *pbNeedsUpdate; @@ -9666,7 +9666,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryUserUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -9679,7 +9679,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryAllUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -9690,14 +9690,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SendQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -9706,14 +9706,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -9721,7 +9721,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -9729,7 +9729,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -9737,7 +9737,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -9745,7 +9745,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -9753,7 +9753,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -9761,7 +9761,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -9769,7 +9769,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -9777,7 +9777,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -9785,7 +9785,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_RequestUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -9793,7 +9793,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -9801,7 +9801,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_StartItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -9809,7 +9809,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -9817,7 +9817,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -9825,7 +9825,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -9833,7 +9833,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -9841,7 +9841,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -9849,7 +9849,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -9857,7 +9857,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubmitItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -9865,7 +9865,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -9874,27 +9874,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_UnsubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetNumSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -9902,7 +9902,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -9913,7 +9913,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t *pbNeedsUpdate; @@ -9924,7 +9924,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryUserUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -9937,7 +9937,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryAllUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -9948,14 +9948,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SendQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -9964,14 +9964,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_ReleaseQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -9979,7 +9979,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -9987,7 +9987,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -9995,7 +9995,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -10003,7 +10003,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -10011,7 +10011,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -10019,7 +10019,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -10027,7 +10027,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -10035,7 +10035,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetRankedByTrendDays_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -10043,7 +10043,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_RequestUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -10051,7 +10051,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -10059,7 +10059,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_StartItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -10067,7 +10067,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -10075,7 +10075,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -10083,7 +10083,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -10091,7 +10091,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -10099,7 +10099,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -10107,7 +10107,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -10115,7 +10115,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubmitItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -10123,7 +10123,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemUpdateProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -10132,27 +10132,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_UnsubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetNumSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -10160,14 +10160,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -10178,7 +10178,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -10187,7 +10187,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_DownloadItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -10195,7 +10195,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUserUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -10208,7 +10208,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryAllUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -10219,7 +10219,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUGCDetailsRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -10227,14 +10227,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUGCDetailsRequest_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SendQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -10243,7 +10243,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -10253,7 +10253,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -10263,7 +10263,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -10273,7 +10273,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatistic_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -10283,7 +10283,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatistic_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCNumAdditionalPreviews_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -10291,7 +10291,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditionalPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -10303,14 +10303,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditionalPreview_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_ReleaseQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -10318,7 +10318,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -10326,7 +10326,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -10334,7 +10334,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnMetadata; @@ -10342,7 +10342,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnChildren; @@ -10350,7 +10350,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditionalPreviews_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnAdditionalPreviews; @@ -10358,7 +10358,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditionalPreviews_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -10366,7 +10366,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -10374,7 +10374,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -10382,7 +10382,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -10390,7 +10390,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -10398,7 +10398,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetRankedByTrendDays_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -10406,7 +10406,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_RequestUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -10414,7 +10414,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -10422,7 +10422,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_StartItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -10430,7 +10430,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -10438,7 +10438,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -10446,7 +10446,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchMetaData; @@ -10454,7 +10454,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -10462,7 +10462,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -10470,7 +10470,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -10478,7 +10478,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -10486,7 +10486,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubmitItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -10494,7 +10494,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemUpdateProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -10503,7 +10503,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddItemToFavorites_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -10511,7 +10511,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddItemToFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_RemoveItemFromFavorites_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -10519,27 +10519,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_RemoveItemFromFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_UnsubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetNumSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -10547,14 +10547,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -10565,7 +10565,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -10574,7 +10574,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_DownloadItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -10582,7 +10582,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUserUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -10595,7 +10595,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryAllUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -10606,7 +10606,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUGCDetailsRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -10614,14 +10614,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUGCDetailsRequest_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SendQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -10630,7 +10630,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -10640,7 +10640,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -10650,7 +10650,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -10660,7 +10660,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatistic_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -10670,7 +10670,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatistic_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCNumAdditionalPreviews_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -10678,7 +10678,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditionalPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -10690,14 +10690,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditionalPreview_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_ReleaseQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -10705,7 +10705,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -10713,7 +10713,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -10721,7 +10721,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnMetadata; @@ -10729,7 +10729,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnChildren; @@ -10737,7 +10737,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditionalPreviews_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnAdditionalPreviews; @@ -10745,7 +10745,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditionalPreviews_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -10753,7 +10753,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -10761,7 +10761,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -10769,7 +10769,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -10777,7 +10777,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -10785,7 +10785,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -10793,7 +10793,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetRankedByTrendDays_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -10801,7 +10801,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_RequestUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -10809,7 +10809,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -10817,7 +10817,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_StartItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -10825,7 +10825,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -10833,7 +10833,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -10841,7 +10841,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -10849,7 +10849,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchMetaData; @@ -10857,7 +10857,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -10865,7 +10865,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -10873,7 +10873,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -10881,7 +10881,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -10889,7 +10889,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubmitItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -10897,7 +10897,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemUpdateProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -10906,7 +10906,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetUserItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; int8_t bVoteUp; @@ -10914,14 +10914,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetUserItemVote_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetUserItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddItemToFavorites_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -10929,7 +10929,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddItemToFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_RemoveItemFromFavorites_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -10937,27 +10937,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_RemoveItemFromFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_UnsubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetNumSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -10965,14 +10965,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -10983,7 +10983,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -10992,7 +10992,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_DownloadItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -11000,7 +11000,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUserUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -11013,7 +11013,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryAllUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -11024,7 +11024,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUGCDetailsRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -11032,14 +11032,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUGCDetailsRequest_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SendQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11048,7 +11048,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11058,7 +11058,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11068,7 +11068,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11078,7 +11078,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatistic_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11088,7 +11088,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatistic_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumAdditionalPreviews_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -11096,7 +11096,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAdditionalPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11108,7 +11108,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAdditionalPreview_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -11116,7 +11116,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11129,14 +11129,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_ReleaseQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -11144,7 +11144,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -11152,7 +11152,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnKeyValueTags; @@ -11160,7 +11160,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -11168,7 +11168,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnMetadata; @@ -11176,7 +11176,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnChildren; @@ -11184,7 +11184,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditionalPreviews_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnAdditionalPreviews; @@ -11192,7 +11192,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditionalPreviews_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -11200,7 +11200,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -11208,7 +11208,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -11216,7 +11216,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -11224,7 +11224,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -11232,7 +11232,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -11240,7 +11240,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -11248,7 +11248,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pKey; @@ -11257,7 +11257,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RequestUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -11265,7 +11265,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -11273,7 +11273,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_StartItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -11281,7 +11281,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -11289,7 +11289,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -11297,7 +11297,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -11305,7 +11305,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchMetaData; @@ -11313,7 +11313,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -11321,7 +11321,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -11329,7 +11329,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -11337,7 +11337,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -11345,7 +11345,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -11353,7 +11353,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -11362,7 +11362,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubmitItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -11370,7 +11370,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemUpdateProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -11379,7 +11379,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetUserItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; int8_t bVoteUp; @@ -11387,14 +11387,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetUserItemVote_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetUserItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemToFavorites_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -11402,7 +11402,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemToFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemFromFavorites_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -11410,27 +11410,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemFromFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_UnsubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetNumSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -11438,14 +11438,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -11456,7 +11456,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -11465,7 +11465,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -11473,7 +11473,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; @@ -11481,13 +11481,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SuspendDownloads_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUserUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -11500,7 +11500,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryAllUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -11511,7 +11511,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUGCDetailsRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -11519,14 +11519,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUGCDetailsRequest_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SendQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11535,7 +11535,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11545,7 +11545,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11555,7 +11555,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11565,7 +11565,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatistic_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11575,7 +11575,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatistic_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumAdditionalPreviews_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -11583,7 +11583,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAdditionalPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11597,7 +11597,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAdditionalPreview_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -11605,7 +11605,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11618,14 +11618,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_ReleaseQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -11633,7 +11633,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -11641,7 +11641,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnKeyValueTags; @@ -11649,7 +11649,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -11657,7 +11657,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnMetadata; @@ -11665,7 +11665,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnChildren; @@ -11673,7 +11673,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditionalPreviews_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnAdditionalPreviews; @@ -11681,7 +11681,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditionalPreviews_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -11689,7 +11689,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -11697,7 +11697,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -11705,7 +11705,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -11713,7 +11713,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -11721,7 +11721,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -11729,7 +11729,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -11737,7 +11737,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pKey; @@ -11746,7 +11746,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RequestUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -11754,7 +11754,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -11762,7 +11762,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_StartItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -11770,7 +11770,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -11778,7 +11778,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -11786,7 +11786,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -11794,7 +11794,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchMetaData; @@ -11802,7 +11802,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -11810,7 +11810,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -11818,7 +11818,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -11826,7 +11826,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -11834,7 +11834,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -11842,7 +11842,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -11851,7 +11851,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -11860,7 +11860,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszVideoID; @@ -11868,7 +11868,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11877,7 +11877,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11886,7 +11886,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11894,7 +11894,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubmitItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -11902,7 +11902,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemUpdateProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -11911,7 +11911,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetUserItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; int8_t bVoteUp; @@ -11919,14 +11919,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetUserItemVote_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetUserItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemToFavorites_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -11934,7 +11934,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemToFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemFromFavorites_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -11942,27 +11942,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemFromFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UnsubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetNumSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -11970,14 +11970,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -11988,7 +11988,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -11997,7 +11997,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -12005,7 +12005,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; @@ -12013,13 +12013,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SuspendDownloads_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUserUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -12032,7 +12032,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryAllUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -12043,7 +12043,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUGCDetailsRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -12051,14 +12051,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUGCDetailsRequest_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SendQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12067,7 +12067,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12077,7 +12077,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12087,7 +12087,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12097,7 +12097,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatistic_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12107,7 +12107,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatistic_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumAdditionalPreviews_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -12115,7 +12115,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAdditionalPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12129,7 +12129,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAdditionalPreview_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -12137,7 +12137,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12150,14 +12150,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_ReleaseQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -12165,7 +12165,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -12173,7 +12173,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnOnlyIDs; @@ -12181,7 +12181,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnKeyValueTags; @@ -12189,7 +12189,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -12197,7 +12197,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnMetadata; @@ -12205,7 +12205,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnChildren; @@ -12213,7 +12213,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditionalPreviews_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnAdditionalPreviews; @@ -12221,7 +12221,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditionalPreviews_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -12229,7 +12229,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -12237,7 +12237,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -12245,7 +12245,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -12253,7 +12253,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -12261,7 +12261,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -12269,7 +12269,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -12277,7 +12277,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pKey; @@ -12286,7 +12286,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RequestUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -12294,7 +12294,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -12302,7 +12302,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -12310,7 +12310,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -12318,7 +12318,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -12326,7 +12326,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -12334,7 +12334,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchMetaData; @@ -12342,7 +12342,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -12350,7 +12350,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -12358,7 +12358,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -12366,7 +12366,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -12374,7 +12374,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -12382,7 +12382,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -12391,7 +12391,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -12400,7 +12400,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszVideoID; @@ -12408,7 +12408,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12417,7 +12417,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12426,7 +12426,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12434,7 +12434,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubmitItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -12442,7 +12442,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemUpdateProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -12451,7 +12451,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetUserItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; int8_t bVoteUp; @@ -12459,14 +12459,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetUserItemVote_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetUserItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemToFavorites_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -12474,7 +12474,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemToFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemFromFavorites_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -12482,27 +12482,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemFromFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UnsubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetNumSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -12510,14 +12510,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -12528,7 +12528,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -12537,7 +12537,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -12545,7 +12545,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; @@ -12553,13 +12553,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SuspendDownloads_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartPlaytimeTracking_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -12567,7 +12567,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTracking_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -12575,13 +12575,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTrackingForAllItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUserUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -12594,7 +12594,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryAllUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -12605,7 +12605,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUGCDetailsRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -12613,14 +12613,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUGCDetailsRequest_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SendQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12629,7 +12629,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12639,7 +12639,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12649,7 +12649,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12659,7 +12659,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatistic_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12669,7 +12669,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatistic_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumAdditionalPreviews_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -12677,7 +12677,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAdditionalPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12691,7 +12691,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAdditionalPreview_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -12699,7 +12699,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12712,14 +12712,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_ReleaseQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -12727,7 +12727,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -12735,7 +12735,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnOnlyIDs; @@ -12743,7 +12743,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnKeyValueTags; @@ -12751,7 +12751,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -12759,7 +12759,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnMetadata; @@ -12767,7 +12767,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnChildren; @@ -12775,7 +12775,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditionalPreviews_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnAdditionalPreviews; @@ -12783,7 +12783,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditionalPreviews_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -12791,7 +12791,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -12799,7 +12799,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStats_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -12807,7 +12807,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -12815,7 +12815,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -12823,7 +12823,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -12831,7 +12831,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -12839,7 +12839,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -12847,7 +12847,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pKey; @@ -12856,7 +12856,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RequestUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -12864,7 +12864,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -12872,7 +12872,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -12880,7 +12880,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -12888,7 +12888,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -12896,7 +12896,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -12904,7 +12904,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchMetaData; @@ -12912,7 +12912,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -12920,7 +12920,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -12928,7 +12928,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -12936,7 +12936,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -12944,7 +12944,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -12952,7 +12952,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -12961,7 +12961,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -12970,7 +12970,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszVideoID; @@ -12978,7 +12978,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12987,7 +12987,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12996,7 +12996,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13004,7 +13004,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubmitItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -13012,7 +13012,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemUpdateProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -13021,7 +13021,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetUserItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; int8_t bVoteUp; @@ -13029,14 +13029,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetUserItemVote_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetUserItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemToFavorites_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -13044,7 +13044,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemToFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemFromFavorites_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -13052,27 +13052,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemFromFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UnsubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetNumSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -13080,14 +13080,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -13098,7 +13098,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -13107,7 +13107,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -13115,7 +13115,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; @@ -13123,13 +13123,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SuspendDownloads_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartPlaytimeTracking_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -13137,7 +13137,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTracking_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -13145,13 +13145,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTrackingForAllItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -13159,7 +13159,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -13167,7 +13167,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddAppDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -13175,7 +13175,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveAppDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -13183,21 +13183,21 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetAppDependencies_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_DeleteItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUserUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -13210,7 +13210,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -13221,7 +13221,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -13232,7 +13232,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUGCDetailsRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -13240,14 +13240,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUGCDetailsRequest_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SendQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13256,7 +13256,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13266,7 +13266,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13276,7 +13276,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13286,7 +13286,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatistic_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13296,7 +13296,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatistic_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumAdditionalPreviews_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -13304,7 +13304,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAdditionalPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13318,7 +13318,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAdditionalPreview_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -13326,7 +13326,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13339,14 +13339,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_ReleaseQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -13354,7 +13354,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -13362,7 +13362,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnOnlyIDs; @@ -13370,7 +13370,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnKeyValueTags; @@ -13378,7 +13378,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -13386,7 +13386,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnMetadata; @@ -13394,7 +13394,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnChildren; @@ -13402,7 +13402,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditionalPreviews_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnAdditionalPreviews; @@ -13410,7 +13410,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditionalPreviews_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -13418,7 +13418,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -13426,7 +13426,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStats_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -13434,7 +13434,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -13442,7 +13442,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -13450,7 +13450,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -13458,7 +13458,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -13466,7 +13466,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -13474,7 +13474,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pKey; @@ -13483,7 +13483,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RequestUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -13491,7 +13491,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -13499,7 +13499,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -13507,7 +13507,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -13515,7 +13515,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -13523,7 +13523,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -13531,7 +13531,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchMetaData; @@ -13539,7 +13539,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -13547,7 +13547,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -13555,7 +13555,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -13563,7 +13563,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -13571,7 +13571,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUpload_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bAllowLegacyUpload; @@ -13579,7 +13579,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUpload_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -13587,7 +13587,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -13596,7 +13596,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -13605,7 +13605,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszVideoID; @@ -13613,7 +13613,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13622,7 +13622,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13631,7 +13631,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13639,7 +13639,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubmitItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -13647,7 +13647,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemUpdateProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -13656,7 +13656,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetUserItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; int8_t bVoteUp; @@ -13664,14 +13664,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetUserItemVote_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetUserItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemToFavorites_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -13679,7 +13679,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemToFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemFromFavorites_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -13687,27 +13687,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemFromFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UnsubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetNumSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -13715,14 +13715,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -13733,7 +13733,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -13742,7 +13742,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -13750,7 +13750,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; @@ -13758,13 +13758,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SuspendDownloads_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartPlaytimeTracking_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -13772,7 +13772,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTracking_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -13780,13 +13780,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTrackingForAllItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -13794,7 +13794,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -13802,7 +13802,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddAppDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -13810,7 +13810,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveAppDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -13818,21 +13818,21 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetAppDependencies_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_DeleteItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUserUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -13845,7 +13845,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -13856,7 +13856,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -13867,7 +13867,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUGCDetailsRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -13875,14 +13875,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUGCDetailsRequest_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SendQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13891,7 +13891,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13901,7 +13901,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13911,7 +13911,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13921,7 +13921,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatistic_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13931,7 +13931,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatistic_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumAdditionalPreviews_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -13939,7 +13939,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAdditionalPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13953,7 +13953,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAdditionalPreview_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -13961,7 +13961,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13974,7 +13974,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13985,14 +13985,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_ReleaseQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -14000,7 +14000,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -14008,7 +14008,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnOnlyIDs; @@ -14016,7 +14016,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnKeyValueTags; @@ -14024,7 +14024,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -14032,7 +14032,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnMetadata; @@ -14040,7 +14040,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnChildren; @@ -14048,7 +14048,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditionalPreviews_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnAdditionalPreviews; @@ -14056,7 +14056,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditionalPreviews_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -14064,7 +14064,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -14072,7 +14072,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStats_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -14080,7 +14080,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -14088,7 +14088,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -14096,7 +14096,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -14104,7 +14104,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -14112,7 +14112,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -14120,7 +14120,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pKey; @@ -14129,7 +14129,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RequestUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -14137,7 +14137,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -14145,7 +14145,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -14153,7 +14153,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -14161,7 +14161,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -14169,7 +14169,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -14177,7 +14177,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchMetaData; @@ -14185,7 +14185,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -14193,7 +14193,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -14201,7 +14201,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -14209,7 +14209,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -14217,7 +14217,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUpload_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bAllowLegacyUpload; @@ -14225,14 +14225,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUpload_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAllItemKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -14240,7 +14240,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -14249,7 +14249,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -14258,7 +14258,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszVideoID; @@ -14266,7 +14266,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -14275,7 +14275,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -14284,7 +14284,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -14292,7 +14292,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubmitItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -14300,7 +14300,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemUpdateProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -14309,7 +14309,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetUserItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; int8_t bVoteUp; @@ -14317,14 +14317,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetUserItemVote_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetUserItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemToFavorites_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -14332,7 +14332,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemToFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemFromFavorites_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -14340,27 +14340,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemFromFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UnsubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetNumSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -14368,14 +14368,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -14386,7 +14386,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -14395,7 +14395,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -14403,7 +14403,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; @@ -14411,13 +14411,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SuspendDownloads_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartPlaytimeTracking_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -14425,7 +14425,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTracking_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -14433,13 +14433,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTrackingForAllItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -14447,7 +14447,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -14455,7 +14455,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddAppDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -14463,7 +14463,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAppDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -14471,21 +14471,21 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetAppDependencies_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_DeleteItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUserUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -14498,7 +14498,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -14509,7 +14509,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -14520,7 +14520,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUGCDetailsRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -14528,14 +14528,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUGCDetailsRequest_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SendQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -14544,7 +14544,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -14554,7 +14554,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -14564,7 +14564,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -14574,7 +14574,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatistic_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -14584,7 +14584,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatistic_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumAdditionalPreviews_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -14592,7 +14592,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAdditionalPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -14606,7 +14606,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAdditionalPreview_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -14614,7 +14614,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -14627,7 +14627,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -14638,14 +14638,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_ReleaseQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -14653,7 +14653,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const w_SteamParamStringArray_t *pTagGroups; @@ -14661,7 +14661,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -14669,7 +14669,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnOnlyIDs; @@ -14677,7 +14677,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnKeyValueTags; @@ -14685,7 +14685,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -14693,7 +14693,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnMetadata; @@ -14701,7 +14701,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnChildren; @@ -14709,7 +14709,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditionalPreviews_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnAdditionalPreviews; @@ -14717,7 +14717,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditionalPreviews_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -14725,7 +14725,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -14733,7 +14733,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStats_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -14741,7 +14741,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -14749,7 +14749,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -14757,7 +14757,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -14765,7 +14765,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -14773,7 +14773,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -14781,7 +14781,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pKey; @@ -14790,7 +14790,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RequestUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -14798,7 +14798,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -14806,7 +14806,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -14814,7 +14814,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -14822,7 +14822,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -14830,7 +14830,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -14838,7 +14838,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchMetaData; @@ -14846,7 +14846,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -14854,7 +14854,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -14862,7 +14862,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -14870,7 +14870,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -14878,7 +14878,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUpload_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bAllowLegacyUpload; @@ -14886,14 +14886,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUpload_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAllItemKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -14901,7 +14901,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -14910,7 +14910,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -14919,7 +14919,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszVideoID; @@ -14927,7 +14927,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -14936,7 +14936,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -14945,7 +14945,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -14953,7 +14953,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubmitItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -14961,7 +14961,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemUpdateProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -14970,7 +14970,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetUserItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; int8_t bVoteUp; @@ -14978,14 +14978,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetUserItemVote_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetUserItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemToFavorites_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -14993,7 +14993,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemToFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemFromFavorites_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -15001,27 +15001,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemFromFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UnsubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetNumSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -15029,14 +15029,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -15047,7 +15047,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -15056,7 +15056,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -15064,7 +15064,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; @@ -15072,13 +15072,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SuspendDownloads_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartPlaytimeTracking_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -15086,7 +15086,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTracking_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -15094,13 +15094,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTrackingForAllItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -15108,7 +15108,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -15116,7 +15116,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddAppDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -15124,7 +15124,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAppDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -15132,21 +15132,21 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetAppDependencies_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_DeleteItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUserUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -15159,7 +15159,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -15170,7 +15170,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -15181,7 +15181,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUGCDetailsRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -15189,14 +15189,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUGCDetailsRequest_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SendQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15205,7 +15205,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -15213,7 +15213,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15224,7 +15224,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplayName_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15235,7 +15235,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplayName_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15245,7 +15245,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15255,7 +15255,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15265,7 +15265,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatistic_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15275,7 +15275,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatistic_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumAdditionalPreviews_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -15283,7 +15283,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAdditionalPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15297,7 +15297,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAdditionalPreview_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -15305,7 +15305,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15318,7 +15318,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15329,14 +15329,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ReleaseQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -15344,7 +15344,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const w_SteamParamStringArray_t *pTagGroups; @@ -15352,7 +15352,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -15360,7 +15360,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnOnlyIDs; @@ -15368,7 +15368,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnKeyValueTags; @@ -15376,7 +15376,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -15384,7 +15384,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnMetadata; @@ -15392,7 +15392,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnChildren; @@ -15400,7 +15400,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditionalPreviews_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnAdditionalPreviews; @@ -15408,7 +15408,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditionalPreviews_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -15416,7 +15416,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -15424,7 +15424,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStats_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -15432,7 +15432,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -15440,7 +15440,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -15448,7 +15448,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -15456,7 +15456,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -15464,7 +15464,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -15472,7 +15472,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pKey; @@ -15481,7 +15481,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RequestUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -15489,7 +15489,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -15497,7 +15497,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -15505,7 +15505,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -15513,7 +15513,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -15521,7 +15521,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -15529,7 +15529,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchMetaData; @@ -15537,7 +15537,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -15545,7 +15545,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -15553,7 +15553,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -15561,7 +15561,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -15569,7 +15569,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUpload_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bAllowLegacyUpload; @@ -15577,14 +15577,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUpload_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAllItemKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -15592,7 +15592,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -15601,7 +15601,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -15610,7 +15610,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszVideoID; @@ -15618,7 +15618,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15627,7 +15627,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15636,7 +15636,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15644,7 +15644,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubmitItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -15652,7 +15652,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemUpdateProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -15661,7 +15661,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetUserItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; int8_t bVoteUp; @@ -15669,14 +15669,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetUserItemVote_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetUserItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemToFavorites_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -15684,7 +15684,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemToFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemFromFavorites_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -15692,27 +15692,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemFromFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UnsubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetNumSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -15720,14 +15720,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -15738,7 +15738,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -15747,7 +15747,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -15755,7 +15755,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; @@ -15763,13 +15763,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SuspendDownloads_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartPlaytimeTracking_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -15777,7 +15777,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTracking_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -15785,13 +15785,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTrackingForAllItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -15799,7 +15799,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -15807,7 +15807,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddAppDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -15815,7 +15815,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAppDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -15823,33 +15823,33 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetAppDependencies_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DeleteItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ShowWorkshopEULA_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetWorkshopEULAStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUserUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -15862,7 +15862,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -15873,7 +15873,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -15884,7 +15884,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUGCDetailsRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -15892,14 +15892,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUGCDetailsRequest_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SendQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15908,7 +15908,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -15916,7 +15916,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15927,7 +15927,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplayName_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15938,7 +15938,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplayName_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15948,7 +15948,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15958,7 +15958,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15968,7 +15968,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15978,7 +15978,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumAdditionalPreviews_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -15986,7 +15986,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16000,7 +16000,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -16008,7 +16008,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16021,7 +16021,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16032,14 +16032,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ReleaseQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -16047,7 +16047,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const w_SteamParamStringArray_t *pTagGroups; @@ -16055,7 +16055,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -16063,7 +16063,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnOnlyIDs; @@ -16071,7 +16071,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnKeyValueTags; @@ -16079,7 +16079,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -16087,7 +16087,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnMetadata; @@ -16095,7 +16095,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnChildren; @@ -16103,7 +16103,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditionalPreviews_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnAdditionalPreviews; @@ -16111,7 +16111,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditionalPreviews_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -16119,7 +16119,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -16127,7 +16127,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStats_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -16135,7 +16135,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -16143,7 +16143,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -16151,7 +16151,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -16159,7 +16159,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -16167,7 +16167,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -16175,7 +16175,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRange_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t rtStart; @@ -16184,7 +16184,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRange_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRange_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t rtStart; @@ -16193,7 +16193,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRange_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pKey; @@ -16202,7 +16202,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RequestUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -16210,7 +16210,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -16218,7 +16218,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -16226,7 +16226,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -16234,7 +16234,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -16242,7 +16242,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -16250,7 +16250,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchMetaData; @@ -16258,7 +16258,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -16266,7 +16266,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -16274,7 +16274,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -16282,7 +16282,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -16290,7 +16290,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUpload_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bAllowLegacyUpload; @@ -16298,14 +16298,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUpload_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAllItemKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -16313,7 +16313,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -16322,7 +16322,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -16331,7 +16331,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszVideoID; @@ -16339,7 +16339,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16348,7 +16348,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16357,7 +16357,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16365,7 +16365,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubmitItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -16373,7 +16373,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemUpdateProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -16382,7 +16382,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetUserItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; int8_t bVoteUp; @@ -16390,14 +16390,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetUserItemVote_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetUserItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemToFavorites_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -16405,7 +16405,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemToFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemFromFavorites_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -16413,27 +16413,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemFromFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UnsubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetNumSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -16441,14 +16441,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -16459,7 +16459,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -16468,7 +16468,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -16476,7 +16476,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; @@ -16484,13 +16484,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SuspendDownloads_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartPlaytimeTracking_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -16498,7 +16498,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTracking_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -16506,13 +16506,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTrackingForAllItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -16520,7 +16520,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -16528,7 +16528,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddAppDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -16536,7 +16536,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAppDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -16544,33 +16544,33 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetAppDependencies_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DeleteItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ShowWorkshopEULA_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetWorkshopEULAStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUserUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -16583,7 +16583,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -16594,7 +16594,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -16605,7 +16605,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUGCDetailsRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -16613,14 +16613,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUGCDetailsRequest_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SendQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16629,7 +16629,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -16637,7 +16637,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16648,7 +16648,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplayName_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16659,7 +16659,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplayName_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16669,7 +16669,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16679,7 +16679,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16689,7 +16689,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatistic_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16699,7 +16699,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatistic_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumAdditionalPreviews_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -16707,7 +16707,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAdditionalPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16721,7 +16721,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAdditionalPreview_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -16729,7 +16729,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16742,7 +16742,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16753,7 +16753,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCContentDescriptors_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -16763,14 +16763,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCContentDescriptors_par struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ReleaseQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -16778,7 +16778,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const w_SteamParamStringArray_t *pTagGroups; @@ -16786,7 +16786,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -16794,7 +16794,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnOnlyIDs; @@ -16802,7 +16802,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnKeyValueTags; @@ -16810,7 +16810,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -16818,7 +16818,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnMetadata; @@ -16826,7 +16826,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnChildren; @@ -16834,7 +16834,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditionalPreviews_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnAdditionalPreviews; @@ -16842,7 +16842,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditionalPreviews_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -16850,7 +16850,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -16858,7 +16858,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStats_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -16866,7 +16866,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -16874,7 +16874,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -16882,7 +16882,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -16890,7 +16890,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -16898,7 +16898,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -16906,7 +16906,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRange_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t rtStart; @@ -16915,7 +16915,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRange_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRange_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t rtStart; @@ -16924,7 +16924,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRange_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pKey; @@ -16933,7 +16933,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RequestUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -16941,7 +16941,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -16949,7 +16949,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -16957,7 +16957,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -16965,7 +16965,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -16973,7 +16973,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -16981,7 +16981,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchMetaData; @@ -16989,7 +16989,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -16997,7 +16997,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -17005,7 +17005,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -17013,7 +17013,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -17021,7 +17021,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUpload_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bAllowLegacyUpload; @@ -17029,14 +17029,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUpload_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAllItemKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -17044,7 +17044,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -17053,7 +17053,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -17062,7 +17062,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszVideoID; @@ -17070,7 +17070,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17079,7 +17079,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17088,7 +17088,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17096,7 +17096,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t descid; @@ -17104,7 +17104,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveContentDescriptor_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t descid; @@ -17112,7 +17112,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveContentDescriptor_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubmitItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -17120,7 +17120,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemUpdateProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -17129,7 +17129,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetUserItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; int8_t bVoteUp; @@ -17137,14 +17137,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetUserItemVote_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetUserItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemToFavorites_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -17152,7 +17152,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemToFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemFromFavorites_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -17160,27 +17160,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemFromFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UnsubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetNumSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -17188,14 +17188,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -17206,7 +17206,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -17215,7 +17215,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -17223,7 +17223,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; @@ -17231,13 +17231,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SuspendDownloads_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartPlaytimeTracking_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -17245,7 +17245,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTracking_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -17253,13 +17253,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTrackingForAllItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -17267,7 +17267,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -17275,7 +17275,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddAppDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -17283,7 +17283,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAppDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -17291,33 +17291,33 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetAppDependencies_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DeleteItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ShowWorkshopEULA_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetWorkshopEULAStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUserUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -17330,7 +17330,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -17341,7 +17341,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -17352,7 +17352,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUGCDetailsRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -17360,14 +17360,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUGCDetailsRequest_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SendQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17376,7 +17376,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -17384,7 +17384,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17395,7 +17395,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplayName_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17406,7 +17406,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplayName_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17416,7 +17416,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17426,7 +17426,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17436,7 +17436,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatistic_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17446,7 +17446,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatistic_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumAdditionalPreviews_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -17454,7 +17454,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAdditionalPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17468,7 +17468,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAdditionalPreview_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -17476,7 +17476,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17489,7 +17489,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17500,7 +17500,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCContentDescriptors_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -17510,14 +17510,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCContentDescriptors_par struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ReleaseQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -17525,7 +17525,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const w_SteamParamStringArray_t *pTagGroups; @@ -17533,7 +17533,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -17541,7 +17541,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnOnlyIDs; @@ -17549,7 +17549,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnKeyValueTags; @@ -17557,7 +17557,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -17565,7 +17565,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnMetadata; @@ -17573,7 +17573,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnChildren; @@ -17581,7 +17581,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditionalPreviews_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnAdditionalPreviews; @@ -17589,7 +17589,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditionalPreviews_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -17597,7 +17597,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -17605,7 +17605,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStats_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -17613,7 +17613,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -17621,7 +17621,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -17629,7 +17629,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -17637,7 +17637,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -17645,7 +17645,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -17653,7 +17653,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRange_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t rtStart; @@ -17662,7 +17662,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRange_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRange_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t rtStart; @@ -17671,7 +17671,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRange_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pKey; @@ -17680,7 +17680,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RequestUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -17688,7 +17688,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -17696,7 +17696,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -17704,7 +17704,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -17712,7 +17712,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -17720,7 +17720,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -17728,7 +17728,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchMetaData; @@ -17736,7 +17736,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -17744,7 +17744,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -17753,7 +17753,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -17761,7 +17761,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -17769,7 +17769,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUpload_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bAllowLegacyUpload; @@ -17777,14 +17777,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUpload_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAllItemKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -17792,7 +17792,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -17801,7 +17801,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -17810,7 +17810,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszVideoID; @@ -17818,7 +17818,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17827,7 +17827,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17836,7 +17836,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17844,7 +17844,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t descid; @@ -17852,7 +17852,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveContentDescriptor_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t descid; @@ -17860,7 +17860,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveContentDescriptor_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubmitItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -17868,7 +17868,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemUpdateProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -17877,7 +17877,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetUserItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; int8_t bVoteUp; @@ -17885,14 +17885,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetUserItemVote_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemToFavorites_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -17900,7 +17900,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemToFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemFromFavorites_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -17908,27 +17908,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemFromFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UnsubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetNumSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -17936,14 +17936,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -17954,7 +17954,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -17963,7 +17963,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -17971,7 +17971,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; @@ -17979,13 +17979,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SuspendDownloads_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartPlaytimeTracking_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -17993,7 +17993,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTracking_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -18001,13 +18001,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTrackingForAllItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -18015,7 +18015,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -18023,7 +18023,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddAppDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -18031,7 +18031,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAppDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -18039,33 +18039,33 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetAppDependencies_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DeleteItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ShowWorkshopEULA_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetWorkshopEULAStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserContentDescriptorPreferences_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t *pvecDescriptors; uint32_t cMaxEntries; @@ -18073,7 +18073,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserContentDescriptorPreferenc struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryUserUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -18086,7 +18086,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryAllUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -18097,7 +18097,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryAllUGCRequest_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -18108,7 +18108,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryAllUGCRequest_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryUGCDetailsRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -18116,14 +18116,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryUGCDetailsRequest_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SendQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18132,7 +18132,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -18140,7 +18140,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18151,7 +18151,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCTagDisplayName_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18162,7 +18162,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCTagDisplayName_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCPreviewURL_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18172,7 +18172,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18182,7 +18182,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCChildren_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18192,7 +18192,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCStatistic_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18202,7 +18202,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCStatistic_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumAdditionalPreviews_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -18210,7 +18210,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCAdditionalPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18224,7 +18224,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCAdditionalPreview_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -18232,7 +18232,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18245,7 +18245,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCKeyValueTag_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18256,7 +18256,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCKeyValueTag_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetNumSupportedGameVersions_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -18264,7 +18264,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetNumSupportedGameVersions_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetSupportedGameVersionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18276,7 +18276,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetSupportedGameVersionData_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCContentDescriptors_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -18286,14 +18286,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCContentDescriptors_par struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_ReleaseQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -18301,7 +18301,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredTagGroup_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const w_SteamParamStringArray_t *pTagGroups; @@ -18309,7 +18309,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredTagGroup_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddExcludedTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -18317,7 +18317,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnOnlyIDs_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnOnlyIDs; @@ -18325,7 +18325,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnOnlyIDs_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnKeyValueTags; @@ -18333,7 +18333,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnLongDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -18341,7 +18341,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnMetadata; @@ -18349,7 +18349,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnChildren_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnChildren; @@ -18357,7 +18357,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnAdditionalPreviews_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnAdditionalPreviews; @@ -18365,7 +18365,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnAdditionalPreviews_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnTotalOnly_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -18373,7 +18373,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnPlaytimeStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -18381,7 +18381,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnPlaytimeStats_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -18389,7 +18389,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAllowCachedResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -18397,7 +18397,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAdminQuery_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bAdminQuery; @@ -18405,7 +18405,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAdminQuery_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetCloudFileNameFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -18413,7 +18413,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetMatchAnyTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -18421,7 +18421,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetSearchText_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -18429,7 +18429,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetRankedByTrendDays_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -18437,7 +18437,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetTimeCreatedDateRange_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t rtStart; @@ -18446,7 +18446,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetTimeCreatedDateRange_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetTimeUpdatedDateRange_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t rtStart; @@ -18455,7 +18455,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetTimeUpdatedDateRange_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pKey; @@ -18464,7 +18464,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RequestUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -18472,7 +18472,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -18480,7 +18480,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StartItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -18488,7 +18488,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemTitle_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -18496,7 +18496,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -18504,7 +18504,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemUpdateLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -18512,7 +18512,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchMetaData; @@ -18520,7 +18520,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemVisibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -18528,7 +18528,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -18537,7 +18537,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemContent_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -18545,7 +18545,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -18553,7 +18553,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAllowLegacyUpload_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bAllowLegacyUpload; @@ -18561,14 +18561,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAllowLegacyUpload_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveAllItemKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -18576,7 +18576,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -18585,7 +18585,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemPreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -18594,7 +18594,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemPreviewVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszVideoID; @@ -18602,7 +18602,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_UpdateItemPreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18611,7 +18611,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_UpdateItemPreviewVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18620,7 +18620,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18628,7 +18628,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddContentDescriptor_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t descid; @@ -18636,7 +18636,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddContentDescriptor_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveContentDescriptor_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t descid; @@ -18644,7 +18644,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveContentDescriptor_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetRequiredGameVersions_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszGameBranchMin; @@ -18653,7 +18653,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetRequiredGameVersions_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SubmitItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -18661,7 +18661,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemUpdateProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -18670,7 +18670,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetUserItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; int8_t bVoteUp; @@ -18678,14 +18678,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetUserItemVote_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetUserItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemToFavorites_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -18693,7 +18693,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemToFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemFromFavorites_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -18701,27 +18701,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemFromFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_UnsubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetNumSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -18729,14 +18729,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemInstallInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -18747,7 +18747,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemDownloadInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -18756,7 +18756,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_DownloadItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -18764,7 +18764,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_BInitWorkshopForGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; @@ -18772,13 +18772,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SuspendDownloads_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StartPlaytimeTracking_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -18786,7 +18786,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StartPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StopPlaytimeTracking_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -18794,13 +18794,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StopPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StopPlaytimeTrackingForAllItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -18808,7 +18808,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -18816,7 +18816,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddAppDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -18824,7 +18824,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveAppDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -18832,33 +18832,33 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetAppDependencies_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_DeleteItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_ShowWorkshopEULA_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetWorkshopEULAStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetUserContentDescriptorPreferences_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t *pvecDescriptors; uint32_t cMaxEntries; @@ -18866,7 +18866,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetUserContentDescriptorPreferenc struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryUserUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -18879,7 +18879,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryAllUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -18890,7 +18890,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryAllUGCRequest_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -18901,7 +18901,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryAllUGCRequest_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryUGCDetailsRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -18909,14 +18909,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryUGCDetailsRequest_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SendQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18925,7 +18925,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -18933,7 +18933,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18944,7 +18944,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCTagDisplayName_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18955,7 +18955,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCTagDisplayName_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCPreviewURL_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18965,7 +18965,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18975,7 +18975,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCChildren_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18985,7 +18985,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCStatistic_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18995,7 +18995,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCStatistic_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumAdditionalPreviews_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -19003,7 +19003,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCAdditionalPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -19017,7 +19017,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCAdditionalPreview_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -19025,7 +19025,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -19038,7 +19038,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCKeyValueTag_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -19049,7 +19049,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCKeyValueTag_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetNumSupportedGameVersions_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -19057,7 +19057,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetNumSupportedGameVersions_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetSupportedGameVersionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -19069,7 +19069,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetSupportedGameVersionData_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCContentDescriptors_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -19079,14 +19079,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCContentDescriptors_par struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_ReleaseQueryUGCRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -19094,7 +19094,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredTagGroup_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const w_SteamParamStringArray_t *pTagGroups; @@ -19102,7 +19102,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredTagGroup_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddExcludedTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -19110,7 +19110,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnOnlyIDs_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnOnlyIDs; @@ -19118,7 +19118,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnOnlyIDs_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnKeyValueTags; @@ -19126,7 +19126,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnLongDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -19134,7 +19134,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnMetadata; @@ -19142,7 +19142,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnChildren_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnChildren; @@ -19150,7 +19150,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnAdditionalPreviews_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnAdditionalPreviews; @@ -19158,7 +19158,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnAdditionalPreviews_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnTotalOnly_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -19166,7 +19166,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnPlaytimeStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -19174,7 +19174,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnPlaytimeStats_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -19182,7 +19182,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAllowCachedResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -19190,7 +19190,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAdminQuery_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bAdminQuery; @@ -19198,7 +19198,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAdminQuery_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetCloudFileNameFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -19206,7 +19206,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetMatchAnyTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -19214,7 +19214,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetSearchText_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -19222,7 +19222,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetRankedByTrendDays_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -19230,7 +19230,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetTimeCreatedDateRange_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t rtStart; @@ -19239,7 +19239,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetTimeCreatedDateRange_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetTimeUpdatedDateRange_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t rtStart; @@ -19248,7 +19248,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetTimeUpdatedDateRange_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pKey; @@ -19257,7 +19257,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RequestUGCDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -19265,7 +19265,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -19273,7 +19273,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StartItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -19281,7 +19281,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemTitle_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -19289,7 +19289,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -19297,7 +19297,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemUpdateLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -19305,7 +19305,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemMetadata_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchMetaData; @@ -19313,7 +19313,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemVisibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -19321,7 +19321,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -19330,7 +19330,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemContent_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -19338,7 +19338,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -19346,7 +19346,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAllowLegacyUpload_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; int8_t bAllowLegacyUpload; @@ -19354,14 +19354,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAllowLegacyUpload_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveAllItemKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemKeyValueTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -19369,7 +19369,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemKeyValueTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -19378,7 +19378,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemPreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -19387,7 +19387,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemPreviewVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszVideoID; @@ -19395,7 +19395,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_UpdateItemPreviewFile_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -19404,7 +19404,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_UpdateItemPreviewVideo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -19413,7 +19413,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemPreview_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -19421,7 +19421,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddContentDescriptor_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t descid; @@ -19429,7 +19429,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddContentDescriptor_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveContentDescriptor_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; uint32_t descid; @@ -19437,7 +19437,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveContentDescriptor_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetRequiredGameVersions_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t handle; const char *pszGameBranchMin; @@ -19446,7 +19446,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetRequiredGameVersions_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SubmitItemUpdate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -19454,7 +19454,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemUpdateProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -19463,7 +19463,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetUserItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; int8_t bVoteUp; @@ -19471,14 +19471,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetUserItemVote_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetUserItemVote_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemToFavorites_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -19486,7 +19486,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemToFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemFromFavorites_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -19494,28 +19494,28 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemFromFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_UnsubscribeItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetNumSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int8_t bIncludeLocallyDisabled; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetSubscribedItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -19524,14 +19524,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemInstallInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -19542,7 +19542,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemDownloadInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -19551,7 +19551,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_DownloadItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -19559,7 +19559,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_BInitWorkshopForGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; @@ -19567,13 +19567,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SuspendDownloads_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StartPlaytimeTracking_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -19581,7 +19581,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StartPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StopPlaytimeTracking_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -19589,13 +19589,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StopPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StopPlaytimeTrackingForAllItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -19603,7 +19603,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -19611,7 +19611,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddAppDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -19619,7 +19619,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveAppDependency_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -19627,33 +19627,33 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetAppDependencies_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_DeleteItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_ShowWorkshopEULA_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetWorkshopEULAStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetUserContentDescriptorPreferences_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t *pvecDescriptors; uint32_t cMaxEntries; @@ -19661,7 +19661,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetUserContentDescriptorPreferenc struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemsDisabledLocally_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t *pvecPublishedFileIDs; uint32_t unNumPublishedFileIDs; @@ -19670,7 +19670,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemsDisabledLocally_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetSubscriptionsLoadOrder_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t *pvecPublishedFileIDs; uint32_t unNumPublishedFileIDs; @@ -19678,7 +19678,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetSubscriptionsLoadOrder_params struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendMethod_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchServiceMethod; const void *pRequestBuffer; @@ -19688,7 +19688,7 @@ struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendMetho struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hHandle; uint32_t *punResponseSize; @@ -19697,7 +19697,7 @@ struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethod struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hHandle; void *pResponseBuffer; @@ -19707,14 +19707,14 @@ struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethod struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_ReleaseMethod_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hHandle; }; struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotification_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchServiceNotification; const void *pNotificationBuffer; @@ -19723,14 +19723,14 @@ struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotif struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CGameID nGameID; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CGameID nGameID; uint32_t iStat; @@ -19738,7 +19738,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatName_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatType_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CGameID nGameID; const char *pchName; @@ -19746,14 +19746,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatType_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumAchievements_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CGameID nGameID; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CGameID nGameID; uint32_t iAchievement; @@ -19761,14 +19761,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementName_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumGroupAchievements_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CGameID nGameID; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievementName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CGameID nGameID; uint32_t iAchievement; @@ -19776,14 +19776,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievementNa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_RequestCurrentStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CGameID nGameID; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19792,7 +19792,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19801,7 +19801,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19810,7 +19810,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19819,7 +19819,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvgRateStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19829,7 +19829,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19838,7 +19838,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19847,7 +19847,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievement_p struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19855,7 +19855,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19863,14 +19863,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupAchievement_p struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_StoreStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CGameID nGameID; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19878,7 +19878,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchievement_para struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearGroupAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19886,7 +19886,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearGroupAchievement struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementIcon_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CGameID nGameID; const char *pchName; @@ -19894,7 +19894,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementIcon_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementDisplayAttribute_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CGameID nGameID; const char *pchName; @@ -19903,14 +19903,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CGameID nGameID; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CGameID nGameID; uint32_t iStat; @@ -19918,7 +19918,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatName_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatType_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CGameID nGameID; const char *pchName; @@ -19926,14 +19926,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatType_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumAchievements_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CGameID nGameID; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CGameID nGameID; uint32_t iAchievement; @@ -19941,14 +19941,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementName_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_RequestCurrentStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CGameID nGameID; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19957,7 +19957,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19966,7 +19966,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19975,7 +19975,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19984,7 +19984,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvgRateStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19994,7 +19994,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -20003,7 +20003,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -20011,7 +20011,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -20019,14 +20019,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchievement_para struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_StoreStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CGameID nGameID; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementIcon_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CGameID nGameID; const char *pchName; @@ -20034,7 +20034,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementIcon_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementDisplayAttribute_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CGameID nGameID; const char *pchName; @@ -20043,7 +20043,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateAchievementProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -20053,13 +20053,13 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateAchievementPr struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCurrentStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int32_t *pData; @@ -20067,7 +20067,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float *pData; @@ -20075,7 +20075,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int32_t nData; @@ -20083,7 +20083,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float fData; @@ -20091,7 +20091,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float flCountThisSession; @@ -20100,7 +20100,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -20108,34 +20108,34 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_ClearAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_StoreStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementIcon_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementDisplayAttribute_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; const char *pchName; const char *pchKey; @@ -20143,7 +20143,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; uint32_t nCurProgress; @@ -20152,13 +20152,13 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementPr struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestCurrentStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int32_t *pData; @@ -20166,7 +20166,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float *pData; @@ -20174,7 +20174,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int32_t nData; @@ -20182,7 +20182,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float fData; @@ -20190,7 +20190,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvgRateStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float flCountThisSession; @@ -20199,7 +20199,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -20207,34 +20207,34 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_ClearAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_StoreStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementIcon_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementDisplayAttribute_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; const char *pchName; const char *pchKey; @@ -20242,7 +20242,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_IndicateAchievementProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; uint32_t nCurProgress; @@ -20251,14 +20251,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_IndicateAchievementPr struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestUserStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDUser; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -20267,7 +20267,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -20276,7 +20276,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -20285,13 +20285,13 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAchievement_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestCurrentStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int32_t *pData; @@ -20299,7 +20299,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float *pData; @@ -20307,7 +20307,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int32_t nData; @@ -20315,7 +20315,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float fData; @@ -20323,7 +20323,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvgRateStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float flCountThisSession; @@ -20332,7 +20332,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -20340,34 +20340,34 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ClearAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_StoreStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementIcon_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementDisplayAttribute_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; const char *pchName; const char *pchKey; @@ -20375,7 +20375,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_IndicateAchievementProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; uint32_t nCurProgress; @@ -20384,14 +20384,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_IndicateAchievementPr struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestUserStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDUser; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -20400,7 +20400,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -20409,7 +20409,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -20418,14 +20418,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAchievement_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ResetAllStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bAchievementsToo; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindOrCreateLeaderboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchLeaderboardName; uint32_t eLeaderboardSortMethod; @@ -20434,42 +20434,42 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindOrCreateLeaderboa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindLeaderboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchLeaderboardName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardEntryCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardSortMethod_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardDisplayType_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_DownloadLeaderboardEntries_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardDataRequest; @@ -20479,7 +20479,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeaderboardEntry_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hSteamLeaderboardEntries; int32_t index; @@ -20490,7 +20490,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeaderbo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UploadLeaderboardScore_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; int32_t nScore; @@ -20500,13 +20500,13 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UploadLeaderboardScor struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestCurrentStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int32_t *pData; @@ -20514,7 +20514,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float *pData; @@ -20522,7 +20522,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int32_t nData; @@ -20530,7 +20530,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float fData; @@ -20538,7 +20538,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvgRateStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float flCountThisSession; @@ -20547,7 +20547,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -20555,34 +20555,34 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ClearAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_StoreStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementIcon_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementDisplayAttribute_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; const char *pchName; const char *pchKey; @@ -20590,7 +20590,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_IndicateAchievementProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; uint32_t nCurProgress; @@ -20599,14 +20599,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_IndicateAchievementPr struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestUserStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDUser; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -20615,7 +20615,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -20624,7 +20624,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -20633,14 +20633,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAchievement_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ResetAllStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bAchievementsToo; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindOrCreateLeaderboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchLeaderboardName; uint32_t eLeaderboardSortMethod; @@ -20649,42 +20649,42 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindOrCreateLeaderboa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindLeaderboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchLeaderboardName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardEntryCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardSortMethod_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardDisplayType_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_DownloadLeaderboardEntries_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardDataRequest; @@ -20694,7 +20694,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDownloadedLeaderboardEntry_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hSteamLeaderboardEntries; int32_t index; @@ -20705,7 +20705,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDownloadedLeaderbo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UploadLeaderboardScore_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardUploadScoreMethod; @@ -20716,19 +20716,19 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UploadLeaderboardScor struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetNumberOfCurrentPlayers_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestCurrentStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int32_t *pData; @@ -20736,7 +20736,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float *pData; @@ -20744,7 +20744,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int32_t nData; @@ -20752,7 +20752,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float fData; @@ -20760,7 +20760,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvgRateStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float flCountThisSession; @@ -20769,7 +20769,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -20777,21 +20777,21 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ClearAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementAndUnlockTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -20800,20 +20800,20 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementAndUnlo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_StoreStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementIcon_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementDisplayAttribute_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; const char *pchName; const char *pchKey; @@ -20821,7 +20821,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_IndicateAchievementProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; uint32_t nCurProgress; @@ -20830,14 +20830,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_IndicateAchievementPr struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestUserStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDUser; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -20846,7 +20846,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -20855,7 +20855,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -20864,7 +20864,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievement_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievementAndUnlockTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -20874,14 +20874,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievementAnd struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ResetAllStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bAchievementsToo; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindOrCreateLeaderboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchLeaderboardName; uint32_t eLeaderboardSortMethod; @@ -20890,42 +20890,42 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindOrCreateLeaderboa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindLeaderboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchLeaderboardName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardEntryCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardSortMethod_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardDisplayType_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_DownloadLeaderboardEntries_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardDataRequest; @@ -20935,7 +20935,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDownloadedLeaderboardEntry_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hSteamLeaderboardEntries; int32_t index; @@ -20946,7 +20946,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDownloadedLeaderbo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UploadLeaderboardScore_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardUploadScoreMethod; @@ -20957,19 +20957,19 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UploadLeaderboardScor struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetNumberOfCurrentPlayers_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestCurrentStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int32_t *pData; @@ -20977,7 +20977,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float *pData; @@ -20985,7 +20985,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int32_t nData; @@ -20993,7 +20993,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float fData; @@ -21001,7 +21001,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvgRateStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float flCountThisSession; @@ -21010,7 +21010,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -21018,21 +21018,21 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ClearAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementAndUnlockTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -21041,20 +21041,20 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementAndUnlo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_StoreStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementIcon_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementDisplayAttribute_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; const char *pchName; const char *pchKey; @@ -21062,7 +21062,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_IndicateAchievementProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; uint32_t nCurProgress; @@ -21071,14 +21071,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_IndicateAchievementPr struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestUserStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDUser; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21087,7 +21087,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21096,7 +21096,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21105,7 +21105,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievement_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievementAndUnlockTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21115,14 +21115,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievementAnd struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ResetAllStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bAchievementsToo; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindOrCreateLeaderboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchLeaderboardName; uint32_t eLeaderboardSortMethod; @@ -21131,42 +21131,42 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindOrCreateLeaderboa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindLeaderboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchLeaderboardName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardEntryCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardSortMethod_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardDisplayType_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_DownloadLeaderboardEntries_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardDataRequest; @@ -21176,7 +21176,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDownloadedLeaderboardEntry_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hSteamLeaderboardEntries; int32_t index; @@ -21187,7 +21187,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDownloadedLeaderbo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UploadLeaderboardScore_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardUploadScoreMethod; @@ -21198,7 +21198,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UploadLeaderboardScor struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_AttachLeaderboardUGC_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint64_t hUGC; @@ -21206,19 +21206,19 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_AttachLeaderboardUGC_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetNumberOfCurrentPlayers_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestCurrentStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int32_t *pData; @@ -21226,7 +21226,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float *pData; @@ -21234,7 +21234,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int32_t nData; @@ -21242,7 +21242,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float fData; @@ -21250,7 +21250,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvgRateStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float flCountThisSession; @@ -21259,7 +21259,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -21267,21 +21267,21 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ClearAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementAndUnlockTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -21290,20 +21290,20 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementAndUnlo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_StoreStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementIcon_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementDisplayAttribute_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; const char *pchName; const char *pchKey; @@ -21311,7 +21311,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_IndicateAchievementProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; uint32_t nCurProgress; @@ -21320,14 +21320,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_IndicateAchievementPr struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestUserStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDUser; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21336,7 +21336,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21345,7 +21345,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21354,7 +21354,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievement_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievementAndUnlockTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21364,14 +21364,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievementAnd struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ResetAllStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bAchievementsToo; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindOrCreateLeaderboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchLeaderboardName; uint32_t eLeaderboardSortMethod; @@ -21380,42 +21380,42 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindOrCreateLeaderboa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindLeaderboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchLeaderboardName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardEntryCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardSortMethod_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardDisplayType_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntries_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardDataRequest; @@ -21425,7 +21425,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntriesForUsers_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; CSteamID *prgUsers; @@ -21434,7 +21434,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDownloadedLeaderboardEntry_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hSteamLeaderboardEntries; int32_t index; @@ -21445,7 +21445,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDownloadedLeaderbo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UploadLeaderboardScore_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardUploadScoreMethod; @@ -21456,7 +21456,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UploadLeaderboardScor struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_AttachLeaderboardUGC_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint64_t hUGC; @@ -21464,19 +21464,19 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_AttachLeaderboardUGC_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetNumberOfCurrentPlayers_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int32_t *pData; @@ -21484,7 +21484,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float *pData; @@ -21492,7 +21492,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int32_t nData; @@ -21500,7 +21500,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float fData; @@ -21508,7 +21508,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float flCountThisSession; @@ -21517,7 +21517,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -21525,21 +21525,21 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUnlockTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -21548,20 +21548,20 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUnlo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_StoreStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementIcon_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementDisplayAttribute_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; const char *pchName; const char *pchKey; @@ -21569,7 +21569,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievementProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; uint32_t nCurProgress; @@ -21578,14 +21578,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievementPr struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestUserStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDUser; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21594,7 +21594,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21603,7 +21603,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21612,7 +21612,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementAndUnlockTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21622,14 +21622,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementAnd struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ResetAllStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bAchievementsToo; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindOrCreateLeaderboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchLeaderboardName; uint32_t eLeaderboardSortMethod; @@ -21638,42 +21638,42 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindOrCreateLeaderboa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindLeaderboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchLeaderboardName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardEntryCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardSortMethod_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardDisplayType_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntries_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardDataRequest; @@ -21683,7 +21683,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntriesForUsers_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; CSteamID *prgUsers; @@ -21692,7 +21692,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeaderboardEntry_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hSteamLeaderboardEntries; int32_t index; @@ -21703,7 +21703,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeaderbo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UploadLeaderboardScore_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardUploadScoreMethod; @@ -21714,7 +21714,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UploadLeaderboardScor struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_AttachLeaderboardUGC_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint64_t hUGC; @@ -21722,19 +21722,19 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_AttachLeaderboardUGC_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNumberOfCurrentPlayers_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalAchievementPercentages_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMostAchievedAchievementInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; char *pchName; uint32_t unNameBufLen; @@ -21744,7 +21744,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMostAchievedAchiev struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAchievementInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t iIteratorPrevious; char *pchName; @@ -21755,7 +21755,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAc struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchievedPercent_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float *pflPercent; @@ -21763,14 +21763,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchieve struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; int32_t nHistoryDays; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchStatName; int64_t *pData; @@ -21778,7 +21778,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchStatName; double *pData; @@ -21786,7 +21786,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2_param struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchStatName; int64_t *pData; @@ -21795,7 +21795,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchStatName; double *pData; @@ -21804,13 +21804,13 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestCurrentStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int32_t *pData; @@ -21818,7 +21818,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float *pData; @@ -21826,7 +21826,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int32_t nData; @@ -21834,7 +21834,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float fData; @@ -21842,7 +21842,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvgRateStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float flCountThisSession; @@ -21851,7 +21851,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -21859,21 +21859,21 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ClearAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAndUnlockTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -21882,20 +21882,20 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAndUnlo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_StoreStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementIcon_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementDisplayAttribute_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; const char *pchName; const char *pchKey; @@ -21903,7 +21903,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_IndicateAchievementProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; uint32_t nCurProgress; @@ -21912,27 +21912,27 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_IndicateAchievementPr struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumAchievements_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t iAchievement; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestUserStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDUser; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21941,7 +21941,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21950,7 +21950,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21959,7 +21959,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievement_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievementAndUnlockTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21969,14 +21969,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievementAnd struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ResetAllStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bAchievementsToo; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindOrCreateLeaderboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchLeaderboardName; uint32_t eLeaderboardSortMethod; @@ -21985,42 +21985,42 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindOrCreateLeaderboa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindLeaderboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchLeaderboardName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardEntryCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardSortMethod_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardDisplayType_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntries_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardDataRequest; @@ -22030,7 +22030,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntriesForUsers_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; CSteamID *prgUsers; @@ -22039,7 +22039,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDownloadedLeaderboardEntry_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hSteamLeaderboardEntries; int32_t index; @@ -22050,7 +22050,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDownloadedLeaderbo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UploadLeaderboardScore_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardUploadScoreMethod; @@ -22061,7 +22061,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UploadLeaderboardScor struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_AttachLeaderboardUGC_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint64_t hUGC; @@ -22069,19 +22069,19 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_AttachLeaderboardUGC_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumberOfCurrentPlayers_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalAchievementPercentages_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMostAchievedAchievementInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; char *pchName; uint32_t unNameBufLen; @@ -22091,7 +22091,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMostAchievedAchiev struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNextMostAchievedAchievementInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t iIteratorPrevious; char *pchName; @@ -22102,7 +22102,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNextMostAchievedAc struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAchievedPercent_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float *pflPercent; @@ -22110,14 +22110,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAchieve struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; int32_t nHistoryDays; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchStatName; int64_t *pData; @@ -22125,7 +22125,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchStatName; double *pData; @@ -22133,7 +22133,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_2_param struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchStatName; int64_t *pData; @@ -22142,7 +22142,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchStatName; double *pData; @@ -22151,13 +22151,13 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestCurrentStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int32_t *pData; @@ -22165,7 +22165,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float *pData; @@ -22173,7 +22173,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int32_t nData; @@ -22181,7 +22181,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float fData; @@ -22189,7 +22189,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvgRateStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float flCountThisSession; @@ -22198,7 +22198,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -22206,21 +22206,21 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ClearAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAndUnlockTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -22229,20 +22229,20 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAndUnlo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_StoreStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementIcon_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementDisplayAttribute_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; const char *pchName; const char *pchKey; @@ -22250,7 +22250,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_IndicateAchievementProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; uint32_t nCurProgress; @@ -22259,27 +22259,27 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_IndicateAchievementPr struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumAchievements_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t iAchievement; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestUserStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDUser; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -22288,7 +22288,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -22297,7 +22297,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -22306,7 +22306,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievement_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievementAndUnlockTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -22316,14 +22316,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievementAnd struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ResetAllStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bAchievementsToo; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindOrCreateLeaderboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchLeaderboardName; uint32_t eLeaderboardSortMethod; @@ -22332,42 +22332,42 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindOrCreateLeaderboa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindLeaderboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchLeaderboardName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardEntryCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardSortMethod_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardDisplayType_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntries_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardDataRequest; @@ -22377,7 +22377,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntriesForUsers_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; CSteamID *prgUsers; @@ -22386,7 +22386,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDownloadedLeaderboardEntry_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hSteamLeaderboardEntries; int32_t index; @@ -22397,7 +22397,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDownloadedLeaderbo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UploadLeaderboardScore_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardUploadScoreMethod; @@ -22408,7 +22408,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UploadLeaderboardScor struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_AttachLeaderboardUGC_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint64_t hUGC; @@ -22416,19 +22416,19 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_AttachLeaderboardUGC_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumberOfCurrentPlayers_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalAchievementPercentages_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMostAchievedAchievementInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; char *pchName; uint32_t unNameBufLen; @@ -22438,7 +22438,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMostAchievedAchiev struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNextMostAchievedAchievementInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t iIteratorPrevious; char *pchName; @@ -22449,7 +22449,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNextMostAchievedAc struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAchievedPercent_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float *pflPercent; @@ -22457,14 +22457,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAchieve struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; int32_t nHistoryDays; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchStatName; int64_t *pData; @@ -22472,7 +22472,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchStatName; double *pData; @@ -22480,7 +22480,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_2_param struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchStatName; int64_t *pData; @@ -22489,7 +22489,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchStatName; double *pData; @@ -22498,7 +22498,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int32_t *pnMinProgress; @@ -22507,7 +22507,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgres struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float *pfMinProgress; @@ -22516,7 +22516,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgres struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int32_t *pData; @@ -22524,7 +22524,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float *pData; @@ -22532,7 +22532,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int32_t nData; @@ -22540,7 +22540,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float fData; @@ -22548,7 +22548,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_UpdateAvgRateStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float flCountThisSession; @@ -22557,7 +22557,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -22565,21 +22565,21 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_ClearAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementAndUnlockTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -22588,20 +22588,20 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementAndUnlo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_StoreStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementIcon_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementDisplayAttribute_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; const char *pchName; const char *pchKey; @@ -22609,7 +22609,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_IndicateAchievementProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; uint32_t nCurProgress; @@ -22618,27 +22618,27 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_IndicateAchievementPr struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNumAchievements_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t iAchievement; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_RequestUserStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDUser; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -22647,7 +22647,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -22656,7 +22656,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -22665,7 +22665,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserAchievement_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserAchievementAndUnlockTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -22675,14 +22675,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserAchievementAnd struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_ResetAllStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bAchievementsToo; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_FindOrCreateLeaderboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchLeaderboardName; uint32_t eLeaderboardSortMethod; @@ -22691,42 +22691,42 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_FindOrCreateLeaderboa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_FindLeaderboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchLeaderboardName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardEntryCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardSortMethod_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardDisplayType_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_DownloadLeaderboardEntries_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardDataRequest; @@ -22736,7 +22736,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_DownloadLeaderboardEntriesForUsers_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; CSteamID *prgUsers; @@ -22745,7 +22745,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetDownloadedLeaderboardEntry_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hSteamLeaderboardEntries; int32_t index; @@ -22756,7 +22756,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetDownloadedLeaderbo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_UploadLeaderboardScore_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardUploadScoreMethod; @@ -22767,7 +22767,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_UploadLeaderboardScor struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_AttachLeaderboardUGC_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint64_t hUGC; @@ -22775,19 +22775,19 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_AttachLeaderboardUGC_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNumberOfCurrentPlayers_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_RequestGlobalAchievementPercentages_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetMostAchievedAchievementInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; char *pchName; uint32_t unNameBufLen; @@ -22797,7 +22797,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetMostAchievedAchiev struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNextMostAchievedAchievementInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t iIteratorPrevious; char *pchName; @@ -22808,7 +22808,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNextMostAchievedAc struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementAchievedPercent_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float *pflPercent; @@ -22816,14 +22816,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementAchieve struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_RequestGlobalStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; int32_t nHistoryDays; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchStatName; int64_t *pData; @@ -22831,7 +22831,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchStatName; double *pData; @@ -22839,7 +22839,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStat_2_param struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStatHistory_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchStatName; int64_t *pData; @@ -22848,7 +22848,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStatHistory_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStatHistory_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchStatName; double *pData; @@ -22857,7 +22857,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStatHistory_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementProgressLimits_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; int32_t *pnMinProgress; @@ -22866,7 +22866,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementProgres struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementProgressLimits_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchName; float *pfMinProgress; @@ -22875,39 +22875,39 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementProgres struct ISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unVideoAppID; }; struct ISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pnNumViewers; }; struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetVideoURL_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unVideoAppID; }; struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pnNumViewers; }; struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFSettings_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unVideoAppID; }; struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unVideoAppID; char *pchBuffer; @@ -22916,26 +22916,26 @@ struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp_params struct ISteamVideo_STEAMVIDEO_INTERFACE_V007_GetVideoURL_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unVideoAppID; }; struct ISteamVideo_STEAMVIDEO_INTERFACE_V007_IsBroadcasting_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pnNumViewers; }; struct ISteamVideo_STEAMVIDEO_INTERFACE_V007_GetOPFSettings_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unVideoAppID; }; struct ISteamVideo_STEAMVIDEO_INTERFACE_V007_GetOPFStringForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unVideoAppID; char *pchBuffer; @@ -22944,49 +22944,49 @@ struct ISteamVideo_STEAMVIDEO_INTERFACE_V007_GetOPFStringForApp_params struct ISteamClient_SteamClient006_CreateSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamClient_SteamClient006_BReleaseSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient006_CreateGlobalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t *phSteamPipe; }; struct ISteamClient_SteamClient006_ConnectToGlobalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient006_CreateLocalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t *phSteamPipe; }; struct ISteamClient_SteamClient006_ReleaseUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient006_GetISteamUser_params { - struct u_iface *u_iface; - void /*ISteamUser*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -22994,15 +22994,15 @@ struct ISteamClient_SteamClient006_GetISteamUser_params struct ISteamClient_SteamClient006_GetIVAC_params { - struct u_iface *u_iface; + struct u_iface u_iface; void *_ret; int32_t hSteamUser; }; struct ISteamClient_SteamClient006_GetISteamGameServer_params { - struct u_iface *u_iface; - void /*ISteamGameServer*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23010,22 +23010,22 @@ struct ISteamClient_SteamClient006_GetISteamGameServer_params struct ISteamClient_SteamClient006_SetLocalIPBinding_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIP; uint16_t usPort; }; struct ISteamClient_SteamClient006_GetUniverseName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eUniverse; }; struct ISteamClient_SteamClient006_GetISteamFriends_params { - struct u_iface *u_iface; - void /*ISteamFriends*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23033,16 +23033,16 @@ struct ISteamClient_SteamClient006_GetISteamFriends_params struct ISteamClient_SteamClient006_GetISteamUtils_params { - struct u_iface *u_iface; - void /*ISteamUtils*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamPipe; const char *pchVersion; }; struct ISteamClient_SteamClient006_GetISteamBilling_params { - struct u_iface *u_iface; - void *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23050,8 +23050,8 @@ struct ISteamClient_SteamClient006_GetISteamBilling_params struct ISteamClient_SteamClient006_GetISteamMatchmaking_params { - struct u_iface *u_iface; - void /*ISteamMatchmaking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23059,8 +23059,8 @@ struct ISteamClient_SteamClient006_GetISteamMatchmaking_params struct ISteamClient_SteamClient006_GetISteamApps_params { - struct u_iface *u_iface; - void /*ISteamApps*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23068,8 +23068,8 @@ struct ISteamClient_SteamClient006_GetISteamApps_params struct ISteamClient_SteamClient006_GetISteamContentServer_params { - struct u_iface *u_iface; - void /*ISteamContentServer*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23077,8 +23077,8 @@ struct ISteamClient_SteamClient006_GetISteamContentServer_params struct ISteamClient_SteamClient006_GetISteamMasterServerUpdater_params { - struct u_iface *u_iface; - void /*ISteamMasterServerUpdater*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23086,8 +23086,8 @@ struct ISteamClient_SteamClient006_GetISteamMasterServerUpdater_params struct ISteamClient_SteamClient006_GetISteamMatchmakingServers_params { - struct u_iface *u_iface; - void /*ISteamMatchmakingServers*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23095,53 +23095,53 @@ struct ISteamClient_SteamClient006_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient006_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamClient_SteamClient006_GetIPCCallCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient007_CreateSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamClient_SteamClient007_BReleaseSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient007_ConnectToGlobalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient007_CreateLocalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t *phSteamPipe; }; struct ISteamClient_SteamClient007_ReleaseUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient007_GetISteamUser_params { - struct u_iface *u_iface; - void /*ISteamUser*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23149,8 +23149,8 @@ struct ISteamClient_SteamClient007_GetISteamUser_params struct ISteamClient_SteamClient007_GetISteamGameServer_params { - struct u_iface *u_iface; - void /*ISteamGameServer*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23158,15 +23158,15 @@ struct ISteamClient_SteamClient007_GetISteamGameServer_params struct ISteamClient_SteamClient007_SetLocalIPBinding_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIP; uint16_t usPort; }; struct ISteamClient_SteamClient007_GetISteamFriends_params { - struct u_iface *u_iface; - void /*ISteamFriends*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23174,16 +23174,16 @@ struct ISteamClient_SteamClient007_GetISteamFriends_params struct ISteamClient_SteamClient007_GetISteamUtils_params { - struct u_iface *u_iface; - void /*ISteamUtils*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamPipe; const char *pchVersion; }; struct ISteamClient_SteamClient007_GetISteamMatchmaking_params { - struct u_iface *u_iface; - void /*ISteamMatchmaking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23191,8 +23191,8 @@ struct ISteamClient_SteamClient007_GetISteamMatchmaking_params struct ISteamClient_SteamClient007_GetISteamContentServer_params { - struct u_iface *u_iface; - void /*ISteamContentServer*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23200,8 +23200,8 @@ struct ISteamClient_SteamClient007_GetISteamContentServer_params struct ISteamClient_SteamClient007_GetISteamMasterServerUpdater_params { - struct u_iface *u_iface; - void /*ISteamMasterServerUpdater*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23209,8 +23209,8 @@ struct ISteamClient_SteamClient007_GetISteamMasterServerUpdater_params struct ISteamClient_SteamClient007_GetISteamMatchmakingServers_params { - struct u_iface *u_iface; - void /*ISteamMatchmakingServers*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23218,8 +23218,8 @@ struct ISteamClient_SteamClient007_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient007_GetISteamGenericInterface_params { - struct u_iface *u_iface; - void *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23227,19 +23227,19 @@ struct ISteamClient_SteamClient007_GetISteamGenericInterface_params struct ISteamClient_SteamClient007_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamClient_SteamClient007_GetIPCCallCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient007_GetISteamUserStats_params { - struct u_iface *u_iface; - void /*ISteamUserStats*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23247,8 +23247,8 @@ struct ISteamClient_SteamClient007_GetISteamUserStats_params struct ISteamClient_SteamClient007_GetISteamApps_params { - struct u_iface *u_iface; - void /*ISteamApps*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23256,8 +23256,8 @@ struct ISteamClient_SteamClient007_GetISteamApps_params struct ISteamClient_SteamClient007_GetISteamNetworking_params { - struct u_iface *u_iface; - void /*ISteamNetworking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23265,14 +23265,14 @@ struct ISteamClient_SteamClient007_GetISteamNetworking_params struct ISteamClient_SteamClient007_SetWarningMessageHook_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamClient_SteamClient007_GetISteamRemoteStorage_params { - struct u_iface *u_iface; - void /*ISteamRemoteStorage*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -23280,27 +23280,27 @@ struct ISteamClient_SteamClient007_GetISteamRemoteStorage_params struct ISteamClient_SteamClient008_CreateSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamClient_SteamClient008_BReleaseSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient008_ConnectToGlobalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient008_CreateLocalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t *phSteamPipe; uint32_t eAccountType; @@ -23308,15 +23308,15 @@ struct ISteamClient_SteamClient008_CreateLocalUser_params struct ISteamClient_SteamClient008_ReleaseUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient008_GetISteamUser_params { - struct u_iface *u_iface; - void /*ISteamUser*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23324,8 +23324,8 @@ struct ISteamClient_SteamClient008_GetISteamUser_params struct ISteamClient_SteamClient008_GetISteamGameServer_params { - struct u_iface *u_iface; - void /*ISteamGameServer*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23333,15 +23333,15 @@ struct ISteamClient_SteamClient008_GetISteamGameServer_params struct ISteamClient_SteamClient008_SetLocalIPBinding_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIP; uint16_t usPort; }; struct ISteamClient_SteamClient008_GetISteamFriends_params { - struct u_iface *u_iface; - void /*ISteamFriends*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23349,16 +23349,16 @@ struct ISteamClient_SteamClient008_GetISteamFriends_params struct ISteamClient_SteamClient008_GetISteamUtils_params { - struct u_iface *u_iface; - void /*ISteamUtils*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamPipe; const char *pchVersion; }; struct ISteamClient_SteamClient008_GetISteamMatchmaking_params { - struct u_iface *u_iface; - void /*ISteamMatchmaking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23366,8 +23366,8 @@ struct ISteamClient_SteamClient008_GetISteamMatchmaking_params struct ISteamClient_SteamClient008_GetISteamMasterServerUpdater_params { - struct u_iface *u_iface; - void /*ISteamMasterServerUpdater*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23375,8 +23375,8 @@ struct ISteamClient_SteamClient008_GetISteamMasterServerUpdater_params struct ISteamClient_SteamClient008_GetISteamMatchmakingServers_params { - struct u_iface *u_iface; - void /*ISteamMatchmakingServers*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23384,8 +23384,8 @@ struct ISteamClient_SteamClient008_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient008_GetISteamGenericInterface_params { - struct u_iface *u_iface; - void *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23393,8 +23393,8 @@ struct ISteamClient_SteamClient008_GetISteamGenericInterface_params struct ISteamClient_SteamClient008_GetISteamUserStats_params { - struct u_iface *u_iface; - void /*ISteamUserStats*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23402,8 +23402,8 @@ struct ISteamClient_SteamClient008_GetISteamUserStats_params struct ISteamClient_SteamClient008_GetISteamApps_params { - struct u_iface *u_iface; - void /*ISteamApps*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23411,8 +23411,8 @@ struct ISteamClient_SteamClient008_GetISteamApps_params struct ISteamClient_SteamClient008_GetISteamNetworking_params { - struct u_iface *u_iface; - void /*ISteamNetworking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23420,8 +23420,8 @@ struct ISteamClient_SteamClient008_GetISteamNetworking_params struct ISteamClient_SteamClient008_GetISteamRemoteStorage_params { - struct u_iface *u_iface; - void /*ISteamRemoteStorage*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -23429,44 +23429,44 @@ struct ISteamClient_SteamClient008_GetISteamRemoteStorage_params struct ISteamClient_SteamClient008_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamClient_SteamClient008_GetIPCCallCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient008_SetWarningMessageHook_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamClient_SteamClient009_CreateSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamClient_SteamClient009_BReleaseSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient009_ConnectToGlobalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient009_CreateLocalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t *phSteamPipe; uint32_t eAccountType; @@ -23474,15 +23474,15 @@ struct ISteamClient_SteamClient009_CreateLocalUser_params struct ISteamClient_SteamClient009_ReleaseUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient009_GetISteamUser_params { - struct u_iface *u_iface; - void /*ISteamUser*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23490,8 +23490,8 @@ struct ISteamClient_SteamClient009_GetISteamUser_params struct ISteamClient_SteamClient009_GetISteamGameServer_params { - struct u_iface *u_iface; - void /*ISteamGameServer*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23499,15 +23499,15 @@ struct ISteamClient_SteamClient009_GetISteamGameServer_params struct ISteamClient_SteamClient009_SetLocalIPBinding_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIP; uint16_t usPort; }; struct ISteamClient_SteamClient009_GetISteamFriends_params { - struct u_iface *u_iface; - void /*ISteamFriends*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23515,16 +23515,16 @@ struct ISteamClient_SteamClient009_GetISteamFriends_params struct ISteamClient_SteamClient009_GetISteamUtils_params { - struct u_iface *u_iface; - void /*ISteamUtils*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamPipe; const char *pchVersion; }; struct ISteamClient_SteamClient009_GetISteamMatchmaking_params { - struct u_iface *u_iface; - void /*ISteamMatchmaking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23532,8 +23532,8 @@ struct ISteamClient_SteamClient009_GetISteamMatchmaking_params struct ISteamClient_SteamClient009_GetISteamMasterServerUpdater_params { - struct u_iface *u_iface; - void /*ISteamMasterServerUpdater*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23541,8 +23541,8 @@ struct ISteamClient_SteamClient009_GetISteamMasterServerUpdater_params struct ISteamClient_SteamClient009_GetISteamMatchmakingServers_params { - struct u_iface *u_iface; - void /*ISteamMatchmakingServers*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23550,8 +23550,8 @@ struct ISteamClient_SteamClient009_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient009_GetISteamGenericInterface_params { - struct u_iface *u_iface; - void *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23559,8 +23559,8 @@ struct ISteamClient_SteamClient009_GetISteamGenericInterface_params struct ISteamClient_SteamClient009_GetISteamUserStats_params { - struct u_iface *u_iface; - void /*ISteamUserStats*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23568,8 +23568,8 @@ struct ISteamClient_SteamClient009_GetISteamUserStats_params struct ISteamClient_SteamClient009_GetISteamGameServerStats_params { - struct u_iface *u_iface; - void /*ISteamGameServerStats*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -23577,8 +23577,8 @@ struct ISteamClient_SteamClient009_GetISteamGameServerStats_params struct ISteamClient_SteamClient009_GetISteamApps_params { - struct u_iface *u_iface; - void /*ISteamApps*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23586,8 +23586,8 @@ struct ISteamClient_SteamClient009_GetISteamApps_params struct ISteamClient_SteamClient009_GetISteamNetworking_params { - struct u_iface *u_iface; - void /*ISteamNetworking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23595,8 +23595,8 @@ struct ISteamClient_SteamClient009_GetISteamNetworking_params struct ISteamClient_SteamClient009_GetISteamRemoteStorage_params { - struct u_iface *u_iface; - void /*ISteamRemoteStorage*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -23604,44 +23604,44 @@ struct ISteamClient_SteamClient009_GetISteamRemoteStorage_params struct ISteamClient_SteamClient009_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamClient_SteamClient009_GetIPCCallCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient009_SetWarningMessageHook_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamClient_SteamClient010_CreateSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamClient_SteamClient010_BReleaseSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient010_ConnectToGlobalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient010_CreateLocalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t *phSteamPipe; uint32_t eAccountType; @@ -23649,15 +23649,15 @@ struct ISteamClient_SteamClient010_CreateLocalUser_params struct ISteamClient_SteamClient010_ReleaseUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient010_GetISteamUser_params { - struct u_iface *u_iface; - void /*ISteamUser*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23665,8 +23665,8 @@ struct ISteamClient_SteamClient010_GetISteamUser_params struct ISteamClient_SteamClient010_GetISteamGameServer_params { - struct u_iface *u_iface; - void /*ISteamGameServer*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23674,15 +23674,15 @@ struct ISteamClient_SteamClient010_GetISteamGameServer_params struct ISteamClient_SteamClient010_SetLocalIPBinding_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIP; uint16_t usPort; }; struct ISteamClient_SteamClient010_GetISteamFriends_params { - struct u_iface *u_iface; - void /*ISteamFriends*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23690,16 +23690,16 @@ struct ISteamClient_SteamClient010_GetISteamFriends_params struct ISteamClient_SteamClient010_GetISteamUtils_params { - struct u_iface *u_iface; - void /*ISteamUtils*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamPipe; const char *pchVersion; }; struct ISteamClient_SteamClient010_GetISteamMatchmaking_params { - struct u_iface *u_iface; - void /*ISteamMatchmaking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23707,8 +23707,8 @@ struct ISteamClient_SteamClient010_GetISteamMatchmaking_params struct ISteamClient_SteamClient010_GetISteamMasterServerUpdater_params { - struct u_iface *u_iface; - void /*ISteamMasterServerUpdater*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23716,8 +23716,8 @@ struct ISteamClient_SteamClient010_GetISteamMasterServerUpdater_params struct ISteamClient_SteamClient010_GetISteamMatchmakingServers_params { - struct u_iface *u_iface; - void /*ISteamMatchmakingServers*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23725,8 +23725,8 @@ struct ISteamClient_SteamClient010_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient010_GetISteamGenericInterface_params { - struct u_iface *u_iface; - void *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23734,8 +23734,8 @@ struct ISteamClient_SteamClient010_GetISteamGenericInterface_params struct ISteamClient_SteamClient010_GetISteamUserStats_params { - struct u_iface *u_iface; - void /*ISteamUserStats*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23743,8 +23743,8 @@ struct ISteamClient_SteamClient010_GetISteamUserStats_params struct ISteamClient_SteamClient010_GetISteamGameServerStats_params { - struct u_iface *u_iface; - void /*ISteamGameServerStats*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -23752,8 +23752,8 @@ struct ISteamClient_SteamClient010_GetISteamGameServerStats_params struct ISteamClient_SteamClient010_GetISteamApps_params { - struct u_iface *u_iface; - void /*ISteamApps*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23761,8 +23761,8 @@ struct ISteamClient_SteamClient010_GetISteamApps_params struct ISteamClient_SteamClient010_GetISteamNetworking_params { - struct u_iface *u_iface; - void /*ISteamNetworking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23770,8 +23770,8 @@ struct ISteamClient_SteamClient010_GetISteamNetworking_params struct ISteamClient_SteamClient010_GetISteamRemoteStorage_params { - struct u_iface *u_iface; - void /*ISteamRemoteStorage*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -23779,31 +23779,31 @@ struct ISteamClient_SteamClient010_GetISteamRemoteStorage_params struct ISteamClient_SteamClient010_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamClient_SteamClient010_GetIPCCallCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient010_SetWarningMessageHook_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamClient_SteamClient010_BShutdownIfAllPipesClosed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamClient_SteamClient010_GetISteamHTTP_params { - struct u_iface *u_iface; - void /*ISteamHTTP*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -23811,27 +23811,27 @@ struct ISteamClient_SteamClient010_GetISteamHTTP_params struct ISteamClient_SteamClient011_CreateSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamClient_SteamClient011_BReleaseSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient011_ConnectToGlobalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient011_CreateLocalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t *phSteamPipe; uint32_t eAccountType; @@ -23839,15 +23839,15 @@ struct ISteamClient_SteamClient011_CreateLocalUser_params struct ISteamClient_SteamClient011_ReleaseUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient011_GetISteamUser_params { - struct u_iface *u_iface; - void /*ISteamUser*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23855,8 +23855,8 @@ struct ISteamClient_SteamClient011_GetISteamUser_params struct ISteamClient_SteamClient011_GetISteamGameServer_params { - struct u_iface *u_iface; - void /*ISteamGameServer*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23864,15 +23864,15 @@ struct ISteamClient_SteamClient011_GetISteamGameServer_params struct ISteamClient_SteamClient011_SetLocalIPBinding_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIP; uint16_t usPort; }; struct ISteamClient_SteamClient011_GetISteamFriends_params { - struct u_iface *u_iface; - void /*ISteamFriends*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23880,16 +23880,16 @@ struct ISteamClient_SteamClient011_GetISteamFriends_params struct ISteamClient_SteamClient011_GetISteamUtils_params { - struct u_iface *u_iface; - void /*ISteamUtils*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamPipe; const char *pchVersion; }; struct ISteamClient_SteamClient011_GetISteamMatchmaking_params { - struct u_iface *u_iface; - void /*ISteamMatchmaking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23897,8 +23897,8 @@ struct ISteamClient_SteamClient011_GetISteamMatchmaking_params struct ISteamClient_SteamClient011_GetISteamMasterServerUpdater_params { - struct u_iface *u_iface; - void /*ISteamMasterServerUpdater*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23906,8 +23906,8 @@ struct ISteamClient_SteamClient011_GetISteamMasterServerUpdater_params struct ISteamClient_SteamClient011_GetISteamMatchmakingServers_params { - struct u_iface *u_iface; - void /*ISteamMatchmakingServers*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23915,8 +23915,8 @@ struct ISteamClient_SteamClient011_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient011_GetISteamGenericInterface_params { - struct u_iface *u_iface; - void *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23924,8 +23924,8 @@ struct ISteamClient_SteamClient011_GetISteamGenericInterface_params struct ISteamClient_SteamClient011_GetISteamUserStats_params { - struct u_iface *u_iface; - void /*ISteamUserStats*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23933,8 +23933,8 @@ struct ISteamClient_SteamClient011_GetISteamUserStats_params struct ISteamClient_SteamClient011_GetISteamGameServerStats_params { - struct u_iface *u_iface; - void /*ISteamGameServerStats*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -23942,8 +23942,8 @@ struct ISteamClient_SteamClient011_GetISteamGameServerStats_params struct ISteamClient_SteamClient011_GetISteamApps_params { - struct u_iface *u_iface; - void /*ISteamApps*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23951,8 +23951,8 @@ struct ISteamClient_SteamClient011_GetISteamApps_params struct ISteamClient_SteamClient011_GetISteamNetworking_params { - struct u_iface *u_iface; - void /*ISteamNetworking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -23960,8 +23960,8 @@ struct ISteamClient_SteamClient011_GetISteamNetworking_params struct ISteamClient_SteamClient011_GetISteamRemoteStorage_params { - struct u_iface *u_iface; - void /*ISteamRemoteStorage*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -23969,8 +23969,8 @@ struct ISteamClient_SteamClient011_GetISteamRemoteStorage_params struct ISteamClient_SteamClient011_GetISteamScreenshots_params { - struct u_iface *u_iface; - void /*ISteamScreenshots*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -23978,31 +23978,31 @@ struct ISteamClient_SteamClient011_GetISteamScreenshots_params struct ISteamClient_SteamClient011_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamClient_SteamClient011_GetIPCCallCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient011_SetWarningMessageHook_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamClient_SteamClient011_BShutdownIfAllPipesClosed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamClient_SteamClient011_GetISteamHTTP_params { - struct u_iface *u_iface; - void /*ISteamHTTP*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -24010,27 +24010,27 @@ struct ISteamClient_SteamClient011_GetISteamHTTP_params struct ISteamClient_SteamClient012_CreateSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamClient_SteamClient012_BReleaseSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient012_ConnectToGlobalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient012_CreateLocalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t *phSteamPipe; uint32_t eAccountType; @@ -24038,15 +24038,15 @@ struct ISteamClient_SteamClient012_CreateLocalUser_params struct ISteamClient_SteamClient012_ReleaseUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient012_GetISteamUser_params { - struct u_iface *u_iface; - void /*ISteamUser*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24054,8 +24054,8 @@ struct ISteamClient_SteamClient012_GetISteamUser_params struct ISteamClient_SteamClient012_GetISteamGameServer_params { - struct u_iface *u_iface; - void /*ISteamGameServer*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24063,15 +24063,15 @@ struct ISteamClient_SteamClient012_GetISteamGameServer_params struct ISteamClient_SteamClient012_SetLocalIPBinding_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIP; uint16_t usPort; }; struct ISteamClient_SteamClient012_GetISteamFriends_params { - struct u_iface *u_iface; - void /*ISteamFriends*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24079,16 +24079,16 @@ struct ISteamClient_SteamClient012_GetISteamFriends_params struct ISteamClient_SteamClient012_GetISteamUtils_params { - struct u_iface *u_iface; - void /*ISteamUtils*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamPipe; const char *pchVersion; }; struct ISteamClient_SteamClient012_GetISteamMatchmaking_params { - struct u_iface *u_iface; - void /*ISteamMatchmaking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24096,8 +24096,8 @@ struct ISteamClient_SteamClient012_GetISteamMatchmaking_params struct ISteamClient_SteamClient012_GetISteamMatchmakingServers_params { - struct u_iface *u_iface; - void /*ISteamMatchmakingServers*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24105,8 +24105,8 @@ struct ISteamClient_SteamClient012_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient012_GetISteamGenericInterface_params { - struct u_iface *u_iface; - void *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24114,8 +24114,8 @@ struct ISteamClient_SteamClient012_GetISteamGenericInterface_params struct ISteamClient_SteamClient012_GetISteamUserStats_params { - struct u_iface *u_iface; - void /*ISteamUserStats*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24123,8 +24123,8 @@ struct ISteamClient_SteamClient012_GetISteamUserStats_params struct ISteamClient_SteamClient012_GetISteamGameServerStats_params { - struct u_iface *u_iface; - void /*ISteamGameServerStats*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -24132,8 +24132,8 @@ struct ISteamClient_SteamClient012_GetISteamGameServerStats_params struct ISteamClient_SteamClient012_GetISteamApps_params { - struct u_iface *u_iface; - void /*ISteamApps*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24141,8 +24141,8 @@ struct ISteamClient_SteamClient012_GetISteamApps_params struct ISteamClient_SteamClient012_GetISteamNetworking_params { - struct u_iface *u_iface; - void /*ISteamNetworking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24150,8 +24150,8 @@ struct ISteamClient_SteamClient012_GetISteamNetworking_params struct ISteamClient_SteamClient012_GetISteamRemoteStorage_params { - struct u_iface *u_iface; - void /*ISteamRemoteStorage*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -24159,8 +24159,8 @@ struct ISteamClient_SteamClient012_GetISteamRemoteStorage_params struct ISteamClient_SteamClient012_GetISteamScreenshots_params { - struct u_iface *u_iface; - void /*ISteamScreenshots*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -24168,31 +24168,31 @@ struct ISteamClient_SteamClient012_GetISteamScreenshots_params struct ISteamClient_SteamClient012_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamClient_SteamClient012_GetIPCCallCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient012_SetWarningMessageHook_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamClient_SteamClient012_BShutdownIfAllPipesClosed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamClient_SteamClient012_GetISteamHTTP_params { - struct u_iface *u_iface; - void /*ISteamHTTP*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -24200,8 +24200,8 @@ struct ISteamClient_SteamClient012_GetISteamHTTP_params struct ISteamClient_SteamClient012_GetISteamUnifiedMessages_params { - struct u_iface *u_iface; - void /*ISteamUnifiedMessages*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -24209,8 +24209,8 @@ struct ISteamClient_SteamClient012_GetISteamUnifiedMessages_params struct ISteamClient_SteamClient012_GetISteamController_params { - struct u_iface *u_iface; - void /*ISteamController*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24218,8 +24218,8 @@ struct ISteamClient_SteamClient012_GetISteamController_params struct ISteamClient_SteamClient012_GetISteamUGC_params { - struct u_iface *u_iface; - void /*ISteamUGC*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24227,27 +24227,27 @@ struct ISteamClient_SteamClient012_GetISteamUGC_params struct ISteamClient_SteamClient013_CreateSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamClient_SteamClient013_BReleaseSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient013_ConnectToGlobalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient013_CreateLocalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t *phSteamPipe; uint32_t eAccountType; @@ -24255,15 +24255,15 @@ struct ISteamClient_SteamClient013_CreateLocalUser_params struct ISteamClient_SteamClient013_ReleaseUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient013_GetISteamUser_params { - struct u_iface *u_iface; - void /*ISteamUser*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24271,8 +24271,8 @@ struct ISteamClient_SteamClient013_GetISteamUser_params struct ISteamClient_SteamClient013_GetISteamGameServer_params { - struct u_iface *u_iface; - void /*ISteamGameServer*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24280,15 +24280,15 @@ struct ISteamClient_SteamClient013_GetISteamGameServer_params struct ISteamClient_SteamClient013_SetLocalIPBinding_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIP; uint16_t usPort; }; struct ISteamClient_SteamClient013_GetISteamFriends_params { - struct u_iface *u_iface; - void /*ISteamFriends*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24296,16 +24296,16 @@ struct ISteamClient_SteamClient013_GetISteamFriends_params struct ISteamClient_SteamClient013_GetISteamUtils_params { - struct u_iface *u_iface; - void /*ISteamUtils*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamPipe; const char *pchVersion; }; struct ISteamClient_SteamClient013_GetISteamMatchmaking_params { - struct u_iface *u_iface; - void /*ISteamMatchmaking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24313,8 +24313,8 @@ struct ISteamClient_SteamClient013_GetISteamMatchmaking_params struct ISteamClient_SteamClient013_GetISteamMatchmakingServers_params { - struct u_iface *u_iface; - void /*ISteamMatchmakingServers*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24322,8 +24322,8 @@ struct ISteamClient_SteamClient013_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient013_GetISteamGenericInterface_params { - struct u_iface *u_iface; - void *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24331,8 +24331,8 @@ struct ISteamClient_SteamClient013_GetISteamGenericInterface_params struct ISteamClient_SteamClient013_GetISteamUserStats_params { - struct u_iface *u_iface; - void /*ISteamUserStats*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24340,8 +24340,8 @@ struct ISteamClient_SteamClient013_GetISteamUserStats_params struct ISteamClient_SteamClient013_GetISteamGameServerStats_params { - struct u_iface *u_iface; - void /*ISteamGameServerStats*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -24349,8 +24349,8 @@ struct ISteamClient_SteamClient013_GetISteamGameServerStats_params struct ISteamClient_SteamClient013_GetISteamApps_params { - struct u_iface *u_iface; - void /*ISteamApps*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24358,8 +24358,8 @@ struct ISteamClient_SteamClient013_GetISteamApps_params struct ISteamClient_SteamClient013_GetISteamNetworking_params { - struct u_iface *u_iface; - void /*ISteamNetworking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24367,8 +24367,8 @@ struct ISteamClient_SteamClient013_GetISteamNetworking_params struct ISteamClient_SteamClient013_GetISteamRemoteStorage_params { - struct u_iface *u_iface; - void /*ISteamRemoteStorage*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -24376,8 +24376,8 @@ struct ISteamClient_SteamClient013_GetISteamRemoteStorage_params struct ISteamClient_SteamClient013_GetISteamScreenshots_params { - struct u_iface *u_iface; - void /*ISteamScreenshots*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -24385,31 +24385,31 @@ struct ISteamClient_SteamClient013_GetISteamScreenshots_params struct ISteamClient_SteamClient013_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamClient_SteamClient013_GetIPCCallCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient013_SetWarningMessageHook_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamClient_SteamClient013_BShutdownIfAllPipesClosed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamClient_SteamClient013_GetISteamHTTP_params { - struct u_iface *u_iface; - void /*ISteamHTTP*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -24417,8 +24417,8 @@ struct ISteamClient_SteamClient013_GetISteamHTTP_params struct ISteamClient_SteamClient013_GetISteamUnifiedMessages_params { - struct u_iface *u_iface; - void /*ISteamUnifiedMessages*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -24426,8 +24426,8 @@ struct ISteamClient_SteamClient013_GetISteamUnifiedMessages_params struct ISteamClient_SteamClient013_GetISteamController_params { - struct u_iface *u_iface; - void /*ISteamController*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24435,8 +24435,8 @@ struct ISteamClient_SteamClient013_GetISteamController_params struct ISteamClient_SteamClient013_GetISteamUGC_params { - struct u_iface *u_iface; - void /*ISteamUGC*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24444,8 +24444,8 @@ struct ISteamClient_SteamClient013_GetISteamUGC_params struct ISteamClient_SteamClient013_GetISteamInventory_params { - struct u_iface *u_iface; - void *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24453,8 +24453,8 @@ struct ISteamClient_SteamClient013_GetISteamInventory_params struct ISteamClient_SteamClient013_GetISteamVideo_params { - struct u_iface *u_iface; - void *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24462,8 +24462,8 @@ struct ISteamClient_SteamClient013_GetISteamVideo_params struct ISteamClient_SteamClient013_GetISteamAppList_params { - struct u_iface *u_iface; - void /*ISteamAppList*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24471,27 +24471,27 @@ struct ISteamClient_SteamClient013_GetISteamAppList_params struct ISteamClient_SteamClient014_CreateSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamClient_SteamClient014_BReleaseSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient014_ConnectToGlobalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient014_CreateLocalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t *phSteamPipe; uint32_t eAccountType; @@ -24499,15 +24499,15 @@ struct ISteamClient_SteamClient014_CreateLocalUser_params struct ISteamClient_SteamClient014_ReleaseUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient014_GetISteamUser_params { - struct u_iface *u_iface; - void /*ISteamUser*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24515,8 +24515,8 @@ struct ISteamClient_SteamClient014_GetISteamUser_params struct ISteamClient_SteamClient014_GetISteamGameServer_params { - struct u_iface *u_iface; - void /*ISteamGameServer*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24524,15 +24524,15 @@ struct ISteamClient_SteamClient014_GetISteamGameServer_params struct ISteamClient_SteamClient014_SetLocalIPBinding_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIP; uint16_t usPort; }; struct ISteamClient_SteamClient014_GetISteamFriends_params { - struct u_iface *u_iface; - void /*ISteamFriends*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24540,16 +24540,16 @@ struct ISteamClient_SteamClient014_GetISteamFriends_params struct ISteamClient_SteamClient014_GetISteamUtils_params { - struct u_iface *u_iface; - void /*ISteamUtils*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamPipe; const char *pchVersion; }; struct ISteamClient_SteamClient014_GetISteamMatchmaking_params { - struct u_iface *u_iface; - void /*ISteamMatchmaking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24557,8 +24557,8 @@ struct ISteamClient_SteamClient014_GetISteamMatchmaking_params struct ISteamClient_SteamClient014_GetISteamMatchmakingServers_params { - struct u_iface *u_iface; - void /*ISteamMatchmakingServers*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24566,8 +24566,8 @@ struct ISteamClient_SteamClient014_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient014_GetISteamGenericInterface_params { - struct u_iface *u_iface; - void *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24575,8 +24575,8 @@ struct ISteamClient_SteamClient014_GetISteamGenericInterface_params struct ISteamClient_SteamClient014_GetISteamUserStats_params { - struct u_iface *u_iface; - void /*ISteamUserStats*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24584,8 +24584,8 @@ struct ISteamClient_SteamClient014_GetISteamUserStats_params struct ISteamClient_SteamClient014_GetISteamGameServerStats_params { - struct u_iface *u_iface; - void /*ISteamGameServerStats*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -24593,8 +24593,8 @@ struct ISteamClient_SteamClient014_GetISteamGameServerStats_params struct ISteamClient_SteamClient014_GetISteamApps_params { - struct u_iface *u_iface; - void /*ISteamApps*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24602,8 +24602,8 @@ struct ISteamClient_SteamClient014_GetISteamApps_params struct ISteamClient_SteamClient014_GetISteamNetworking_params { - struct u_iface *u_iface; - void /*ISteamNetworking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24611,8 +24611,8 @@ struct ISteamClient_SteamClient014_GetISteamNetworking_params struct ISteamClient_SteamClient014_GetISteamRemoteStorage_params { - struct u_iface *u_iface; - void /*ISteamRemoteStorage*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -24620,8 +24620,8 @@ struct ISteamClient_SteamClient014_GetISteamRemoteStorage_params struct ISteamClient_SteamClient014_GetISteamScreenshots_params { - struct u_iface *u_iface; - void /*ISteamScreenshots*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -24629,31 +24629,31 @@ struct ISteamClient_SteamClient014_GetISteamScreenshots_params struct ISteamClient_SteamClient014_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamClient_SteamClient014_GetIPCCallCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient014_SetWarningMessageHook_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamClient_SteamClient014_BShutdownIfAllPipesClosed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamClient_SteamClient014_GetISteamHTTP_params { - struct u_iface *u_iface; - void /*ISteamHTTP*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -24661,8 +24661,8 @@ struct ISteamClient_SteamClient014_GetISteamHTTP_params struct ISteamClient_SteamClient014_GetISteamUnifiedMessages_params { - struct u_iface *u_iface; - void /*ISteamUnifiedMessages*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -24670,8 +24670,8 @@ struct ISteamClient_SteamClient014_GetISteamUnifiedMessages_params struct ISteamClient_SteamClient014_GetISteamController_params { - struct u_iface *u_iface; - void /*ISteamController*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24679,8 +24679,8 @@ struct ISteamClient_SteamClient014_GetISteamController_params struct ISteamClient_SteamClient014_GetISteamUGC_params { - struct u_iface *u_iface; - void /*ISteamUGC*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24688,8 +24688,8 @@ struct ISteamClient_SteamClient014_GetISteamUGC_params struct ISteamClient_SteamClient014_GetISteamAppList_params { - struct u_iface *u_iface; - void /*ISteamAppList*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24697,8 +24697,8 @@ struct ISteamClient_SteamClient014_GetISteamAppList_params struct ISteamClient_SteamClient014_GetISteamMusic_params { - struct u_iface *u_iface; - void /*ISteamMusic*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -24706,27 +24706,27 @@ struct ISteamClient_SteamClient014_GetISteamMusic_params struct ISteamClient_SteamClient015_CreateSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamClient_SteamClient015_BReleaseSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient015_ConnectToGlobalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient015_CreateLocalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t *phSteamPipe; uint32_t eAccountType; @@ -24734,15 +24734,15 @@ struct ISteamClient_SteamClient015_CreateLocalUser_params struct ISteamClient_SteamClient015_ReleaseUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient015_GetISteamUser_params { - struct u_iface *u_iface; - void /*ISteamUser*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24750,8 +24750,8 @@ struct ISteamClient_SteamClient015_GetISteamUser_params struct ISteamClient_SteamClient015_GetISteamGameServer_params { - struct u_iface *u_iface; - void /*ISteamGameServer*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24759,15 +24759,15 @@ struct ISteamClient_SteamClient015_GetISteamGameServer_params struct ISteamClient_SteamClient015_SetLocalIPBinding_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIP; uint16_t usPort; }; struct ISteamClient_SteamClient015_GetISteamFriends_params { - struct u_iface *u_iface; - void /*ISteamFriends*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24775,16 +24775,16 @@ struct ISteamClient_SteamClient015_GetISteamFriends_params struct ISteamClient_SteamClient015_GetISteamUtils_params { - struct u_iface *u_iface; - void /*ISteamUtils*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamPipe; const char *pchVersion; }; struct ISteamClient_SteamClient015_GetISteamMatchmaking_params { - struct u_iface *u_iface; - void /*ISteamMatchmaking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24792,8 +24792,8 @@ struct ISteamClient_SteamClient015_GetISteamMatchmaking_params struct ISteamClient_SteamClient015_GetISteamMatchmakingServers_params { - struct u_iface *u_iface; - void /*ISteamMatchmakingServers*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24801,8 +24801,8 @@ struct ISteamClient_SteamClient015_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient015_GetISteamGenericInterface_params { - struct u_iface *u_iface; - void *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24810,8 +24810,8 @@ struct ISteamClient_SteamClient015_GetISteamGenericInterface_params struct ISteamClient_SteamClient015_GetISteamUserStats_params { - struct u_iface *u_iface; - void /*ISteamUserStats*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24819,8 +24819,8 @@ struct ISteamClient_SteamClient015_GetISteamUserStats_params struct ISteamClient_SteamClient015_GetISteamGameServerStats_params { - struct u_iface *u_iface; - void /*ISteamGameServerStats*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -24828,8 +24828,8 @@ struct ISteamClient_SteamClient015_GetISteamGameServerStats_params struct ISteamClient_SteamClient015_GetISteamApps_params { - struct u_iface *u_iface; - void /*ISteamApps*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24837,8 +24837,8 @@ struct ISteamClient_SteamClient015_GetISteamApps_params struct ISteamClient_SteamClient015_GetISteamNetworking_params { - struct u_iface *u_iface; - void /*ISteamNetworking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24846,8 +24846,8 @@ struct ISteamClient_SteamClient015_GetISteamNetworking_params struct ISteamClient_SteamClient015_GetISteamRemoteStorage_params { - struct u_iface *u_iface; - void /*ISteamRemoteStorage*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -24855,8 +24855,8 @@ struct ISteamClient_SteamClient015_GetISteamRemoteStorage_params struct ISteamClient_SteamClient015_GetISteamScreenshots_params { - struct u_iface *u_iface; - void /*ISteamScreenshots*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -24864,31 +24864,31 @@ struct ISteamClient_SteamClient015_GetISteamScreenshots_params struct ISteamClient_SteamClient015_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamClient_SteamClient015_GetIPCCallCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient015_SetWarningMessageHook_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamClient_SteamClient015_BShutdownIfAllPipesClosed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamClient_SteamClient015_GetISteamHTTP_params { - struct u_iface *u_iface; - void /*ISteamHTTP*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -24896,8 +24896,8 @@ struct ISteamClient_SteamClient015_GetISteamHTTP_params struct ISteamClient_SteamClient015_GetISteamUnifiedMessages_params { - struct u_iface *u_iface; - void /*ISteamUnifiedMessages*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -24905,8 +24905,8 @@ struct ISteamClient_SteamClient015_GetISteamUnifiedMessages_params struct ISteamClient_SteamClient015_GetISteamController_params { - struct u_iface *u_iface; - void /*ISteamController*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24914,8 +24914,8 @@ struct ISteamClient_SteamClient015_GetISteamController_params struct ISteamClient_SteamClient015_GetISteamUGC_params { - struct u_iface *u_iface; - void /*ISteamUGC*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24923,8 +24923,8 @@ struct ISteamClient_SteamClient015_GetISteamUGC_params struct ISteamClient_SteamClient015_GetISteamAppList_params { - struct u_iface *u_iface; - void /*ISteamAppList*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24932,8 +24932,8 @@ struct ISteamClient_SteamClient015_GetISteamAppList_params struct ISteamClient_SteamClient015_GetISteamMusic_params { - struct u_iface *u_iface; - void /*ISteamMusic*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -24941,8 +24941,8 @@ struct ISteamClient_SteamClient015_GetISteamMusic_params struct ISteamClient_SteamClient015_GetISteamMusicRemote_params { - struct u_iface *u_iface; - void /*ISteamMusicRemote*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -24950,27 +24950,27 @@ struct ISteamClient_SteamClient015_GetISteamMusicRemote_params struct ISteamClient_SteamClient016_CreateSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamClient_SteamClient016_BReleaseSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient016_ConnectToGlobalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient016_CreateLocalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t *phSteamPipe; uint32_t eAccountType; @@ -24978,15 +24978,15 @@ struct ISteamClient_SteamClient016_CreateLocalUser_params struct ISteamClient_SteamClient016_ReleaseUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient016_GetISteamUser_params { - struct u_iface *u_iface; - void /*ISteamUser*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -24994,8 +24994,8 @@ struct ISteamClient_SteamClient016_GetISteamUser_params struct ISteamClient_SteamClient016_GetISteamGameServer_params { - struct u_iface *u_iface; - void /*ISteamGameServer*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25003,15 +25003,15 @@ struct ISteamClient_SteamClient016_GetISteamGameServer_params struct ISteamClient_SteamClient016_SetLocalIPBinding_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIP; uint16_t usPort; }; struct ISteamClient_SteamClient016_GetISteamFriends_params { - struct u_iface *u_iface; - void /*ISteamFriends*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25019,16 +25019,16 @@ struct ISteamClient_SteamClient016_GetISteamFriends_params struct ISteamClient_SteamClient016_GetISteamUtils_params { - struct u_iface *u_iface; - void /*ISteamUtils*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamPipe; const char *pchVersion; }; struct ISteamClient_SteamClient016_GetISteamMatchmaking_params { - struct u_iface *u_iface; - void /*ISteamMatchmaking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25036,8 +25036,8 @@ struct ISteamClient_SteamClient016_GetISteamMatchmaking_params struct ISteamClient_SteamClient016_GetISteamMatchmakingServers_params { - struct u_iface *u_iface; - void /*ISteamMatchmakingServers*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25045,8 +25045,8 @@ struct ISteamClient_SteamClient016_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient016_GetISteamGenericInterface_params { - struct u_iface *u_iface; - void *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25054,8 +25054,8 @@ struct ISteamClient_SteamClient016_GetISteamGenericInterface_params struct ISteamClient_SteamClient016_GetISteamUserStats_params { - struct u_iface *u_iface; - void /*ISteamUserStats*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25063,8 +25063,8 @@ struct ISteamClient_SteamClient016_GetISteamUserStats_params struct ISteamClient_SteamClient016_GetISteamGameServerStats_params { - struct u_iface *u_iface; - void /*ISteamGameServerStats*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25072,8 +25072,8 @@ struct ISteamClient_SteamClient016_GetISteamGameServerStats_params struct ISteamClient_SteamClient016_GetISteamApps_params { - struct u_iface *u_iface; - void /*ISteamApps*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25081,8 +25081,8 @@ struct ISteamClient_SteamClient016_GetISteamApps_params struct ISteamClient_SteamClient016_GetISteamNetworking_params { - struct u_iface *u_iface; - void /*ISteamNetworking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25090,8 +25090,8 @@ struct ISteamClient_SteamClient016_GetISteamNetworking_params struct ISteamClient_SteamClient016_GetISteamRemoteStorage_params { - struct u_iface *u_iface; - void /*ISteamRemoteStorage*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25099,8 +25099,8 @@ struct ISteamClient_SteamClient016_GetISteamRemoteStorage_params struct ISteamClient_SteamClient016_GetISteamScreenshots_params { - struct u_iface *u_iface; - void /*ISteamScreenshots*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25108,31 +25108,31 @@ struct ISteamClient_SteamClient016_GetISteamScreenshots_params struct ISteamClient_SteamClient016_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamClient_SteamClient016_GetIPCCallCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient016_SetWarningMessageHook_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamClient_SteamClient016_BShutdownIfAllPipesClosed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamClient_SteamClient016_GetISteamHTTP_params { - struct u_iface *u_iface; - void /*ISteamHTTP*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25140,8 +25140,8 @@ struct ISteamClient_SteamClient016_GetISteamHTTP_params struct ISteamClient_SteamClient016_GetISteamUnifiedMessages_params { - struct u_iface *u_iface; - void /*ISteamUnifiedMessages*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25149,8 +25149,8 @@ struct ISteamClient_SteamClient016_GetISteamUnifiedMessages_params struct ISteamClient_SteamClient016_GetISteamController_params { - struct u_iface *u_iface; - void /*ISteamController*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25158,8 +25158,8 @@ struct ISteamClient_SteamClient016_GetISteamController_params struct ISteamClient_SteamClient016_GetISteamUGC_params { - struct u_iface *u_iface; - void /*ISteamUGC*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25167,8 +25167,8 @@ struct ISteamClient_SteamClient016_GetISteamUGC_params struct ISteamClient_SteamClient016_GetISteamAppList_params { - struct u_iface *u_iface; - void /*ISteamAppList*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25176,8 +25176,8 @@ struct ISteamClient_SteamClient016_GetISteamAppList_params struct ISteamClient_SteamClient016_GetISteamMusic_params { - struct u_iface *u_iface; - void /*ISteamMusic*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25185,8 +25185,8 @@ struct ISteamClient_SteamClient016_GetISteamMusic_params struct ISteamClient_SteamClient016_GetISteamMusicRemote_params { - struct u_iface *u_iface; - void /*ISteamMusicRemote*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25194,8 +25194,8 @@ struct ISteamClient_SteamClient016_GetISteamMusicRemote_params struct ISteamClient_SteamClient016_GetISteamHTMLSurface_params { - struct u_iface *u_iface; - void /*ISteamHTMLSurface*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25203,45 +25203,45 @@ struct ISteamClient_SteamClient016_GetISteamHTMLSurface_params struct ISteamClient_SteamClient016_Set_SteamAPI_CPostAPIResultInProcess_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL func)(uint64_t, void *, uint32_t, int32_t); }; struct ISteamClient_SteamClient016_Remove_SteamAPI_CPostAPIResultInProcess_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL func)(uint64_t, void *, uint32_t, int32_t); }; struct ISteamClient_SteamClient016_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t (*W_CDECL func)(int32_t); }; struct ISteamClient_SteamClient017_CreateSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamClient_SteamClient017_BReleaseSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient017_ConnectToGlobalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient017_CreateLocalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t *phSteamPipe; uint32_t eAccountType; @@ -25249,15 +25249,15 @@ struct ISteamClient_SteamClient017_CreateLocalUser_params struct ISteamClient_SteamClient017_ReleaseUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient017_GetISteamUser_params { - struct u_iface *u_iface; - void /*ISteamUser*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25265,8 +25265,8 @@ struct ISteamClient_SteamClient017_GetISteamUser_params struct ISteamClient_SteamClient017_GetISteamGameServer_params { - struct u_iface *u_iface; - void /*ISteamGameServer*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25274,15 +25274,15 @@ struct ISteamClient_SteamClient017_GetISteamGameServer_params struct ISteamClient_SteamClient017_SetLocalIPBinding_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIP; uint16_t usPort; }; struct ISteamClient_SteamClient017_GetISteamFriends_params { - struct u_iface *u_iface; - void /*ISteamFriends*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25290,16 +25290,16 @@ struct ISteamClient_SteamClient017_GetISteamFriends_params struct ISteamClient_SteamClient017_GetISteamUtils_params { - struct u_iface *u_iface; - void /*ISteamUtils*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamPipe; const char *pchVersion; }; struct ISteamClient_SteamClient017_GetISteamMatchmaking_params { - struct u_iface *u_iface; - void /*ISteamMatchmaking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25307,8 +25307,8 @@ struct ISteamClient_SteamClient017_GetISteamMatchmaking_params struct ISteamClient_SteamClient017_GetISteamMatchmakingServers_params { - struct u_iface *u_iface; - void /*ISteamMatchmakingServers*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25316,8 +25316,8 @@ struct ISteamClient_SteamClient017_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient017_GetISteamGenericInterface_params { - struct u_iface *u_iface; - void *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25325,8 +25325,8 @@ struct ISteamClient_SteamClient017_GetISteamGenericInterface_params struct ISteamClient_SteamClient017_GetISteamUserStats_params { - struct u_iface *u_iface; - void /*ISteamUserStats*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25334,8 +25334,8 @@ struct ISteamClient_SteamClient017_GetISteamUserStats_params struct ISteamClient_SteamClient017_GetISteamGameServerStats_params { - struct u_iface *u_iface; - void /*ISteamGameServerStats*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25343,8 +25343,8 @@ struct ISteamClient_SteamClient017_GetISteamGameServerStats_params struct ISteamClient_SteamClient017_GetISteamApps_params { - struct u_iface *u_iface; - void /*ISteamApps*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25352,8 +25352,8 @@ struct ISteamClient_SteamClient017_GetISteamApps_params struct ISteamClient_SteamClient017_GetISteamNetworking_params { - struct u_iface *u_iface; - void /*ISteamNetworking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25361,8 +25361,8 @@ struct ISteamClient_SteamClient017_GetISteamNetworking_params struct ISteamClient_SteamClient017_GetISteamRemoteStorage_params { - struct u_iface *u_iface; - void /*ISteamRemoteStorage*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25370,8 +25370,8 @@ struct ISteamClient_SteamClient017_GetISteamRemoteStorage_params struct ISteamClient_SteamClient017_GetISteamScreenshots_params { - struct u_iface *u_iface; - void /*ISteamScreenshots*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25379,31 +25379,31 @@ struct ISteamClient_SteamClient017_GetISteamScreenshots_params struct ISteamClient_SteamClient017_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamClient_SteamClient017_GetIPCCallCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient017_SetWarningMessageHook_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamClient_SteamClient017_BShutdownIfAllPipesClosed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamClient_SteamClient017_GetISteamHTTP_params { - struct u_iface *u_iface; - void /*ISteamHTTP*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25411,8 +25411,8 @@ struct ISteamClient_SteamClient017_GetISteamHTTP_params struct ISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMessages_params { - struct u_iface *u_iface; - void *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25420,8 +25420,8 @@ struct ISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMessages_params struct ISteamClient_SteamClient017_GetISteamController_params { - struct u_iface *u_iface; - void /*ISteamController*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25429,8 +25429,8 @@ struct ISteamClient_SteamClient017_GetISteamController_params struct ISteamClient_SteamClient017_GetISteamUGC_params { - struct u_iface *u_iface; - void /*ISteamUGC*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25438,8 +25438,8 @@ struct ISteamClient_SteamClient017_GetISteamUGC_params struct ISteamClient_SteamClient017_GetISteamAppList_params { - struct u_iface *u_iface; - void /*ISteamAppList*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25447,8 +25447,8 @@ struct ISteamClient_SteamClient017_GetISteamAppList_params struct ISteamClient_SteamClient017_GetISteamMusic_params { - struct u_iface *u_iface; - void /*ISteamMusic*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25456,8 +25456,8 @@ struct ISteamClient_SteamClient017_GetISteamMusic_params struct ISteamClient_SteamClient017_GetISteamMusicRemote_params { - struct u_iface *u_iface; - void /*ISteamMusicRemote*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25465,8 +25465,8 @@ struct ISteamClient_SteamClient017_GetISteamMusicRemote_params struct ISteamClient_SteamClient017_GetISteamHTMLSurface_params { - struct u_iface *u_iface; - void /*ISteamHTMLSurface*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25474,26 +25474,26 @@ struct ISteamClient_SteamClient017_GetISteamHTMLSurface_params struct ISteamClient_SteamClient017_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL _a)(void); }; struct ISteamClient_SteamClient017_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL _a)(void); }; struct ISteamClient_SteamClient017_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t (*W_CDECL func)(int32_t); }; struct ISteamClient_SteamClient017_GetISteamInventory_params { - struct u_iface *u_iface; - void /*ISteamInventory*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25501,8 +25501,8 @@ struct ISteamClient_SteamClient017_GetISteamInventory_params struct ISteamClient_SteamClient017_GetISteamVideo_params { - struct u_iface *u_iface; - void /*ISteamVideo*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25510,8 +25510,8 @@ struct ISteamClient_SteamClient017_GetISteamVideo_params struct ISteamClient_SteamClient017_GetISteamParentalSettings_params { - struct u_iface *u_iface; - void /*ISteamParentalSettings*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25519,27 +25519,27 @@ struct ISteamClient_SteamClient017_GetISteamParentalSettings_params struct ISteamClient_SteamClient018_CreateSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamClient_SteamClient018_BReleaseSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient018_ConnectToGlobalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient018_CreateLocalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t *phSteamPipe; uint32_t eAccountType; @@ -25547,15 +25547,15 @@ struct ISteamClient_SteamClient018_CreateLocalUser_params struct ISteamClient_SteamClient018_ReleaseUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient018_GetISteamUser_params { - struct u_iface *u_iface; - void /*ISteamUser*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25563,8 +25563,8 @@ struct ISteamClient_SteamClient018_GetISteamUser_params struct ISteamClient_SteamClient018_GetISteamGameServer_params { - struct u_iface *u_iface; - void /*ISteamGameServer*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25572,15 +25572,15 @@ struct ISteamClient_SteamClient018_GetISteamGameServer_params struct ISteamClient_SteamClient018_SetLocalIPBinding_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIP; uint16_t usPort; }; struct ISteamClient_SteamClient018_GetISteamFriends_params { - struct u_iface *u_iface; - void /*ISteamFriends*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25588,16 +25588,16 @@ struct ISteamClient_SteamClient018_GetISteamFriends_params struct ISteamClient_SteamClient018_GetISteamUtils_params { - struct u_iface *u_iface; - void /*ISteamUtils*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamPipe; const char *pchVersion; }; struct ISteamClient_SteamClient018_GetISteamMatchmaking_params { - struct u_iface *u_iface; - void /*ISteamMatchmaking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25605,8 +25605,8 @@ struct ISteamClient_SteamClient018_GetISteamMatchmaking_params struct ISteamClient_SteamClient018_GetISteamMatchmakingServers_params { - struct u_iface *u_iface; - void /*ISteamMatchmakingServers*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25614,8 +25614,8 @@ struct ISteamClient_SteamClient018_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient018_GetISteamGenericInterface_params { - struct u_iface *u_iface; - void *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25623,8 +25623,8 @@ struct ISteamClient_SteamClient018_GetISteamGenericInterface_params struct ISteamClient_SteamClient018_GetISteamUserStats_params { - struct u_iface *u_iface; - void /*ISteamUserStats*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25632,8 +25632,8 @@ struct ISteamClient_SteamClient018_GetISteamUserStats_params struct ISteamClient_SteamClient018_GetISteamGameServerStats_params { - struct u_iface *u_iface; - void /*ISteamGameServerStats*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25641,8 +25641,8 @@ struct ISteamClient_SteamClient018_GetISteamGameServerStats_params struct ISteamClient_SteamClient018_GetISteamApps_params { - struct u_iface *u_iface; - void /*ISteamApps*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25650,8 +25650,8 @@ struct ISteamClient_SteamClient018_GetISteamApps_params struct ISteamClient_SteamClient018_GetISteamNetworking_params { - struct u_iface *u_iface; - void /*ISteamNetworking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25659,8 +25659,8 @@ struct ISteamClient_SteamClient018_GetISteamNetworking_params struct ISteamClient_SteamClient018_GetISteamRemoteStorage_params { - struct u_iface *u_iface; - void /*ISteamRemoteStorage*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25668,8 +25668,8 @@ struct ISteamClient_SteamClient018_GetISteamRemoteStorage_params struct ISteamClient_SteamClient018_GetISteamScreenshots_params { - struct u_iface *u_iface; - void /*ISteamScreenshots*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25677,8 +25677,8 @@ struct ISteamClient_SteamClient018_GetISteamScreenshots_params struct ISteamClient_SteamClient018_GetISteamGameSearch_params { - struct u_iface *u_iface; - void /*ISteamGameSearch*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25686,31 +25686,31 @@ struct ISteamClient_SteamClient018_GetISteamGameSearch_params struct ISteamClient_SteamClient018_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamClient_SteamClient018_GetIPCCallCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient018_SetWarningMessageHook_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamClient_SteamClient018_BShutdownIfAllPipesClosed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamClient_SteamClient018_GetISteamHTTP_params { - struct u_iface *u_iface; - void /*ISteamHTTP*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25718,8 +25718,8 @@ struct ISteamClient_SteamClient018_GetISteamHTTP_params struct ISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMessages_params { - struct u_iface *u_iface; - void *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25727,8 +25727,8 @@ struct ISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMessages_params struct ISteamClient_SteamClient018_GetISteamController_params { - struct u_iface *u_iface; - void /*ISteamController*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25736,8 +25736,8 @@ struct ISteamClient_SteamClient018_GetISteamController_params struct ISteamClient_SteamClient018_GetISteamUGC_params { - struct u_iface *u_iface; - void /*ISteamUGC*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25745,8 +25745,8 @@ struct ISteamClient_SteamClient018_GetISteamUGC_params struct ISteamClient_SteamClient018_GetISteamAppList_params { - struct u_iface *u_iface; - void /*ISteamAppList*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25754,8 +25754,8 @@ struct ISteamClient_SteamClient018_GetISteamAppList_params struct ISteamClient_SteamClient018_GetISteamMusic_params { - struct u_iface *u_iface; - void /*ISteamMusic*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25763,8 +25763,8 @@ struct ISteamClient_SteamClient018_GetISteamMusic_params struct ISteamClient_SteamClient018_GetISteamMusicRemote_params { - struct u_iface *u_iface; - void /*ISteamMusicRemote*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25772,8 +25772,8 @@ struct ISteamClient_SteamClient018_GetISteamMusicRemote_params struct ISteamClient_SteamClient018_GetISteamHTMLSurface_params { - struct u_iface *u_iface; - void /*ISteamHTMLSurface*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25781,26 +25781,26 @@ struct ISteamClient_SteamClient018_GetISteamHTMLSurface_params struct ISteamClient_SteamClient018_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL _a)(void); }; struct ISteamClient_SteamClient018_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL _a)(void); }; struct ISteamClient_SteamClient018_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t (*W_CDECL func)(int32_t); }; struct ISteamClient_SteamClient018_GetISteamInventory_params { - struct u_iface *u_iface; - void /*ISteamInventory*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25808,8 +25808,8 @@ struct ISteamClient_SteamClient018_GetISteamInventory_params struct ISteamClient_SteamClient018_GetISteamVideo_params { - struct u_iface *u_iface; - void /*ISteamVideo*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25817,8 +25817,8 @@ struct ISteamClient_SteamClient018_GetISteamVideo_params struct ISteamClient_SteamClient018_GetISteamParentalSettings_params { - struct u_iface *u_iface; - void /*ISteamParentalSettings*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25826,8 +25826,8 @@ struct ISteamClient_SteamClient018_GetISteamParentalSettings_params struct ISteamClient_SteamClient018_GetISteamInput_params { - struct u_iface *u_iface; - void /*ISteamInput*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25835,8 +25835,8 @@ struct ISteamClient_SteamClient018_GetISteamInput_params struct ISteamClient_SteamClient018_GetISteamParties_params { - struct u_iface *u_iface; - void /*ISteamParties*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25844,27 +25844,27 @@ struct ISteamClient_SteamClient018_GetISteamParties_params struct ISteamClient_SteamClient019_CreateSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamClient_SteamClient019_BReleaseSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient019_ConnectToGlobalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient019_CreateLocalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t *phSteamPipe; uint32_t eAccountType; @@ -25872,15 +25872,15 @@ struct ISteamClient_SteamClient019_CreateLocalUser_params struct ISteamClient_SteamClient019_ReleaseUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient019_GetISteamUser_params { - struct u_iface *u_iface; - void /*ISteamUser*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25888,8 +25888,8 @@ struct ISteamClient_SteamClient019_GetISteamUser_params struct ISteamClient_SteamClient019_GetISteamGameServer_params { - struct u_iface *u_iface; - void /*ISteamGameServer*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25897,15 +25897,15 @@ struct ISteamClient_SteamClient019_GetISteamGameServer_params struct ISteamClient_SteamClient019_SetLocalIPBinding_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIP; uint16_t usPort; }; struct ISteamClient_SteamClient019_GetISteamFriends_params { - struct u_iface *u_iface; - void /*ISteamFriends*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25913,16 +25913,16 @@ struct ISteamClient_SteamClient019_GetISteamFriends_params struct ISteamClient_SteamClient019_GetISteamUtils_params { - struct u_iface *u_iface; - void /*ISteamUtils*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamPipe; const char *pchVersion; }; struct ISteamClient_SteamClient019_GetISteamMatchmaking_params { - struct u_iface *u_iface; - void /*ISteamMatchmaking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25930,8 +25930,8 @@ struct ISteamClient_SteamClient019_GetISteamMatchmaking_params struct ISteamClient_SteamClient019_GetISteamMatchmakingServers_params { - struct u_iface *u_iface; - void /*ISteamMatchmakingServers*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25939,8 +25939,8 @@ struct ISteamClient_SteamClient019_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient019_GetISteamGenericInterface_params { - struct u_iface *u_iface; - void *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25948,8 +25948,8 @@ struct ISteamClient_SteamClient019_GetISteamGenericInterface_params struct ISteamClient_SteamClient019_GetISteamUserStats_params { - struct u_iface *u_iface; - void /*ISteamUserStats*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25957,8 +25957,8 @@ struct ISteamClient_SteamClient019_GetISteamUserStats_params struct ISteamClient_SteamClient019_GetISteamGameServerStats_params { - struct u_iface *u_iface; - void /*ISteamGameServerStats*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25966,8 +25966,8 @@ struct ISteamClient_SteamClient019_GetISteamGameServerStats_params struct ISteamClient_SteamClient019_GetISteamApps_params { - struct u_iface *u_iface; - void /*ISteamApps*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25975,8 +25975,8 @@ struct ISteamClient_SteamClient019_GetISteamApps_params struct ISteamClient_SteamClient019_GetISteamNetworking_params { - struct u_iface *u_iface; - void /*ISteamNetworking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -25984,8 +25984,8 @@ struct ISteamClient_SteamClient019_GetISteamNetworking_params struct ISteamClient_SteamClient019_GetISteamRemoteStorage_params { - struct u_iface *u_iface; - void /*ISteamRemoteStorage*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -25993,8 +25993,8 @@ struct ISteamClient_SteamClient019_GetISteamRemoteStorage_params struct ISteamClient_SteamClient019_GetISteamScreenshots_params { - struct u_iface *u_iface; - void /*ISteamScreenshots*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26002,8 +26002,8 @@ struct ISteamClient_SteamClient019_GetISteamScreenshots_params struct ISteamClient_SteamClient019_GetISteamGameSearch_params { - struct u_iface *u_iface; - void /*ISteamGameSearch*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26011,31 +26011,31 @@ struct ISteamClient_SteamClient019_GetISteamGameSearch_params struct ISteamClient_SteamClient019_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamClient_SteamClient019_GetIPCCallCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient019_SetWarningMessageHook_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamClient_SteamClient019_BShutdownIfAllPipesClosed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamClient_SteamClient019_GetISteamHTTP_params { - struct u_iface *u_iface; - void /*ISteamHTTP*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26043,8 +26043,8 @@ struct ISteamClient_SteamClient019_GetISteamHTTP_params struct ISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMessages_params { - struct u_iface *u_iface; - void *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26052,8 +26052,8 @@ struct ISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMessages_params struct ISteamClient_SteamClient019_GetISteamController_params { - struct u_iface *u_iface; - void /*ISteamController*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26061,8 +26061,8 @@ struct ISteamClient_SteamClient019_GetISteamController_params struct ISteamClient_SteamClient019_GetISteamUGC_params { - struct u_iface *u_iface; - void /*ISteamUGC*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26070,8 +26070,8 @@ struct ISteamClient_SteamClient019_GetISteamUGC_params struct ISteamClient_SteamClient019_GetISteamAppList_params { - struct u_iface *u_iface; - void /*ISteamAppList*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26079,8 +26079,8 @@ struct ISteamClient_SteamClient019_GetISteamAppList_params struct ISteamClient_SteamClient019_GetISteamMusic_params { - struct u_iface *u_iface; - void /*ISteamMusic*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26088,8 +26088,8 @@ struct ISteamClient_SteamClient019_GetISteamMusic_params struct ISteamClient_SteamClient019_GetISteamMusicRemote_params { - struct u_iface *u_iface; - void /*ISteamMusicRemote*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26097,8 +26097,8 @@ struct ISteamClient_SteamClient019_GetISteamMusicRemote_params struct ISteamClient_SteamClient019_GetISteamHTMLSurface_params { - struct u_iface *u_iface; - void /*ISteamHTMLSurface*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26106,26 +26106,26 @@ struct ISteamClient_SteamClient019_GetISteamHTMLSurface_params struct ISteamClient_SteamClient019_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL _a)(void); }; struct ISteamClient_SteamClient019_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL _a)(void); }; struct ISteamClient_SteamClient019_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t (*W_CDECL func)(int32_t); }; struct ISteamClient_SteamClient019_GetISteamInventory_params { - struct u_iface *u_iface; - void /*ISteamInventory*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26133,8 +26133,8 @@ struct ISteamClient_SteamClient019_GetISteamInventory_params struct ISteamClient_SteamClient019_GetISteamVideo_params { - struct u_iface *u_iface; - void /*ISteamVideo*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26142,8 +26142,8 @@ struct ISteamClient_SteamClient019_GetISteamVideo_params struct ISteamClient_SteamClient019_GetISteamParentalSettings_params { - struct u_iface *u_iface; - void /*ISteamParentalSettings*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26151,8 +26151,8 @@ struct ISteamClient_SteamClient019_GetISteamParentalSettings_params struct ISteamClient_SteamClient019_GetISteamInput_params { - struct u_iface *u_iface; - void /*ISteamInput*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26160,8 +26160,8 @@ struct ISteamClient_SteamClient019_GetISteamInput_params struct ISteamClient_SteamClient019_GetISteamParties_params { - struct u_iface *u_iface; - void /*ISteamParties*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26169,8 +26169,8 @@ struct ISteamClient_SteamClient019_GetISteamParties_params struct ISteamClient_SteamClient019_GetISteamRemotePlay_params { - struct u_iface *u_iface; - void /*ISteamRemotePlay*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26178,27 +26178,27 @@ struct ISteamClient_SteamClient019_GetISteamRemotePlay_params struct ISteamClient_SteamClient020_CreateSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamClient_SteamClient020_BReleaseSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient020_ConnectToGlobalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient020_CreateLocalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t *phSteamPipe; uint32_t eAccountType; @@ -26206,15 +26206,15 @@ struct ISteamClient_SteamClient020_CreateLocalUser_params struct ISteamClient_SteamClient020_ReleaseUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient020_GetISteamUser_params { - struct u_iface *u_iface; - void /*ISteamUser*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26222,8 +26222,8 @@ struct ISteamClient_SteamClient020_GetISteamUser_params struct ISteamClient_SteamClient020_GetISteamGameServer_params { - struct u_iface *u_iface; - void /*ISteamGameServer*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26231,15 +26231,15 @@ struct ISteamClient_SteamClient020_GetISteamGameServer_params struct ISteamClient_SteamClient020_SetLocalIPBinding_params { - struct u_iface *u_iface; + struct u_iface u_iface; const SteamIPAddress_t *unIP; uint16_t usPort; }; struct ISteamClient_SteamClient020_GetISteamFriends_params { - struct u_iface *u_iface; - void /*ISteamFriends*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26247,16 +26247,16 @@ struct ISteamClient_SteamClient020_GetISteamFriends_params struct ISteamClient_SteamClient020_GetISteamUtils_params { - struct u_iface *u_iface; - void /*ISteamUtils*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamPipe; const char *pchVersion; }; struct ISteamClient_SteamClient020_GetISteamMatchmaking_params { - struct u_iface *u_iface; - void /*ISteamMatchmaking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26264,8 +26264,8 @@ struct ISteamClient_SteamClient020_GetISteamMatchmaking_params struct ISteamClient_SteamClient020_GetISteamMatchmakingServers_params { - struct u_iface *u_iface; - void /*ISteamMatchmakingServers*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26273,8 +26273,8 @@ struct ISteamClient_SteamClient020_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient020_GetISteamGenericInterface_params { - struct u_iface *u_iface; - void *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26282,8 +26282,8 @@ struct ISteamClient_SteamClient020_GetISteamGenericInterface_params struct ISteamClient_SteamClient020_GetISteamUserStats_params { - struct u_iface *u_iface; - void /*ISteamUserStats*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26291,8 +26291,8 @@ struct ISteamClient_SteamClient020_GetISteamUserStats_params struct ISteamClient_SteamClient020_GetISteamGameServerStats_params { - struct u_iface *u_iface; - void /*ISteamGameServerStats*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26300,8 +26300,8 @@ struct ISteamClient_SteamClient020_GetISteamGameServerStats_params struct ISteamClient_SteamClient020_GetISteamApps_params { - struct u_iface *u_iface; - void /*ISteamApps*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26309,8 +26309,8 @@ struct ISteamClient_SteamClient020_GetISteamApps_params struct ISteamClient_SteamClient020_GetISteamNetworking_params { - struct u_iface *u_iface; - void /*ISteamNetworking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26318,8 +26318,8 @@ struct ISteamClient_SteamClient020_GetISteamNetworking_params struct ISteamClient_SteamClient020_GetISteamRemoteStorage_params { - struct u_iface *u_iface; - void /*ISteamRemoteStorage*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26327,8 +26327,8 @@ struct ISteamClient_SteamClient020_GetISteamRemoteStorage_params struct ISteamClient_SteamClient020_GetISteamScreenshots_params { - struct u_iface *u_iface; - void /*ISteamScreenshots*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26336,8 +26336,8 @@ struct ISteamClient_SteamClient020_GetISteamScreenshots_params struct ISteamClient_SteamClient020_GetISteamGameSearch_params { - struct u_iface *u_iface; - void /*ISteamGameSearch*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26345,31 +26345,31 @@ struct ISteamClient_SteamClient020_GetISteamGameSearch_params struct ISteamClient_SteamClient020_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamClient_SteamClient020_GetIPCCallCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient020_SetWarningMessageHook_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamClient_SteamClient020_BShutdownIfAllPipesClosed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamClient_SteamClient020_GetISteamHTTP_params { - struct u_iface *u_iface; - void /*ISteamHTTP*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26377,8 +26377,8 @@ struct ISteamClient_SteamClient020_GetISteamHTTP_params struct ISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMessages_params { - struct u_iface *u_iface; - void *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26386,8 +26386,8 @@ struct ISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMessages_params struct ISteamClient_SteamClient020_GetISteamController_params { - struct u_iface *u_iface; - void /*ISteamController*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26395,8 +26395,8 @@ struct ISteamClient_SteamClient020_GetISteamController_params struct ISteamClient_SteamClient020_GetISteamUGC_params { - struct u_iface *u_iface; - void /*ISteamUGC*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26404,8 +26404,8 @@ struct ISteamClient_SteamClient020_GetISteamUGC_params struct ISteamClient_SteamClient020_GetISteamAppList_params { - struct u_iface *u_iface; - void /*ISteamAppList*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26413,8 +26413,8 @@ struct ISteamClient_SteamClient020_GetISteamAppList_params struct ISteamClient_SteamClient020_GetISteamMusic_params { - struct u_iface *u_iface; - void /*ISteamMusic*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26422,8 +26422,8 @@ struct ISteamClient_SteamClient020_GetISteamMusic_params struct ISteamClient_SteamClient020_GetISteamMusicRemote_params { - struct u_iface *u_iface; - void /*ISteamMusicRemote*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26431,8 +26431,8 @@ struct ISteamClient_SteamClient020_GetISteamMusicRemote_params struct ISteamClient_SteamClient020_GetISteamHTMLSurface_params { - struct u_iface *u_iface; - void /*ISteamHTMLSurface*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26440,26 +26440,26 @@ struct ISteamClient_SteamClient020_GetISteamHTMLSurface_params struct ISteamClient_SteamClient020_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL _a)(void); }; struct ISteamClient_SteamClient020_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL _a)(void); }; struct ISteamClient_SteamClient020_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t (*W_CDECL func)(int32_t); }; struct ISteamClient_SteamClient020_GetISteamInventory_params { - struct u_iface *u_iface; - void /*ISteamInventory*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26467,8 +26467,8 @@ struct ISteamClient_SteamClient020_GetISteamInventory_params struct ISteamClient_SteamClient020_GetISteamVideo_params { - struct u_iface *u_iface; - void /*ISteamVideo*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26476,8 +26476,8 @@ struct ISteamClient_SteamClient020_GetISteamVideo_params struct ISteamClient_SteamClient020_GetISteamParentalSettings_params { - struct u_iface *u_iface; - void /*ISteamParentalSettings*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26485,8 +26485,8 @@ struct ISteamClient_SteamClient020_GetISteamParentalSettings_params struct ISteamClient_SteamClient020_GetISteamInput_params { - struct u_iface *u_iface; - void /*ISteamInput*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26494,8 +26494,8 @@ struct ISteamClient_SteamClient020_GetISteamInput_params struct ISteamClient_SteamClient020_GetISteamParties_params { - struct u_iface *u_iface; - void /*ISteamParties*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26503,8 +26503,8 @@ struct ISteamClient_SteamClient020_GetISteamParties_params struct ISteamClient_SteamClient020_GetISteamRemotePlay_params { - struct u_iface *u_iface; - void /*ISteamRemotePlay*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26512,32 +26512,32 @@ struct ISteamClient_SteamClient020_GetISteamRemotePlay_params struct ISteamClient_SteamClient020_DestroyAllInterfaces_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamClient_SteamClient021_CreateSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamClient_SteamClient021_BReleaseSteamPipe_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient021_ConnectToGlobalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient021_CreateLocalUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t *phSteamPipe; uint32_t eAccountType; @@ -26545,15 +26545,15 @@ struct ISteamClient_SteamClient021_CreateLocalUser_params struct ISteamClient_SteamClient021_ReleaseUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient021_GetISteamUser_params { - struct u_iface *u_iface; - void /*ISteamUser*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26561,8 +26561,8 @@ struct ISteamClient_SteamClient021_GetISteamUser_params struct ISteamClient_SteamClient021_GetISteamGameServer_params { - struct u_iface *u_iface; - void /*ISteamGameServer*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26570,15 +26570,15 @@ struct ISteamClient_SteamClient021_GetISteamGameServer_params struct ISteamClient_SteamClient021_SetLocalIPBinding_params { - struct u_iface *u_iface; + struct u_iface u_iface; const SteamIPAddress_t *unIP; uint16_t usPort; }; struct ISteamClient_SteamClient021_GetISteamFriends_params { - struct u_iface *u_iface; - void /*ISteamFriends*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26586,16 +26586,16 @@ struct ISteamClient_SteamClient021_GetISteamFriends_params struct ISteamClient_SteamClient021_GetISteamUtils_params { - struct u_iface *u_iface; - void /*ISteamUtils*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamPipe; const char *pchVersion; }; struct ISteamClient_SteamClient021_GetISteamMatchmaking_params { - struct u_iface *u_iface; - void /*ISteamMatchmaking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26603,8 +26603,8 @@ struct ISteamClient_SteamClient021_GetISteamMatchmaking_params struct ISteamClient_SteamClient021_GetISteamMatchmakingServers_params { - struct u_iface *u_iface; - void /*ISteamMatchmakingServers*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26612,8 +26612,8 @@ struct ISteamClient_SteamClient021_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient021_GetISteamGenericInterface_params { - struct u_iface *u_iface; - void *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26621,8 +26621,8 @@ struct ISteamClient_SteamClient021_GetISteamGenericInterface_params struct ISteamClient_SteamClient021_GetISteamUserStats_params { - struct u_iface *u_iface; - void /*ISteamUserStats*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26630,8 +26630,8 @@ struct ISteamClient_SteamClient021_GetISteamUserStats_params struct ISteamClient_SteamClient021_GetISteamGameServerStats_params { - struct u_iface *u_iface; - void /*ISteamGameServerStats*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26639,8 +26639,8 @@ struct ISteamClient_SteamClient021_GetISteamGameServerStats_params struct ISteamClient_SteamClient021_GetISteamApps_params { - struct u_iface *u_iface; - void /*ISteamApps*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26648,8 +26648,8 @@ struct ISteamClient_SteamClient021_GetISteamApps_params struct ISteamClient_SteamClient021_GetISteamNetworking_params { - struct u_iface *u_iface; - void /*ISteamNetworking*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26657,8 +26657,8 @@ struct ISteamClient_SteamClient021_GetISteamNetworking_params struct ISteamClient_SteamClient021_GetISteamRemoteStorage_params { - struct u_iface *u_iface; - void /*ISteamRemoteStorage*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26666,8 +26666,8 @@ struct ISteamClient_SteamClient021_GetISteamRemoteStorage_params struct ISteamClient_SteamClient021_GetISteamScreenshots_params { - struct u_iface *u_iface; - void /*ISteamScreenshots*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26675,8 +26675,8 @@ struct ISteamClient_SteamClient021_GetISteamScreenshots_params struct ISteamClient_SteamClient021_GetISteamGameSearch_params { - struct u_iface *u_iface; - void /*ISteamGameSearch*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26684,31 +26684,31 @@ struct ISteamClient_SteamClient021_GetISteamGameSearch_params struct ISteamClient_SteamClient021_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamClient_SteamClient021_GetIPCCallCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient021_SetWarningMessageHook_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamClient_SteamClient021_BShutdownIfAllPipesClosed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamClient_SteamClient021_GetISteamHTTP_params { - struct u_iface *u_iface; - void /*ISteamHTTP*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26716,8 +26716,8 @@ struct ISteamClient_SteamClient021_GetISteamHTTP_params struct ISteamClient_SteamClient021_GetISteamController_params { - struct u_iface *u_iface; - void /*ISteamController*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26725,8 +26725,8 @@ struct ISteamClient_SteamClient021_GetISteamController_params struct ISteamClient_SteamClient021_GetISteamUGC_params { - struct u_iface *u_iface; - void /*ISteamUGC*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26734,8 +26734,8 @@ struct ISteamClient_SteamClient021_GetISteamUGC_params struct ISteamClient_SteamClient021_GetISteamMusic_params { - struct u_iface *u_iface; - void /*ISteamMusic*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26743,8 +26743,8 @@ struct ISteamClient_SteamClient021_GetISteamMusic_params struct ISteamClient_SteamClient021_GetISteamMusicRemote_params { - struct u_iface *u_iface; - void /*ISteamMusicRemote*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26752,8 +26752,8 @@ struct ISteamClient_SteamClient021_GetISteamMusicRemote_params struct ISteamClient_SteamClient021_GetISteamHTMLSurface_params { - struct u_iface *u_iface; - void /*ISteamHTMLSurface*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26761,26 +26761,26 @@ struct ISteamClient_SteamClient021_GetISteamHTMLSurface_params struct ISteamClient_SteamClient021_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL _a)(void); }; struct ISteamClient_SteamClient021_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL _a)(void); }; struct ISteamClient_SteamClient021_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t (*W_CDECL func)(int32_t); }; struct ISteamClient_SteamClient021_GetISteamInventory_params { - struct u_iface *u_iface; - void /*ISteamInventory*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26788,8 +26788,8 @@ struct ISteamClient_SteamClient021_GetISteamInventory_params struct ISteamClient_SteamClient021_GetISteamVideo_params { - struct u_iface *u_iface; - void /*ISteamVideo*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26797,8 +26797,8 @@ struct ISteamClient_SteamClient021_GetISteamVideo_params struct ISteamClient_SteamClient021_GetISteamParentalSettings_params { - struct u_iface *u_iface; - void /*ISteamParentalSettings*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamuser; int32_t hSteamPipe; const char *pchVersion; @@ -26806,8 +26806,8 @@ struct ISteamClient_SteamClient021_GetISteamParentalSettings_params struct ISteamClient_SteamClient021_GetISteamInput_params { - struct u_iface *u_iface; - void /*ISteamInput*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26815,8 +26815,8 @@ struct ISteamClient_SteamClient021_GetISteamInput_params struct ISteamClient_SteamClient021_GetISteamParties_params { - struct u_iface *u_iface; - void /*ISteamParties*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26824,8 +26824,8 @@ struct ISteamClient_SteamClient021_GetISteamParties_params struct ISteamClient_SteamClient021_GetISteamRemotePlay_params { - struct u_iface *u_iface; - void /*ISteamRemotePlay*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t hSteamUser; int32_t hSteamPipe; const char *pchVersion; @@ -26833,71 +26833,71 @@ struct ISteamClient_SteamClient021_GetISteamRemotePlay_params struct ISteamClient_SteamClient021_DestroyAllInterfaces_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamController_SteamController003_Init_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamController_SteamController003_Shutdown_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamController_SteamController003_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamController_SteamController003_GetConnectedControllers_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t *handlesOut; }; struct ISteamController_SteamController003_ShowBindingPanel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t controllerHandle; }; struct ISteamController_SteamController003_GetActionSetHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszActionSetName; }; struct ISteamController_SteamController003_ActivateActionSet_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint64_t actionSetHandle; }; struct ISteamController_SteamController003_GetCurrentActionSet_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t controllerHandle; }; struct ISteamController_SteamController003_GetDigitalActionHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamController_SteamController003_GetDigitalActionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; ControllerDigitalActionData_t *_ret; uint64_t controllerHandle; uint64_t digitalActionHandle; @@ -26905,7 +26905,7 @@ struct ISteamController_SteamController003_GetDigitalActionData_params struct ISteamController_SteamController003_GetDigitalActionOrigins_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t controllerHandle; uint64_t actionSetHandle; @@ -26915,14 +26915,14 @@ struct ISteamController_SteamController003_GetDigitalActionOrigins_params struct ISteamController_SteamController003_GetAnalogActionHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamController_SteamController003_GetAnalogActionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; ControllerAnalogActionData_t *_ret; uint64_t controllerHandle; uint64_t analogActionHandle; @@ -26930,7 +26930,7 @@ struct ISteamController_SteamController003_GetAnalogActionData_params struct ISteamController_SteamController003_GetAnalogActionOrigins_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t controllerHandle; uint64_t actionSetHandle; @@ -26940,14 +26940,14 @@ struct ISteamController_SteamController003_GetAnalogActionOrigins_params struct ISteamController_SteamController003_StopAnalogActionMomentum_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint64_t eAction; }; struct ISteamController_SteamController003_TriggerHapticPulse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -26955,7 +26955,7 @@ struct ISteamController_SteamController003_TriggerHapticPulse_params struct ISteamController_SteamController003_TriggerRepeatedHapticPulse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -26966,66 +26966,66 @@ struct ISteamController_SteamController003_TriggerRepeatedHapticPulse_params struct ISteamController_SteamController004_Init_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamController_SteamController004_Shutdown_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamController_SteamController004_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamController_SteamController004_GetConnectedControllers_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t *handlesOut; }; struct ISteamController_SteamController004_ShowBindingPanel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t controllerHandle; }; struct ISteamController_SteamController004_GetActionSetHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszActionSetName; }; struct ISteamController_SteamController004_ActivateActionSet_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint64_t actionSetHandle; }; struct ISteamController_SteamController004_GetCurrentActionSet_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t controllerHandle; }; struct ISteamController_SteamController004_GetDigitalActionHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamController_SteamController004_GetDigitalActionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; ControllerDigitalActionData_t *_ret; uint64_t controllerHandle; uint64_t digitalActionHandle; @@ -27033,7 +27033,7 @@ struct ISteamController_SteamController004_GetDigitalActionData_params struct ISteamController_SteamController004_GetDigitalActionOrigins_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t controllerHandle; uint64_t actionSetHandle; @@ -27043,14 +27043,14 @@ struct ISteamController_SteamController004_GetDigitalActionOrigins_params struct ISteamController_SteamController004_GetAnalogActionHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamController_SteamController004_GetAnalogActionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; ControllerAnalogActionData_t *_ret; uint64_t controllerHandle; uint64_t analogActionHandle; @@ -27058,7 +27058,7 @@ struct ISteamController_SteamController004_GetAnalogActionData_params struct ISteamController_SteamController004_GetAnalogActionOrigins_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t controllerHandle; uint64_t actionSetHandle; @@ -27068,14 +27068,14 @@ struct ISteamController_SteamController004_GetAnalogActionOrigins_params struct ISteamController_SteamController004_StopAnalogActionMomentum_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint64_t eAction; }; struct ISteamController_SteamController004_TriggerHapticPulse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -27083,7 +27083,7 @@ struct ISteamController_SteamController004_TriggerHapticPulse_params struct ISteamController_SteamController004_TriggerRepeatedHapticPulse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -27094,28 +27094,28 @@ struct ISteamController_SteamController004_TriggerRepeatedHapticPulse_params struct ISteamController_SteamController004_GetGamepadIndexForController_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t ulControllerHandle; }; struct ISteamController_SteamController004_GetControllerForGamepadIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; int32_t nIndex; }; struct ISteamController_SteamController004_GetMotionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; ControllerMotionData_t *_ret; uint64_t controllerHandle; }; struct ISteamController_SteamController004_ShowDigitalActionOrigins_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t controllerHandle; uint64_t digitalActionHandle; @@ -27126,7 +27126,7 @@ struct ISteamController_SteamController004_ShowDigitalActionOrigins_params struct ISteamController_SteamController004_ShowAnalogActionOrigins_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t controllerHandle; uint64_t analogActionHandle; @@ -27137,66 +27137,66 @@ struct ISteamController_SteamController004_ShowAnalogActionOrigins_params struct ISteamController_SteamController005_Init_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamController_SteamController005_Shutdown_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamController_SteamController005_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamController_SteamController005_GetConnectedControllers_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t *handlesOut; }; struct ISteamController_SteamController005_ShowBindingPanel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t controllerHandle; }; struct ISteamController_SteamController005_GetActionSetHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszActionSetName; }; struct ISteamController_SteamController005_ActivateActionSet_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint64_t actionSetHandle; }; struct ISteamController_SteamController005_GetCurrentActionSet_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t controllerHandle; }; struct ISteamController_SteamController005_GetDigitalActionHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamController_SteamController005_GetDigitalActionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; ControllerDigitalActionData_t *_ret; uint64_t controllerHandle; uint64_t digitalActionHandle; @@ -27204,7 +27204,7 @@ struct ISteamController_SteamController005_GetDigitalActionData_params struct ISteamController_SteamController005_GetDigitalActionOrigins_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t controllerHandle; uint64_t actionSetHandle; @@ -27214,14 +27214,14 @@ struct ISteamController_SteamController005_GetDigitalActionOrigins_params struct ISteamController_SteamController005_GetAnalogActionHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamController_SteamController005_GetAnalogActionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; ControllerAnalogActionData_t *_ret; uint64_t controllerHandle; uint64_t analogActionHandle; @@ -27229,7 +27229,7 @@ struct ISteamController_SteamController005_GetAnalogActionData_params struct ISteamController_SteamController005_GetAnalogActionOrigins_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t controllerHandle; uint64_t actionSetHandle; @@ -27239,14 +27239,14 @@ struct ISteamController_SteamController005_GetAnalogActionOrigins_params struct ISteamController_SteamController005_StopAnalogActionMomentum_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint64_t eAction; }; struct ISteamController_SteamController005_TriggerHapticPulse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -27254,7 +27254,7 @@ struct ISteamController_SteamController005_TriggerHapticPulse_params struct ISteamController_SteamController005_TriggerRepeatedHapticPulse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -27265,7 +27265,7 @@ struct ISteamController_SteamController005_TriggerRepeatedHapticPulse_params struct ISteamController_SteamController005_TriggerVibration_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint16_t usLeftSpeed; uint16_t usRightSpeed; @@ -27273,7 +27273,7 @@ struct ISteamController_SteamController005_TriggerVibration_params struct ISteamController_SteamController005_SetLEDColor_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint8_t nColorR; uint8_t nColorG; @@ -27283,28 +27283,28 @@ struct ISteamController_SteamController005_SetLEDColor_params struct ISteamController_SteamController005_GetGamepadIndexForController_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t ulControllerHandle; }; struct ISteamController_SteamController005_GetControllerForGamepadIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; int32_t nIndex; }; struct ISteamController_SteamController005_GetMotionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; ControllerMotionData_t *_ret; uint64_t controllerHandle; }; struct ISteamController_SteamController005_ShowDigitalActionOrigins_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t controllerHandle; uint64_t digitalActionHandle; @@ -27315,7 +27315,7 @@ struct ISteamController_SteamController005_ShowDigitalActionOrigins_params struct ISteamController_SteamController005_ShowAnalogActionOrigins_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t controllerHandle; uint64_t analogActionHandle; @@ -27326,93 +27326,93 @@ struct ISteamController_SteamController005_ShowAnalogActionOrigins_params struct ISteamController_SteamController005_GetStringForActionOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamController_SteamController005_GetGlyphForActionOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamController_SteamController006_Init_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamController_SteamController006_Shutdown_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamController_SteamController006_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamController_SteamController006_GetConnectedControllers_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t *handlesOut; }; struct ISteamController_SteamController006_ShowBindingPanel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t controllerHandle; }; struct ISteamController_SteamController006_GetActionSetHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszActionSetName; }; struct ISteamController_SteamController006_ActivateActionSet_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint64_t actionSetHandle; }; struct ISteamController_SteamController006_GetCurrentActionSet_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t controllerHandle; }; struct ISteamController_SteamController006_ActivateActionSetLayer_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint64_t actionSetLayerHandle; }; struct ISteamController_SteamController006_DeactivateActionSetLayer_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint64_t actionSetLayerHandle; }; struct ISteamController_SteamController006_DeactivateAllActionSetLayers_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; }; struct ISteamController_SteamController006_GetActiveActionSetLayers_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t controllerHandle; uint64_t *handlesOut; @@ -27420,14 +27420,14 @@ struct ISteamController_SteamController006_GetActiveActionSetLayers_params struct ISteamController_SteamController006_GetDigitalActionHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamController_SteamController006_GetDigitalActionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; ControllerDigitalActionData_t *_ret; uint64_t controllerHandle; uint64_t digitalActionHandle; @@ -27435,7 +27435,7 @@ struct ISteamController_SteamController006_GetDigitalActionData_params struct ISteamController_SteamController006_GetDigitalActionOrigins_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t controllerHandle; uint64_t actionSetHandle; @@ -27445,14 +27445,14 @@ struct ISteamController_SteamController006_GetDigitalActionOrigins_params struct ISteamController_SteamController006_GetAnalogActionHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamController_SteamController006_GetAnalogActionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; ControllerAnalogActionData_t *_ret; uint64_t controllerHandle; uint64_t analogActionHandle; @@ -27460,7 +27460,7 @@ struct ISteamController_SteamController006_GetAnalogActionData_params struct ISteamController_SteamController006_GetAnalogActionOrigins_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t controllerHandle; uint64_t actionSetHandle; @@ -27470,14 +27470,14 @@ struct ISteamController_SteamController006_GetAnalogActionOrigins_params struct ISteamController_SteamController006_StopAnalogActionMomentum_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint64_t eAction; }; struct ISteamController_SteamController006_TriggerHapticPulse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -27485,7 +27485,7 @@ struct ISteamController_SteamController006_TriggerHapticPulse_params struct ISteamController_SteamController006_TriggerRepeatedHapticPulse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -27496,7 +27496,7 @@ struct ISteamController_SteamController006_TriggerRepeatedHapticPulse_params struct ISteamController_SteamController006_TriggerVibration_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint16_t usLeftSpeed; uint16_t usRightSpeed; @@ -27504,7 +27504,7 @@ struct ISteamController_SteamController006_TriggerVibration_params struct ISteamController_SteamController006_SetLEDColor_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint8_t nColorR; uint8_t nColorG; @@ -27514,28 +27514,28 @@ struct ISteamController_SteamController006_SetLEDColor_params struct ISteamController_SteamController006_GetGamepadIndexForController_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t ulControllerHandle; }; struct ISteamController_SteamController006_GetControllerForGamepadIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; int32_t nIndex; }; struct ISteamController_SteamController006_GetMotionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; ControllerMotionData_t *_ret; uint64_t controllerHandle; }; struct ISteamController_SteamController006_ShowDigitalActionOrigins_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t controllerHandle; uint64_t digitalActionHandle; @@ -27546,7 +27546,7 @@ struct ISteamController_SteamController006_ShowDigitalActionOrigins_params struct ISteamController_SteamController006_ShowAnalogActionOrigins_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t controllerHandle; uint64_t analogActionHandle; @@ -27557,93 +27557,93 @@ struct ISteamController_SteamController006_ShowAnalogActionOrigins_params struct ISteamController_SteamController006_GetStringForActionOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamController_SteamController006_GetGlyphForActionOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamController_SteamController006_GetInputTypeForHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t controllerHandle; }; struct ISteamController_SteamController007_Init_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamController_SteamController007_Shutdown_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamController_SteamController007_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamController_SteamController007_GetConnectedControllers_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t *handlesOut; }; struct ISteamController_SteamController007_GetActionSetHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszActionSetName; }; struct ISteamController_SteamController007_ActivateActionSet_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint64_t actionSetHandle; }; struct ISteamController_SteamController007_GetCurrentActionSet_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t controllerHandle; }; struct ISteamController_SteamController007_ActivateActionSetLayer_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint64_t actionSetLayerHandle; }; struct ISteamController_SteamController007_DeactivateActionSetLayer_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint64_t actionSetLayerHandle; }; struct ISteamController_SteamController007_DeactivateAllActionSetLayers_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; }; struct ISteamController_SteamController007_GetActiveActionSetLayers_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t controllerHandle; uint64_t *handlesOut; @@ -27651,14 +27651,14 @@ struct ISteamController_SteamController007_GetActiveActionSetLayers_params struct ISteamController_SteamController007_GetDigitalActionHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamController_SteamController007_GetDigitalActionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; InputDigitalActionData_t *_ret; uint64_t controllerHandle; uint64_t digitalActionHandle; @@ -27666,7 +27666,7 @@ struct ISteamController_SteamController007_GetDigitalActionData_params struct ISteamController_SteamController007_GetDigitalActionOrigins_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t controllerHandle; uint64_t actionSetHandle; @@ -27676,14 +27676,14 @@ struct ISteamController_SteamController007_GetDigitalActionOrigins_params struct ISteamController_SteamController007_GetAnalogActionHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamController_SteamController007_GetAnalogActionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; InputAnalogActionData_t *_ret; uint64_t controllerHandle; uint64_t analogActionHandle; @@ -27691,7 +27691,7 @@ struct ISteamController_SteamController007_GetAnalogActionData_params struct ISteamController_SteamController007_GetAnalogActionOrigins_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t controllerHandle; uint64_t actionSetHandle; @@ -27701,35 +27701,35 @@ struct ISteamController_SteamController007_GetAnalogActionOrigins_params struct ISteamController_SteamController007_GetGlyphForActionOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamController_SteamController007_GetStringForActionOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamController_SteamController007_StopAnalogActionMomentum_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint64_t eAction; }; struct ISteamController_SteamController007_GetMotionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; InputMotionData_t *_ret; uint64_t controllerHandle; }; struct ISteamController_SteamController007_TriggerHapticPulse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -27737,7 +27737,7 @@ struct ISteamController_SteamController007_TriggerHapticPulse_params struct ISteamController_SteamController007_TriggerRepeatedHapticPulse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -27748,7 +27748,7 @@ struct ISteamController_SteamController007_TriggerRepeatedHapticPulse_params struct ISteamController_SteamController007_TriggerVibration_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint16_t usLeftSpeed; uint16_t usRightSpeed; @@ -27756,7 +27756,7 @@ struct ISteamController_SteamController007_TriggerVibration_params struct ISteamController_SteamController007_SetLEDColor_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint8_t nColorR; uint8_t nColorG; @@ -27766,49 +27766,49 @@ struct ISteamController_SteamController007_SetLEDColor_params struct ISteamController_SteamController007_ShowBindingPanel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t controllerHandle; }; struct ISteamController_SteamController007_GetInputTypeForHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t controllerHandle; }; struct ISteamController_SteamController007_GetControllerForGamepadIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; int32_t nIndex; }; struct ISteamController_SteamController007_GetGamepadIndexForController_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t ulControllerHandle; }; struct ISteamController_SteamController007_GetStringForXboxOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamController_SteamController007_GetGlyphForXboxOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamController_SteamController007_GetActionOriginFromXboxOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t controllerHandle; uint32_t eOrigin; @@ -27816,7 +27816,7 @@ struct ISteamController_SteamController007_GetActionOriginFromXboxOrigin_params struct ISteamController_SteamController007_TranslateActionOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t eDestinationInputType; uint32_t eSourceOrigin; @@ -27824,7 +27824,7 @@ struct ISteamController_SteamController007_TranslateActionOrigin_params struct ISteamController_SteamController007_GetControllerBindingRevision_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t controllerHandle; int32_t *pMajor; @@ -27833,72 +27833,72 @@ struct ISteamController_SteamController007_GetControllerBindingRevision_params struct ISteamController_SteamController008_Init_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamController_SteamController008_Shutdown_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamController_SteamController008_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamController_SteamController008_GetConnectedControllers_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t *handlesOut; }; struct ISteamController_SteamController008_GetActionSetHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszActionSetName; }; struct ISteamController_SteamController008_ActivateActionSet_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint64_t actionSetHandle; }; struct ISteamController_SteamController008_GetCurrentActionSet_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t controllerHandle; }; struct ISteamController_SteamController008_ActivateActionSetLayer_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint64_t actionSetLayerHandle; }; struct ISteamController_SteamController008_DeactivateActionSetLayer_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint64_t actionSetLayerHandle; }; struct ISteamController_SteamController008_DeactivateAllActionSetLayers_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; }; struct ISteamController_SteamController008_GetActiveActionSetLayers_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t controllerHandle; uint64_t *handlesOut; @@ -27906,14 +27906,14 @@ struct ISteamController_SteamController008_GetActiveActionSetLayers_params struct ISteamController_SteamController008_GetDigitalActionHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamController_SteamController008_GetDigitalActionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; InputDigitalActionData_t *_ret; uint64_t controllerHandle; uint64_t digitalActionHandle; @@ -27921,7 +27921,7 @@ struct ISteamController_SteamController008_GetDigitalActionData_params struct ISteamController_SteamController008_GetDigitalActionOrigins_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t controllerHandle; uint64_t actionSetHandle; @@ -27931,14 +27931,14 @@ struct ISteamController_SteamController008_GetDigitalActionOrigins_params struct ISteamController_SteamController008_GetAnalogActionHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamController_SteamController008_GetAnalogActionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; InputAnalogActionData_t *_ret; uint64_t controllerHandle; uint64_t analogActionHandle; @@ -27946,7 +27946,7 @@ struct ISteamController_SteamController008_GetAnalogActionData_params struct ISteamController_SteamController008_GetAnalogActionOrigins_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t controllerHandle; uint64_t actionSetHandle; @@ -27956,35 +27956,35 @@ struct ISteamController_SteamController008_GetAnalogActionOrigins_params struct ISteamController_SteamController008_GetGlyphForActionOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamController_SteamController008_GetStringForActionOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamController_SteamController008_StopAnalogActionMomentum_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint64_t eAction; }; struct ISteamController_SteamController008_GetMotionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; InputMotionData_t *_ret; uint64_t controllerHandle; }; struct ISteamController_SteamController008_TriggerHapticPulse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -27992,7 +27992,7 @@ struct ISteamController_SteamController008_TriggerHapticPulse_params struct ISteamController_SteamController008_TriggerRepeatedHapticPulse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -28003,7 +28003,7 @@ struct ISteamController_SteamController008_TriggerRepeatedHapticPulse_params struct ISteamController_SteamController008_TriggerVibration_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint16_t usLeftSpeed; uint16_t usRightSpeed; @@ -28011,7 +28011,7 @@ struct ISteamController_SteamController008_TriggerVibration_params struct ISteamController_SteamController008_SetLEDColor_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t controllerHandle; uint8_t nColorR; uint8_t nColorG; @@ -28021,49 +28021,49 @@ struct ISteamController_SteamController008_SetLEDColor_params struct ISteamController_SteamController008_ShowBindingPanel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t controllerHandle; }; struct ISteamController_SteamController008_GetInputTypeForHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t controllerHandle; }; struct ISteamController_SteamController008_GetControllerForGamepadIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; int32_t nIndex; }; struct ISteamController_SteamController008_GetGamepadIndexForController_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t ulControllerHandle; }; struct ISteamController_SteamController008_GetStringForXboxOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamController_SteamController008_GetGlyphForXboxOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamController_SteamController008_GetActionOriginFromXboxOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t controllerHandle; uint32_t eOrigin; @@ -28071,7 +28071,7 @@ struct ISteamController_SteamController008_GetActionOriginFromXboxOrigin_params struct ISteamController_SteamController008_TranslateActionOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t eDestinationInputType; uint32_t eSourceOrigin; @@ -28079,7 +28079,7 @@ struct ISteamController_SteamController008_TranslateActionOrigin_params struct ISteamController_SteamController008_GetControllerBindingRevision_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t controllerHandle; int32_t *pMajor; @@ -28088,66 +28088,66 @@ struct ISteamController_SteamController008_GetControllerBindingRevision_params struct ISteamFriends_SteamFriends001_GetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends001_SetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends001_GetPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends001_SetPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t ePersonaState; }; struct ISteamFriends_SteamFriends001_AddFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends001_RemoveFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends001_HasFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends001_GetFriendRelationship_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends001_GetFriendPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t *pnGameID; @@ -28157,34 +28157,34 @@ struct ISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends001_GetFriendPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends001_AddFriendByName_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchEmailOrAccountName; }; struct ISteamFriends_SteamFriends001_GetFriendCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends001_GetFriendByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iFriend; }; struct ISteamFriends_SteamFriends001_SendMsgToFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDFriend; uint32_t eChatEntryType; const char *pchMsgBody; @@ -28192,7 +28192,7 @@ struct ISteamFriends_SteamFriends001_SendMsgToFriend_params struct ISteamFriends_SteamFriends001_SetFriendRegValue_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDFriend; const char *pchKey; const char *pchValue; @@ -28200,7 +28200,7 @@ struct ISteamFriends_SteamFriends001_SetFriendRegValue_params struct ISteamFriends_SteamFriends001_GetFriendRegValue_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; const char *pchKey; @@ -28208,7 +28208,7 @@ struct ISteamFriends_SteamFriends001_GetFriendRegValue_params struct ISteamFriends_SteamFriends001_GetFriendPersonaNameHistory_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -28216,7 +28216,7 @@ struct ISteamFriends_SteamFriends001_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends001_GetChatMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; int32_t iChatID; @@ -28227,7 +28227,7 @@ struct ISteamFriends_SteamFriends001_GetChatMessage_params struct ISteamFriends_SteamFriends001_SendMsgToFriend_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; uint32_t eChatEntryType; @@ -28237,40 +28237,40 @@ struct ISteamFriends_SteamFriends001_SendMsgToFriend_2_params struct ISteamFriends_SteamFriends001_GetChatIDOfChatHistoryStart_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends001_SetChatHistoryStart_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDFriend; int32_t iChatID; }; struct ISteamFriends_SteamFriends001_ClearChatHistory_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends001_InviteFriendByEmail_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchEmailAccount; }; struct ISteamFriends_SteamFriends001_GetBlockedFriendCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends001_GetFriendGamePlayed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; uint64_t *pulGameID; @@ -28280,7 +28280,7 @@ struct ISteamFriends_SteamFriends001_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends001_GetFriendGamePlayed2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; uint64_t *pulGameID; @@ -28291,38 +28291,38 @@ struct ISteamFriends_SteamFriends001_GetFriendGamePlayed2_params struct ISteamFriends_SteamFriends002_GetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends002_SetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends002_GetPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends002_SetPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t ePersonaState; }; struct ISteamFriends_SteamFriends002_GetFriendCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends002_GetFriendByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -28330,28 +28330,28 @@ struct ISteamFriends_SteamFriends002_GetFriendByIndex_params struct ISteamFriends_SteamFriends002_GetFriendRelationship_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends002_GetFriendPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends002_GetFriendPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends002_SetFriendRegValue_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDFriend; const char *pchKey; const char *pchValue; @@ -28359,7 +28359,7 @@ struct ISteamFriends_SteamFriends002_SetFriendRegValue_params struct ISteamFriends_SteamFriends002_GetFriendRegValue_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; const char *pchKey; @@ -28367,7 +28367,7 @@ struct ISteamFriends_SteamFriends002_GetFriendRegValue_params struct ISteamFriends_SteamFriends002_GetFriendGamePlayed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; uint64_t *pulGameID; @@ -28378,7 +28378,7 @@ struct ISteamFriends_SteamFriends002_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends002_GetFriendPersonaNameHistory_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -28386,21 +28386,21 @@ struct ISteamFriends_SteamFriends002_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends002_AddFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends002_RemoveFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends002_HasFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -28408,21 +28408,21 @@ struct ISteamFriends_SteamFriends002_HasFriend_params struct ISteamFriends_SteamFriends002_AddFriendByName_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const char *pchEmailOrAccountName; }; struct ISteamFriends_SteamFriends002_InviteFriendByEmail_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchEmailAccount; }; struct ISteamFriends_SteamFriends002_GetChatMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; int32_t iChatID; @@ -28433,7 +28433,7 @@ struct ISteamFriends_SteamFriends002_GetChatMessage_params struct ISteamFriends_SteamFriends002_SendMsgToFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; uint32_t eChatEntryType; @@ -28443,47 +28443,47 @@ struct ISteamFriends_SteamFriends002_SendMsgToFriend_params struct ISteamFriends_SteamFriends002_GetChatIDOfChatHistoryStart_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends002_SetChatHistoryStart_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDFriend; int32_t iChatID; }; struct ISteamFriends_SteamFriends002_ClearChatHistory_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends002_GetClanCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends002_GetClanByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends002_GetClanName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends002_InviteFriendToClan_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; CSteamID steamIDClan; @@ -28491,7 +28491,7 @@ struct ISteamFriends_SteamFriends002_InviteFriendToClan_params struct ISteamFriends_SteamFriends002_AcknowledgeInviteToClan_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClan; int8_t bAcceptOrDenyClanInvite; @@ -28499,14 +28499,14 @@ struct ISteamFriends_SteamFriends002_AcknowledgeInviteToClan_params struct ISteamFriends_SteamFriends002_GetFriendCountFromSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends002_GetFriendFromSourceByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -28514,32 +28514,32 @@ struct ISteamFriends_SteamFriends002_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends003_GetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends003_SetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends003_GetPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends003_GetFriendCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends003_GetFriendByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -28547,35 +28547,35 @@ struct ISteamFriends_SteamFriends003_GetFriendByIndex_params struct ISteamFriends_SteamFriends003_GetFriendRelationship_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends003_GetFriendPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends003_GetFriendPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends003_GetFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends003_GetFriendGamePlayed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; uint64_t *pulGameID; @@ -28586,7 +28586,7 @@ struct ISteamFriends_SteamFriends003_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends003_GetFriendPersonaNameHistory_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -28594,7 +28594,7 @@ struct ISteamFriends_SteamFriends003_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends003_HasFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -28602,34 +28602,34 @@ struct ISteamFriends_SteamFriends003_HasFriend_params struct ISteamFriends_SteamFriends003_GetClanCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends003_GetClanByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends003_GetClanName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends003_GetFriendCountFromSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends003_GetFriendFromSourceByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -28637,7 +28637,7 @@ struct ISteamFriends_SteamFriends003_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends003_IsUserInSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; @@ -28645,45 +28645,45 @@ struct ISteamFriends_SteamFriends003_IsUserInSource_params struct ISteamFriends_SteamFriends003_SetInGameVoiceSpeaking_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUser; int8_t bSpeaking; }; struct ISteamFriends_SteamFriends003_ActivateGameOverlay_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchDialog; }; struct ISteamFriends_SteamFriends004_GetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends004_SetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends004_GetPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends004_GetFriendCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends004_GetFriendByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -28691,28 +28691,28 @@ struct ISteamFriends_SteamFriends004_GetFriendByIndex_params struct ISteamFriends_SteamFriends004_GetFriendRelationship_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends004_GetFriendPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends004_GetFriendPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends004_GetFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; int32_t eAvatarSize; @@ -28720,7 +28720,7 @@ struct ISteamFriends_SteamFriends004_GetFriendAvatar_params struct ISteamFriends_SteamFriends004_GetFriendGamePlayed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; uint64_t *pulGameID; @@ -28731,7 +28731,7 @@ struct ISteamFriends_SteamFriends004_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends004_GetFriendPersonaNameHistory_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -28739,7 +28739,7 @@ struct ISteamFriends_SteamFriends004_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends004_HasFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -28747,34 +28747,34 @@ struct ISteamFriends_SteamFriends004_HasFriend_params struct ISteamFriends_SteamFriends004_GetClanCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends004_GetClanByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends004_GetClanName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends004_GetFriendCountFromSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends004_GetFriendFromSourceByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -28782,7 +28782,7 @@ struct ISteamFriends_SteamFriends004_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends004_IsUserInSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; @@ -28790,45 +28790,45 @@ struct ISteamFriends_SteamFriends004_IsUserInSource_params struct ISteamFriends_SteamFriends004_SetInGameVoiceSpeaking_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUser; int8_t bSpeaking; }; struct ISteamFriends_SteamFriends004_ActivateGameOverlay_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchDialog; }; struct ISteamFriends_SteamFriends005_GetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends005_SetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends005_GetPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends005_GetFriendCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends005_GetFriendByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -28836,28 +28836,28 @@ struct ISteamFriends_SteamFriends005_GetFriendByIndex_params struct ISteamFriends_SteamFriends005_GetFriendRelationship_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends005_GetFriendPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends005_GetFriendPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends005_GetFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; int32_t eAvatarSize; @@ -28865,7 +28865,7 @@ struct ISteamFriends_SteamFriends005_GetFriendAvatar_params struct ISteamFriends_SteamFriends005_GetFriendGamePlayed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; @@ -28873,7 +28873,7 @@ struct ISteamFriends_SteamFriends005_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends005_GetFriendPersonaNameHistory_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -28881,7 +28881,7 @@ struct ISteamFriends_SteamFriends005_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends005_HasFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -28889,34 +28889,34 @@ struct ISteamFriends_SteamFriends005_HasFriend_params struct ISteamFriends_SteamFriends005_GetClanCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends005_GetClanByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends005_GetClanName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends005_GetFriendCountFromSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends005_GetFriendFromSourceByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -28924,7 +28924,7 @@ struct ISteamFriends_SteamFriends005_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends005_IsUserInSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; @@ -28932,70 +28932,70 @@ struct ISteamFriends_SteamFriends005_IsUserInSource_params struct ISteamFriends_SteamFriends005_SetInGameVoiceSpeaking_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUser; int8_t bSpeaking; }; struct ISteamFriends_SteamFriends005_ActivateGameOverlay_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchDialog; }; struct ISteamFriends_SteamFriends005_ActivateGameOverlayToUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchDialog; CSteamID steamID; }; struct ISteamFriends_SteamFriends005_ActivateGameOverlayToWebPage_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchURL; }; struct ISteamFriends_SteamFriends005_ActivateGameOverlayToStore_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t nAppID; }; struct ISteamFriends_SteamFriends005_SetPlayedWith_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUserPlayedWith; }; struct ISteamFriends_SteamFriends006_GetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends006_SetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends006_GetPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends006_GetFriendCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends006_GetFriendByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -29003,28 +29003,28 @@ struct ISteamFriends_SteamFriends006_GetFriendByIndex_params struct ISteamFriends_SteamFriends006_GetFriendRelationship_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends006_GetFriendPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends006_GetFriendPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends006_GetFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; int32_t eAvatarSize; @@ -29032,7 +29032,7 @@ struct ISteamFriends_SteamFriends006_GetFriendAvatar_params struct ISteamFriends_SteamFriends006_GetFriendGamePlayed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; @@ -29040,7 +29040,7 @@ struct ISteamFriends_SteamFriends006_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends006_GetFriendPersonaNameHistory_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -29048,7 +29048,7 @@ struct ISteamFriends_SteamFriends006_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends006_HasFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -29056,41 +29056,41 @@ struct ISteamFriends_SteamFriends006_HasFriend_params struct ISteamFriends_SteamFriends006_GetClanCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends006_GetClanByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends006_GetClanName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends006_GetClanTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends006_GetFriendCountFromSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends006_GetFriendFromSourceByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -29098,7 +29098,7 @@ struct ISteamFriends_SteamFriends006_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends006_IsUserInSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; @@ -29106,76 +29106,76 @@ struct ISteamFriends_SteamFriends006_IsUserInSource_params struct ISteamFriends_SteamFriends006_SetInGameVoiceSpeaking_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUser; int8_t bSpeaking; }; struct ISteamFriends_SteamFriends006_ActivateGameOverlay_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchDialog; }; struct ISteamFriends_SteamFriends006_ActivateGameOverlayToUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchDialog; CSteamID steamID; }; struct ISteamFriends_SteamFriends006_ActivateGameOverlayToWebPage_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchURL; }; struct ISteamFriends_SteamFriends006_ActivateGameOverlayToStore_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t nAppID; }; struct ISteamFriends_SteamFriends006_SetPlayedWith_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUserPlayedWith; }; struct ISteamFriends_SteamFriends006_ActivateGameOverlayInviteDialog_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; }; struct ISteamFriends_SteamFriends007_GetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends007_SetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends007_GetPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends007_GetFriendCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends007_GetFriendByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -29183,28 +29183,28 @@ struct ISteamFriends_SteamFriends007_GetFriendByIndex_params struct ISteamFriends_SteamFriends007_GetFriendRelationship_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends007_GetFriendPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends007_GetFriendPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends007_GetFriendGamePlayed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; @@ -29212,7 +29212,7 @@ struct ISteamFriends_SteamFriends007_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends007_GetFriendPersonaNameHistory_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -29220,7 +29220,7 @@ struct ISteamFriends_SteamFriends007_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends007_HasFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -29228,41 +29228,41 @@ struct ISteamFriends_SteamFriends007_HasFriend_params struct ISteamFriends_SteamFriends007_GetClanCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends007_GetClanByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends007_GetClanName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends007_GetClanTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends007_GetFriendCountFromSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends007_GetFriendFromSourceByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -29270,7 +29270,7 @@ struct ISteamFriends_SteamFriends007_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends007_IsUserInSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; @@ -29278,97 +29278,97 @@ struct ISteamFriends_SteamFriends007_IsUserInSource_params struct ISteamFriends_SteamFriends007_SetInGameVoiceSpeaking_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUser; int8_t bSpeaking; }; struct ISteamFriends_SteamFriends007_ActivateGameOverlay_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchDialog; }; struct ISteamFriends_SteamFriends007_ActivateGameOverlayToUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchDialog; CSteamID steamID; }; struct ISteamFriends_SteamFriends007_ActivateGameOverlayToWebPage_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchURL; }; struct ISteamFriends_SteamFriends007_ActivateGameOverlayToStore_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t nAppID; }; struct ISteamFriends_SteamFriends007_SetPlayedWith_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUserPlayedWith; }; struct ISteamFriends_SteamFriends007_ActivateGameOverlayInviteDialog_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; }; struct ISteamFriends_SteamFriends007_GetSmallFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends007_GetMediumFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends007_GetLargeFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends008_GetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends008_SetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends008_GetPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends008_GetFriendCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends008_GetFriendByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -29376,28 +29376,28 @@ struct ISteamFriends_SteamFriends008_GetFriendByIndex_params struct ISteamFriends_SteamFriends008_GetFriendRelationship_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends008_GetFriendPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends008_GetFriendPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends008_GetFriendGamePlayed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; @@ -29405,7 +29405,7 @@ struct ISteamFriends_SteamFriends008_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends008_GetFriendPersonaNameHistory_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -29413,7 +29413,7 @@ struct ISteamFriends_SteamFriends008_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends008_HasFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -29421,41 +29421,41 @@ struct ISteamFriends_SteamFriends008_HasFriend_params struct ISteamFriends_SteamFriends008_GetClanCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends008_GetClanByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends008_GetClanName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends008_GetClanTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends008_GetFriendCountFromSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends008_GetFriendFromSourceByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -29463,7 +29463,7 @@ struct ISteamFriends_SteamFriends008_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends008_IsUserInSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; @@ -29471,72 +29471,72 @@ struct ISteamFriends_SteamFriends008_IsUserInSource_params struct ISteamFriends_SteamFriends008_SetInGameVoiceSpeaking_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUser; int8_t bSpeaking; }; struct ISteamFriends_SteamFriends008_ActivateGameOverlay_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchDialog; }; struct ISteamFriends_SteamFriends008_ActivateGameOverlayToUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchDialog; CSteamID steamID; }; struct ISteamFriends_SteamFriends008_ActivateGameOverlayToWebPage_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchURL; }; struct ISteamFriends_SteamFriends008_ActivateGameOverlayToStore_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t nAppID; }; struct ISteamFriends_SteamFriends008_SetPlayedWith_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUserPlayedWith; }; struct ISteamFriends_SteamFriends008_ActivateGameOverlayInviteDialog_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; }; struct ISteamFriends_SteamFriends008_GetSmallFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends008_GetMediumFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends008_GetLargeFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends008_RequestUserInformation_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; int8_t bRequireNameOnly; @@ -29544,28 +29544,28 @@ struct ISteamFriends_SteamFriends008_RequestUserInformation_params struct ISteamFriends_SteamFriends008_RequestClanOfficerList_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends008_GetClanOwner_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends008_GetClanOfficerCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends008_GetClanOfficerByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iOfficer; @@ -29573,38 +29573,38 @@ struct ISteamFriends_SteamFriends008_GetClanOfficerByIndex_params struct ISteamFriends_SteamFriends008_GetUserRestrictions_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends009_GetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends009_SetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends009_GetPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends009_GetFriendCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends009_GetFriendByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -29612,28 +29612,28 @@ struct ISteamFriends_SteamFriends009_GetFriendByIndex_params struct ISteamFriends_SteamFriends009_GetFriendRelationship_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends009_GetFriendPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends009_GetFriendPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends009_GetFriendGamePlayed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; @@ -29641,7 +29641,7 @@ struct ISteamFriends_SteamFriends009_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends009_GetFriendPersonaNameHistory_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -29649,7 +29649,7 @@ struct ISteamFriends_SteamFriends009_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends009_HasFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -29657,41 +29657,41 @@ struct ISteamFriends_SteamFriends009_HasFriend_params struct ISteamFriends_SteamFriends009_GetClanCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends009_GetClanByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends009_GetClanName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends009_GetClanTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends009_GetFriendCountFromSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends009_GetFriendFromSourceByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -29699,7 +29699,7 @@ struct ISteamFriends_SteamFriends009_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends009_IsUserInSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; @@ -29707,72 +29707,72 @@ struct ISteamFriends_SteamFriends009_IsUserInSource_params struct ISteamFriends_SteamFriends009_SetInGameVoiceSpeaking_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUser; int8_t bSpeaking; }; struct ISteamFriends_SteamFriends009_ActivateGameOverlay_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchDialog; }; struct ISteamFriends_SteamFriends009_ActivateGameOverlayToUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchDialog; CSteamID steamID; }; struct ISteamFriends_SteamFriends009_ActivateGameOverlayToWebPage_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchURL; }; struct ISteamFriends_SteamFriends009_ActivateGameOverlayToStore_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t nAppID; }; struct ISteamFriends_SteamFriends009_SetPlayedWith_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUserPlayedWith; }; struct ISteamFriends_SteamFriends009_ActivateGameOverlayInviteDialog_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; }; struct ISteamFriends_SteamFriends009_GetSmallFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends009_GetMediumFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends009_GetLargeFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends009_RequestUserInformation_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; int8_t bRequireNameOnly; @@ -29780,28 +29780,28 @@ struct ISteamFriends_SteamFriends009_RequestUserInformation_params struct ISteamFriends_SteamFriends009_RequestClanOfficerList_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends009_GetClanOwner_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends009_GetClanOfficerCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends009_GetClanOfficerByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iOfficer; @@ -29809,13 +29809,13 @@ struct ISteamFriends_SteamFriends009_GetClanOfficerByIndex_params struct ISteamFriends_SteamFriends009_GetUserRestrictions_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends009_SetRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchKey; const char *pchValue; @@ -29823,12 +29823,12 @@ struct ISteamFriends_SteamFriends009_SetRichPresence_params struct ISteamFriends_SteamFriends009_ClearRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamFriends_SteamFriends009_GetFriendRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; const char *pchKey; @@ -29836,14 +29836,14 @@ struct ISteamFriends_SteamFriends009_GetFriendRichPresence_params struct ISteamFriends_SteamFriends009_GetFriendRichPresenceKeyCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends009_GetFriendRichPresenceKeyByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iKey; @@ -29851,7 +29851,7 @@ struct ISteamFriends_SteamFriends009_GetFriendRichPresenceKeyByIndex_params struct ISteamFriends_SteamFriends009_InviteUserToGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchConnectString; @@ -29859,59 +29859,59 @@ struct ISteamFriends_SteamFriends009_InviteUserToGame_params struct ISteamFriends_SteamFriends009_GetCoplayFriendCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends009_GetCoplayFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iCoplayFriend; }; struct ISteamFriends_SteamFriends009_GetFriendCoplayTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends009_GetFriendCoplayGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends010_GetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends010_SetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends010_GetPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends010_GetFriendCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends010_GetFriendByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -29919,28 +29919,28 @@ struct ISteamFriends_SteamFriends010_GetFriendByIndex_params struct ISteamFriends_SteamFriends010_GetFriendRelationship_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends010_GetFriendPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends010_GetFriendPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends010_GetFriendGamePlayed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; @@ -29948,7 +29948,7 @@ struct ISteamFriends_SteamFriends010_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends010_GetFriendPersonaNameHistory_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -29956,7 +29956,7 @@ struct ISteamFriends_SteamFriends010_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends010_HasFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -29964,34 +29964,34 @@ struct ISteamFriends_SteamFriends010_HasFriend_params struct ISteamFriends_SteamFriends010_GetClanCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends010_GetClanByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends010_GetClanName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends010_GetClanTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends010_GetClanActivityCounts_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClan; int32_t *pnOnline; @@ -30001,7 +30001,7 @@ struct ISteamFriends_SteamFriends010_GetClanActivityCounts_params struct ISteamFriends_SteamFriends010_DownloadClanActivityCounts_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID *psteamIDClans; int32_t cClansToRequest; @@ -30009,14 +30009,14 @@ struct ISteamFriends_SteamFriends010_DownloadClanActivityCounts_params struct ISteamFriends_SteamFriends010_GetFriendCountFromSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends010_GetFriendFromSourceByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -30024,7 +30024,7 @@ struct ISteamFriends_SteamFriends010_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends010_IsUserInSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; @@ -30032,72 +30032,72 @@ struct ISteamFriends_SteamFriends010_IsUserInSource_params struct ISteamFriends_SteamFriends010_SetInGameVoiceSpeaking_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUser; int8_t bSpeaking; }; struct ISteamFriends_SteamFriends010_ActivateGameOverlay_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchDialog; }; struct ISteamFriends_SteamFriends010_ActivateGameOverlayToUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchDialog; CSteamID steamID; }; struct ISteamFriends_SteamFriends010_ActivateGameOverlayToWebPage_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchURL; }; struct ISteamFriends_SteamFriends010_ActivateGameOverlayToStore_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t nAppID; }; struct ISteamFriends_SteamFriends010_SetPlayedWith_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUserPlayedWith; }; struct ISteamFriends_SteamFriends010_ActivateGameOverlayInviteDialog_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; }; struct ISteamFriends_SteamFriends010_GetSmallFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends010_GetMediumFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends010_GetLargeFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends010_RequestUserInformation_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; int8_t bRequireNameOnly; @@ -30105,28 +30105,28 @@ struct ISteamFriends_SteamFriends010_RequestUserInformation_params struct ISteamFriends_SteamFriends010_RequestClanOfficerList_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends010_GetClanOwner_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends010_GetClanOfficerCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends010_GetClanOfficerByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iOfficer; @@ -30134,13 +30134,13 @@ struct ISteamFriends_SteamFriends010_GetClanOfficerByIndex_params struct ISteamFriends_SteamFriends010_GetUserRestrictions_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends010_SetRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchKey; const char *pchValue; @@ -30148,12 +30148,12 @@ struct ISteamFriends_SteamFriends010_SetRichPresence_params struct ISteamFriends_SteamFriends010_ClearRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamFriends_SteamFriends010_GetFriendRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; const char *pchKey; @@ -30161,14 +30161,14 @@ struct ISteamFriends_SteamFriends010_GetFriendRichPresence_params struct ISteamFriends_SteamFriends010_GetFriendRichPresenceKeyCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends010_GetFriendRichPresenceKeyByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iKey; @@ -30176,7 +30176,7 @@ struct ISteamFriends_SteamFriends010_GetFriendRichPresenceKeyByIndex_params struct ISteamFriends_SteamFriends010_InviteUserToGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchConnectString; @@ -30184,55 +30184,55 @@ struct ISteamFriends_SteamFriends010_InviteUserToGame_params struct ISteamFriends_SteamFriends010_GetCoplayFriendCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends010_GetCoplayFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iCoplayFriend; }; struct ISteamFriends_SteamFriends010_GetFriendCoplayTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends010_GetFriendCoplayGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends010_JoinClanChatRoom_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends010_LeaveClanChatRoom_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends010_GetClanChatMemberCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends010_GetChatMemberByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iUser; @@ -30240,7 +30240,7 @@ struct ISteamFriends_SteamFriends010_GetChatMemberByIndex_params struct ISteamFriends_SteamFriends010_SendClanChatMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; const char *pchText; @@ -30248,7 +30248,7 @@ struct ISteamFriends_SteamFriends010_SendClanChatMessage_params struct ISteamFriends_SteamFriends010_GetClanChatMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDClanChat; int32_t iMessage; @@ -30260,7 +30260,7 @@ struct ISteamFriends_SteamFriends010_GetClanChatMessage_params struct ISteamFriends_SteamFriends010_IsClanChatAdmin_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; CSteamID steamIDUser; @@ -30268,35 +30268,35 @@ struct ISteamFriends_SteamFriends010_IsClanChatAdmin_params struct ISteamFriends_SteamFriends010_IsClanChatWindowOpenInSteam_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends010_OpenClanChatWindowInSteam_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends010_CloseClanChatWindowInSteam_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends010_SetListenForFriendsMessages_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bInterceptEnabled; }; struct ISteamFriends_SteamFriends010_ReplyToFriendMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchMsgToSend; @@ -30304,7 +30304,7 @@ struct ISteamFriends_SteamFriends010_ReplyToFriendMessage_params struct ISteamFriends_SteamFriends010_GetFriendMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; int32_t iMessageID; @@ -30315,32 +30315,32 @@ struct ISteamFriends_SteamFriends010_GetFriendMessage_params struct ISteamFriends_SteamFriends011_GetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends011_SetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends011_GetPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends011_GetFriendCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends011_GetFriendByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -30348,28 +30348,28 @@ struct ISteamFriends_SteamFriends011_GetFriendByIndex_params struct ISteamFriends_SteamFriends011_GetFriendRelationship_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends011_GetFriendPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends011_GetFriendPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends011_GetFriendGamePlayed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; @@ -30377,7 +30377,7 @@ struct ISteamFriends_SteamFriends011_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends011_GetFriendPersonaNameHistory_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -30385,7 +30385,7 @@ struct ISteamFriends_SteamFriends011_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends011_HasFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -30393,34 +30393,34 @@ struct ISteamFriends_SteamFriends011_HasFriend_params struct ISteamFriends_SteamFriends011_GetClanCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends011_GetClanByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends011_GetClanName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends011_GetClanTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends011_GetClanActivityCounts_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClan; int32_t *pnOnline; @@ -30430,7 +30430,7 @@ struct ISteamFriends_SteamFriends011_GetClanActivityCounts_params struct ISteamFriends_SteamFriends011_DownloadClanActivityCounts_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID *psteamIDClans; int32_t cClansToRequest; @@ -30438,14 +30438,14 @@ struct ISteamFriends_SteamFriends011_DownloadClanActivityCounts_params struct ISteamFriends_SteamFriends011_GetFriendCountFromSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends011_GetFriendFromSourceByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -30453,7 +30453,7 @@ struct ISteamFriends_SteamFriends011_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends011_IsUserInSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; @@ -30461,72 +30461,72 @@ struct ISteamFriends_SteamFriends011_IsUserInSource_params struct ISteamFriends_SteamFriends011_SetInGameVoiceSpeaking_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUser; int8_t bSpeaking; }; struct ISteamFriends_SteamFriends011_ActivateGameOverlay_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchDialog; }; struct ISteamFriends_SteamFriends011_ActivateGameOverlayToUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchDialog; CSteamID steamID; }; struct ISteamFriends_SteamFriends011_ActivateGameOverlayToWebPage_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchURL; }; struct ISteamFriends_SteamFriends011_ActivateGameOverlayToStore_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t nAppID; }; struct ISteamFriends_SteamFriends011_SetPlayedWith_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUserPlayedWith; }; struct ISteamFriends_SteamFriends011_ActivateGameOverlayInviteDialog_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; }; struct ISteamFriends_SteamFriends011_GetSmallFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends011_GetMediumFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends011_GetLargeFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends011_RequestUserInformation_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; int8_t bRequireNameOnly; @@ -30534,28 +30534,28 @@ struct ISteamFriends_SteamFriends011_RequestUserInformation_params struct ISteamFriends_SteamFriends011_RequestClanOfficerList_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends011_GetClanOwner_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends011_GetClanOfficerCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends011_GetClanOfficerByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iOfficer; @@ -30563,13 +30563,13 @@ struct ISteamFriends_SteamFriends011_GetClanOfficerByIndex_params struct ISteamFriends_SteamFriends011_GetUserRestrictions_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends011_SetRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchKey; const char *pchValue; @@ -30577,12 +30577,12 @@ struct ISteamFriends_SteamFriends011_SetRichPresence_params struct ISteamFriends_SteamFriends011_ClearRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamFriends_SteamFriends011_GetFriendRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; const char *pchKey; @@ -30590,14 +30590,14 @@ struct ISteamFriends_SteamFriends011_GetFriendRichPresence_params struct ISteamFriends_SteamFriends011_GetFriendRichPresenceKeyCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends011_GetFriendRichPresenceKeyByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iKey; @@ -30605,13 +30605,13 @@ struct ISteamFriends_SteamFriends011_GetFriendRichPresenceKeyByIndex_params struct ISteamFriends_SteamFriends011_RequestFriendRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends011_InviteUserToGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchConnectString; @@ -30619,55 +30619,55 @@ struct ISteamFriends_SteamFriends011_InviteUserToGame_params struct ISteamFriends_SteamFriends011_GetCoplayFriendCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends011_GetCoplayFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iCoplayFriend; }; struct ISteamFriends_SteamFriends011_GetFriendCoplayTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends011_GetFriendCoplayGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends011_JoinClanChatRoom_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends011_LeaveClanChatRoom_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends011_GetClanChatMemberCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends011_GetChatMemberByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iUser; @@ -30675,7 +30675,7 @@ struct ISteamFriends_SteamFriends011_GetChatMemberByIndex_params struct ISteamFriends_SteamFriends011_SendClanChatMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; const char *pchText; @@ -30683,7 +30683,7 @@ struct ISteamFriends_SteamFriends011_SendClanChatMessage_params struct ISteamFriends_SteamFriends011_GetClanChatMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDClanChat; int32_t iMessage; @@ -30695,7 +30695,7 @@ struct ISteamFriends_SteamFriends011_GetClanChatMessage_params struct ISteamFriends_SteamFriends011_IsClanChatAdmin_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; CSteamID steamIDUser; @@ -30703,35 +30703,35 @@ struct ISteamFriends_SteamFriends011_IsClanChatAdmin_params struct ISteamFriends_SteamFriends011_IsClanChatWindowOpenInSteam_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends011_OpenClanChatWindowInSteam_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends011_CloseClanChatWindowInSteam_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends011_SetListenForFriendsMessages_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bInterceptEnabled; }; struct ISteamFriends_SteamFriends011_ReplyToFriendMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchMsgToSend; @@ -30739,7 +30739,7 @@ struct ISteamFriends_SteamFriends011_ReplyToFriendMessage_params struct ISteamFriends_SteamFriends011_GetFriendMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; int32_t iMessageID; @@ -30750,54 +30750,54 @@ struct ISteamFriends_SteamFriends011_GetFriendMessage_params struct ISteamFriends_SteamFriends011_GetFollowerCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends011_IsFollowing_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends011_EnumerateFollowingList_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamFriends_SteamFriends012_GetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends012_SetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends012_GetPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends012_GetFriendCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends012_GetFriendByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -30805,28 +30805,28 @@ struct ISteamFriends_SteamFriends012_GetFriendByIndex_params struct ISteamFriends_SteamFriends012_GetFriendRelationship_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends012_GetFriendPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends012_GetFriendPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends012_GetFriendGamePlayed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; @@ -30834,7 +30834,7 @@ struct ISteamFriends_SteamFriends012_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends012_GetFriendPersonaNameHistory_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -30842,7 +30842,7 @@ struct ISteamFriends_SteamFriends012_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends012_HasFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -30850,34 +30850,34 @@ struct ISteamFriends_SteamFriends012_HasFriend_params struct ISteamFriends_SteamFriends012_GetClanCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends012_GetClanByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends012_GetClanName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends012_GetClanTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends012_GetClanActivityCounts_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClan; int32_t *pnOnline; @@ -30887,7 +30887,7 @@ struct ISteamFriends_SteamFriends012_GetClanActivityCounts_params struct ISteamFriends_SteamFriends012_DownloadClanActivityCounts_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID *psteamIDClans; int32_t cClansToRequest; @@ -30895,14 +30895,14 @@ struct ISteamFriends_SteamFriends012_DownloadClanActivityCounts_params struct ISteamFriends_SteamFriends012_GetFriendCountFromSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends012_GetFriendFromSourceByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -30910,7 +30910,7 @@ struct ISteamFriends_SteamFriends012_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends012_IsUserInSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; @@ -30918,72 +30918,72 @@ struct ISteamFriends_SteamFriends012_IsUserInSource_params struct ISteamFriends_SteamFriends012_SetInGameVoiceSpeaking_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUser; int8_t bSpeaking; }; struct ISteamFriends_SteamFriends012_ActivateGameOverlay_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchDialog; }; struct ISteamFriends_SteamFriends012_ActivateGameOverlayToUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchDialog; CSteamID steamID; }; struct ISteamFriends_SteamFriends012_ActivateGameOverlayToWebPage_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchURL; }; struct ISteamFriends_SteamFriends012_ActivateGameOverlayToStore_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t nAppID; }; struct ISteamFriends_SteamFriends012_SetPlayedWith_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUserPlayedWith; }; struct ISteamFriends_SteamFriends012_ActivateGameOverlayInviteDialog_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; }; struct ISteamFriends_SteamFriends012_GetSmallFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends012_GetMediumFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends012_GetLargeFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends012_RequestUserInformation_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; int8_t bRequireNameOnly; @@ -30991,28 +30991,28 @@ struct ISteamFriends_SteamFriends012_RequestUserInformation_params struct ISteamFriends_SteamFriends012_RequestClanOfficerList_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends012_GetClanOwner_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends012_GetClanOfficerCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends012_GetClanOfficerByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iOfficer; @@ -31020,13 +31020,13 @@ struct ISteamFriends_SteamFriends012_GetClanOfficerByIndex_params struct ISteamFriends_SteamFriends012_GetUserRestrictions_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends012_SetRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchKey; const char *pchValue; @@ -31034,12 +31034,12 @@ struct ISteamFriends_SteamFriends012_SetRichPresence_params struct ISteamFriends_SteamFriends012_ClearRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamFriends_SteamFriends012_GetFriendRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; const char *pchKey; @@ -31047,14 +31047,14 @@ struct ISteamFriends_SteamFriends012_GetFriendRichPresence_params struct ISteamFriends_SteamFriends012_GetFriendRichPresenceKeyCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends012_GetFriendRichPresenceKeyByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iKey; @@ -31062,13 +31062,13 @@ struct ISteamFriends_SteamFriends012_GetFriendRichPresenceKeyByIndex_params struct ISteamFriends_SteamFriends012_RequestFriendRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends012_InviteUserToGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchConnectString; @@ -31076,55 +31076,55 @@ struct ISteamFriends_SteamFriends012_InviteUserToGame_params struct ISteamFriends_SteamFriends012_GetCoplayFriendCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends012_GetCoplayFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iCoplayFriend; }; struct ISteamFriends_SteamFriends012_GetFriendCoplayTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends012_GetFriendCoplayGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends012_JoinClanChatRoom_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends012_LeaveClanChatRoom_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends012_GetClanChatMemberCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends012_GetChatMemberByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iUser; @@ -31132,7 +31132,7 @@ struct ISteamFriends_SteamFriends012_GetChatMemberByIndex_params struct ISteamFriends_SteamFriends012_SendClanChatMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; const char *pchText; @@ -31140,7 +31140,7 @@ struct ISteamFriends_SteamFriends012_SendClanChatMessage_params struct ISteamFriends_SteamFriends012_GetClanChatMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDClanChat; int32_t iMessage; @@ -31152,7 +31152,7 @@ struct ISteamFriends_SteamFriends012_GetClanChatMessage_params struct ISteamFriends_SteamFriends012_IsClanChatAdmin_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; CSteamID steamIDUser; @@ -31160,35 +31160,35 @@ struct ISteamFriends_SteamFriends012_IsClanChatAdmin_params struct ISteamFriends_SteamFriends012_IsClanChatWindowOpenInSteam_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends012_OpenClanChatWindowInSteam_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends012_CloseClanChatWindowInSteam_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends012_SetListenForFriendsMessages_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bInterceptEnabled; }; struct ISteamFriends_SteamFriends012_ReplyToFriendMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchMsgToSend; @@ -31196,7 +31196,7 @@ struct ISteamFriends_SteamFriends012_ReplyToFriendMessage_params struct ISteamFriends_SteamFriends012_GetFriendMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; int32_t iMessageID; @@ -31207,54 +31207,54 @@ struct ISteamFriends_SteamFriends012_GetFriendMessage_params struct ISteamFriends_SteamFriends012_GetFollowerCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends012_IsFollowing_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends012_EnumerateFollowingList_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamFriends_SteamFriends013_GetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends013_SetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends013_GetPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends013_GetFriendCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends013_GetFriendByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -31262,28 +31262,28 @@ struct ISteamFriends_SteamFriends013_GetFriendByIndex_params struct ISteamFriends_SteamFriends013_GetFriendRelationship_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends013_GetFriendPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends013_GetFriendPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends013_GetFriendGamePlayed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; @@ -31291,7 +31291,7 @@ struct ISteamFriends_SteamFriends013_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends013_GetFriendPersonaNameHistory_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -31299,7 +31299,7 @@ struct ISteamFriends_SteamFriends013_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends013_HasFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -31307,34 +31307,34 @@ struct ISteamFriends_SteamFriends013_HasFriend_params struct ISteamFriends_SteamFriends013_GetClanCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends013_GetClanByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends013_GetClanName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends013_GetClanTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends013_GetClanActivityCounts_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClan; int32_t *pnOnline; @@ -31344,7 +31344,7 @@ struct ISteamFriends_SteamFriends013_GetClanActivityCounts_params struct ISteamFriends_SteamFriends013_DownloadClanActivityCounts_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID *psteamIDClans; int32_t cClansToRequest; @@ -31352,14 +31352,14 @@ struct ISteamFriends_SteamFriends013_DownloadClanActivityCounts_params struct ISteamFriends_SteamFriends013_GetFriendCountFromSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends013_GetFriendFromSourceByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -31367,7 +31367,7 @@ struct ISteamFriends_SteamFriends013_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends013_IsUserInSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; @@ -31375,73 +31375,73 @@ struct ISteamFriends_SteamFriends013_IsUserInSource_params struct ISteamFriends_SteamFriends013_SetInGameVoiceSpeaking_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUser; int8_t bSpeaking; }; struct ISteamFriends_SteamFriends013_ActivateGameOverlay_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchDialog; }; struct ISteamFriends_SteamFriends013_ActivateGameOverlayToUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchDialog; CSteamID steamID; }; struct ISteamFriends_SteamFriends013_ActivateGameOverlayToWebPage_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchURL; }; struct ISteamFriends_SteamFriends013_ActivateGameOverlayToStore_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t nAppID; uint32_t eFlag; }; struct ISteamFriends_SteamFriends013_SetPlayedWith_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUserPlayedWith; }; struct ISteamFriends_SteamFriends013_ActivateGameOverlayInviteDialog_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; }; struct ISteamFriends_SteamFriends013_GetSmallFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends013_GetMediumFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends013_GetLargeFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends013_RequestUserInformation_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; int8_t bRequireNameOnly; @@ -31449,28 +31449,28 @@ struct ISteamFriends_SteamFriends013_RequestUserInformation_params struct ISteamFriends_SteamFriends013_RequestClanOfficerList_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends013_GetClanOwner_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends013_GetClanOfficerCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends013_GetClanOfficerByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iOfficer; @@ -31478,13 +31478,13 @@ struct ISteamFriends_SteamFriends013_GetClanOfficerByIndex_params struct ISteamFriends_SteamFriends013_GetUserRestrictions_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends013_SetRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchKey; const char *pchValue; @@ -31492,12 +31492,12 @@ struct ISteamFriends_SteamFriends013_SetRichPresence_params struct ISteamFriends_SteamFriends013_ClearRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamFriends_SteamFriends013_GetFriendRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; const char *pchKey; @@ -31505,14 +31505,14 @@ struct ISteamFriends_SteamFriends013_GetFriendRichPresence_params struct ISteamFriends_SteamFriends013_GetFriendRichPresenceKeyCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends013_GetFriendRichPresenceKeyByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iKey; @@ -31520,13 +31520,13 @@ struct ISteamFriends_SteamFriends013_GetFriendRichPresenceKeyByIndex_params struct ISteamFriends_SteamFriends013_RequestFriendRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends013_InviteUserToGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchConnectString; @@ -31534,55 +31534,55 @@ struct ISteamFriends_SteamFriends013_InviteUserToGame_params struct ISteamFriends_SteamFriends013_GetCoplayFriendCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends013_GetCoplayFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iCoplayFriend; }; struct ISteamFriends_SteamFriends013_GetFriendCoplayTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends013_GetFriendCoplayGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends013_JoinClanChatRoom_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends013_LeaveClanChatRoom_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends013_GetClanChatMemberCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends013_GetChatMemberByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iUser; @@ -31590,7 +31590,7 @@ struct ISteamFriends_SteamFriends013_GetChatMemberByIndex_params struct ISteamFriends_SteamFriends013_SendClanChatMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; const char *pchText; @@ -31598,7 +31598,7 @@ struct ISteamFriends_SteamFriends013_SendClanChatMessage_params struct ISteamFriends_SteamFriends013_GetClanChatMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDClanChat; int32_t iMessage; @@ -31610,7 +31610,7 @@ struct ISteamFriends_SteamFriends013_GetClanChatMessage_params struct ISteamFriends_SteamFriends013_IsClanChatAdmin_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; CSteamID steamIDUser; @@ -31618,35 +31618,35 @@ struct ISteamFriends_SteamFriends013_IsClanChatAdmin_params struct ISteamFriends_SteamFriends013_IsClanChatWindowOpenInSteam_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends013_OpenClanChatWindowInSteam_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends013_CloseClanChatWindowInSteam_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends013_SetListenForFriendsMessages_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bInterceptEnabled; }; struct ISteamFriends_SteamFriends013_ReplyToFriendMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchMsgToSend; @@ -31654,7 +31654,7 @@ struct ISteamFriends_SteamFriends013_ReplyToFriendMessage_params struct ISteamFriends_SteamFriends013_GetFriendMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; int32_t iMessageID; @@ -31665,54 +31665,54 @@ struct ISteamFriends_SteamFriends013_GetFriendMessage_params struct ISteamFriends_SteamFriends013_GetFollowerCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends013_IsFollowing_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends013_EnumerateFollowingList_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamFriends_SteamFriends014_GetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends014_SetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends014_GetPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends014_GetFriendCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends014_GetFriendByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -31720,28 +31720,28 @@ struct ISteamFriends_SteamFriends014_GetFriendByIndex_params struct ISteamFriends_SteamFriends014_GetFriendRelationship_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends014_GetFriendPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends014_GetFriendPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends014_GetFriendGamePlayed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; @@ -31749,7 +31749,7 @@ struct ISteamFriends_SteamFriends014_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends014_GetFriendPersonaNameHistory_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -31757,14 +31757,14 @@ struct ISteamFriends_SteamFriends014_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends014_GetPlayerNickname_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDPlayer; }; struct ISteamFriends_SteamFriends014_HasFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -31772,34 +31772,34 @@ struct ISteamFriends_SteamFriends014_HasFriend_params struct ISteamFriends_SteamFriends014_GetClanCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends014_GetClanByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends014_GetClanName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends014_GetClanTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends014_GetClanActivityCounts_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClan; int32_t *pnOnline; @@ -31809,7 +31809,7 @@ struct ISteamFriends_SteamFriends014_GetClanActivityCounts_params struct ISteamFriends_SteamFriends014_DownloadClanActivityCounts_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID *psteamIDClans; int32_t cClansToRequest; @@ -31817,14 +31817,14 @@ struct ISteamFriends_SteamFriends014_DownloadClanActivityCounts_params struct ISteamFriends_SteamFriends014_GetFriendCountFromSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends014_GetFriendFromSourceByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -31832,7 +31832,7 @@ struct ISteamFriends_SteamFriends014_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends014_IsUserInSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; @@ -31840,73 +31840,73 @@ struct ISteamFriends_SteamFriends014_IsUserInSource_params struct ISteamFriends_SteamFriends014_SetInGameVoiceSpeaking_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUser; int8_t bSpeaking; }; struct ISteamFriends_SteamFriends014_ActivateGameOverlay_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchDialog; }; struct ISteamFriends_SteamFriends014_ActivateGameOverlayToUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchDialog; CSteamID steamID; }; struct ISteamFriends_SteamFriends014_ActivateGameOverlayToWebPage_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchURL; }; struct ISteamFriends_SteamFriends014_ActivateGameOverlayToStore_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t nAppID; uint32_t eFlag; }; struct ISteamFriends_SteamFriends014_SetPlayedWith_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUserPlayedWith; }; struct ISteamFriends_SteamFriends014_ActivateGameOverlayInviteDialog_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; }; struct ISteamFriends_SteamFriends014_GetSmallFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends014_GetMediumFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends014_GetLargeFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends014_RequestUserInformation_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; int8_t bRequireNameOnly; @@ -31914,28 +31914,28 @@ struct ISteamFriends_SteamFriends014_RequestUserInformation_params struct ISteamFriends_SteamFriends014_RequestClanOfficerList_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends014_GetClanOwner_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends014_GetClanOfficerCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends014_GetClanOfficerByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iOfficer; @@ -31943,13 +31943,13 @@ struct ISteamFriends_SteamFriends014_GetClanOfficerByIndex_params struct ISteamFriends_SteamFriends014_GetUserRestrictions_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends014_SetRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchKey; const char *pchValue; @@ -31957,12 +31957,12 @@ struct ISteamFriends_SteamFriends014_SetRichPresence_params struct ISteamFriends_SteamFriends014_ClearRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamFriends_SteamFriends014_GetFriendRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; const char *pchKey; @@ -31970,14 +31970,14 @@ struct ISteamFriends_SteamFriends014_GetFriendRichPresence_params struct ISteamFriends_SteamFriends014_GetFriendRichPresenceKeyCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends014_GetFriendRichPresenceKeyByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iKey; @@ -31985,13 +31985,13 @@ struct ISteamFriends_SteamFriends014_GetFriendRichPresenceKeyByIndex_params struct ISteamFriends_SteamFriends014_RequestFriendRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends014_InviteUserToGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchConnectString; @@ -31999,55 +31999,55 @@ struct ISteamFriends_SteamFriends014_InviteUserToGame_params struct ISteamFriends_SteamFriends014_GetCoplayFriendCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends014_GetCoplayFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iCoplayFriend; }; struct ISteamFriends_SteamFriends014_GetFriendCoplayTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends014_GetFriendCoplayGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends014_JoinClanChatRoom_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends014_LeaveClanChatRoom_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends014_GetClanChatMemberCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends014_GetChatMemberByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iUser; @@ -32055,7 +32055,7 @@ struct ISteamFriends_SteamFriends014_GetChatMemberByIndex_params struct ISteamFriends_SteamFriends014_SendClanChatMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; const char *pchText; @@ -32063,7 +32063,7 @@ struct ISteamFriends_SteamFriends014_SendClanChatMessage_params struct ISteamFriends_SteamFriends014_GetClanChatMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDClanChat; int32_t iMessage; @@ -32075,7 +32075,7 @@ struct ISteamFriends_SteamFriends014_GetClanChatMessage_params struct ISteamFriends_SteamFriends014_IsClanChatAdmin_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; CSteamID steamIDUser; @@ -32083,35 +32083,35 @@ struct ISteamFriends_SteamFriends014_IsClanChatAdmin_params struct ISteamFriends_SteamFriends014_IsClanChatWindowOpenInSteam_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends014_OpenClanChatWindowInSteam_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends014_CloseClanChatWindowInSteam_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends014_SetListenForFriendsMessages_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bInterceptEnabled; }; struct ISteamFriends_SteamFriends014_ReplyToFriendMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchMsgToSend; @@ -32119,7 +32119,7 @@ struct ISteamFriends_SteamFriends014_ReplyToFriendMessage_params struct ISteamFriends_SteamFriends014_GetFriendMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; int32_t iMessageID; @@ -32130,54 +32130,54 @@ struct ISteamFriends_SteamFriends014_GetFriendMessage_params struct ISteamFriends_SteamFriends014_GetFollowerCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends014_IsFollowing_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends014_EnumerateFollowingList_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamFriends_SteamFriends015_GetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends015_SetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends015_GetPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends015_GetFriendCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends015_GetFriendByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -32185,28 +32185,28 @@ struct ISteamFriends_SteamFriends015_GetFriendByIndex_params struct ISteamFriends_SteamFriends015_GetFriendRelationship_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends015_GetFriendPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends015_GetFriendPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends015_GetFriendGamePlayed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; @@ -32214,7 +32214,7 @@ struct ISteamFriends_SteamFriends015_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends015_GetFriendPersonaNameHistory_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -32222,48 +32222,48 @@ struct ISteamFriends_SteamFriends015_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends015_GetFriendSteamLevel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends015_GetPlayerNickname_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDPlayer; }; struct ISteamFriends_SteamFriends015_GetFriendsGroupCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends015_GetFriendsGroupIDByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; int16_t _ret; int32_t iFG; }; struct ISteamFriends_SteamFriends015_GetFriendsGroupName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; int16_t friendsGroupID; }; struct ISteamFriends_SteamFriends015_GetFriendsGroupMembersCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int16_t friendsGroupID; }; struct ISteamFriends_SteamFriends015_GetFriendsGroupMembersList_params { - struct u_iface *u_iface; + struct u_iface u_iface; int16_t friendsGroupID; CSteamID *pOutSteamIDMembers; int32_t nMembersCount; @@ -32271,7 +32271,7 @@ struct ISteamFriends_SteamFriends015_GetFriendsGroupMembersList_params struct ISteamFriends_SteamFriends015_HasFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -32279,34 +32279,34 @@ struct ISteamFriends_SteamFriends015_HasFriend_params struct ISteamFriends_SteamFriends015_GetClanCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends015_GetClanByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends015_GetClanName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends015_GetClanTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends015_GetClanActivityCounts_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClan; int32_t *pnOnline; @@ -32316,7 +32316,7 @@ struct ISteamFriends_SteamFriends015_GetClanActivityCounts_params struct ISteamFriends_SteamFriends015_DownloadClanActivityCounts_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID *psteamIDClans; int32_t cClansToRequest; @@ -32324,14 +32324,14 @@ struct ISteamFriends_SteamFriends015_DownloadClanActivityCounts_params struct ISteamFriends_SteamFriends015_GetFriendCountFromSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends015_GetFriendFromSourceByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -32339,7 +32339,7 @@ struct ISteamFriends_SteamFriends015_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends015_IsUserInSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; @@ -32347,73 +32347,73 @@ struct ISteamFriends_SteamFriends015_IsUserInSource_params struct ISteamFriends_SteamFriends015_SetInGameVoiceSpeaking_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUser; int8_t bSpeaking; }; struct ISteamFriends_SteamFriends015_ActivateGameOverlay_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchDialog; }; struct ISteamFriends_SteamFriends015_ActivateGameOverlayToUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchDialog; CSteamID steamID; }; struct ISteamFriends_SteamFriends015_ActivateGameOverlayToWebPage_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchURL; }; struct ISteamFriends_SteamFriends015_ActivateGameOverlayToStore_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t nAppID; uint32_t eFlag; }; struct ISteamFriends_SteamFriends015_SetPlayedWith_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUserPlayedWith; }; struct ISteamFriends_SteamFriends015_ActivateGameOverlayInviteDialog_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; }; struct ISteamFriends_SteamFriends015_GetSmallFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends015_GetMediumFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends015_GetLargeFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends015_RequestUserInformation_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; int8_t bRequireNameOnly; @@ -32421,28 +32421,28 @@ struct ISteamFriends_SteamFriends015_RequestUserInformation_params struct ISteamFriends_SteamFriends015_RequestClanOfficerList_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends015_GetClanOwner_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends015_GetClanOfficerCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends015_GetClanOfficerByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iOfficer; @@ -32450,13 +32450,13 @@ struct ISteamFriends_SteamFriends015_GetClanOfficerByIndex_params struct ISteamFriends_SteamFriends015_GetUserRestrictions_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends015_SetRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchKey; const char *pchValue; @@ -32464,12 +32464,12 @@ struct ISteamFriends_SteamFriends015_SetRichPresence_params struct ISteamFriends_SteamFriends015_ClearRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamFriends_SteamFriends015_GetFriendRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; const char *pchKey; @@ -32477,14 +32477,14 @@ struct ISteamFriends_SteamFriends015_GetFriendRichPresence_params struct ISteamFriends_SteamFriends015_GetFriendRichPresenceKeyCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends015_GetFriendRichPresenceKeyByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iKey; @@ -32492,13 +32492,13 @@ struct ISteamFriends_SteamFriends015_GetFriendRichPresenceKeyByIndex_params struct ISteamFriends_SteamFriends015_RequestFriendRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends015_InviteUserToGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchConnectString; @@ -32506,55 +32506,55 @@ struct ISteamFriends_SteamFriends015_InviteUserToGame_params struct ISteamFriends_SteamFriends015_GetCoplayFriendCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends015_GetCoplayFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iCoplayFriend; }; struct ISteamFriends_SteamFriends015_GetFriendCoplayTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends015_GetFriendCoplayGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends015_JoinClanChatRoom_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends015_LeaveClanChatRoom_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends015_GetClanChatMemberCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends015_GetChatMemberByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iUser; @@ -32562,7 +32562,7 @@ struct ISteamFriends_SteamFriends015_GetChatMemberByIndex_params struct ISteamFriends_SteamFriends015_SendClanChatMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; const char *pchText; @@ -32570,7 +32570,7 @@ struct ISteamFriends_SteamFriends015_SendClanChatMessage_params struct ISteamFriends_SteamFriends015_GetClanChatMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDClanChat; int32_t iMessage; @@ -32582,7 +32582,7 @@ struct ISteamFriends_SteamFriends015_GetClanChatMessage_params struct ISteamFriends_SteamFriends015_IsClanChatAdmin_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; CSteamID steamIDUser; @@ -32590,35 +32590,35 @@ struct ISteamFriends_SteamFriends015_IsClanChatAdmin_params struct ISteamFriends_SteamFriends015_IsClanChatWindowOpenInSteam_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends015_OpenClanChatWindowInSteam_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends015_CloseClanChatWindowInSteam_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends015_SetListenForFriendsMessages_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bInterceptEnabled; }; struct ISteamFriends_SteamFriends015_ReplyToFriendMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchMsgToSend; @@ -32626,7 +32626,7 @@ struct ISteamFriends_SteamFriends015_ReplyToFriendMessage_params struct ISteamFriends_SteamFriends015_GetFriendMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; int32_t iMessageID; @@ -32637,68 +32637,68 @@ struct ISteamFriends_SteamFriends015_GetFriendMessage_params struct ISteamFriends_SteamFriends015_GetFollowerCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends015_IsFollowing_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends015_EnumerateFollowingList_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamFriends_SteamFriends015_IsClanPublic_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends015_IsClanOfficialGameGroup_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends017_GetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends017_SetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends017_GetPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends017_GetFriendCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends017_GetFriendByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -32706,28 +32706,28 @@ struct ISteamFriends_SteamFriends017_GetFriendByIndex_params struct ISteamFriends_SteamFriends017_GetFriendRelationship_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends017_GetFriendPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends017_GetFriendPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends017_GetFriendGamePlayed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; @@ -32735,7 +32735,7 @@ struct ISteamFriends_SteamFriends017_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends017_GetFriendPersonaNameHistory_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -32743,48 +32743,48 @@ struct ISteamFriends_SteamFriends017_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends017_GetFriendSteamLevel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends017_GetPlayerNickname_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDPlayer; }; struct ISteamFriends_SteamFriends017_GetFriendsGroupCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends017_GetFriendsGroupIDByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; int16_t _ret; int32_t iFG; }; struct ISteamFriends_SteamFriends017_GetFriendsGroupName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; int16_t friendsGroupID; }; struct ISteamFriends_SteamFriends017_GetFriendsGroupMembersCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int16_t friendsGroupID; }; struct ISteamFriends_SteamFriends017_GetFriendsGroupMembersList_params { - struct u_iface *u_iface; + struct u_iface u_iface; int16_t friendsGroupID; CSteamID *pOutSteamIDMembers; int32_t nMembersCount; @@ -32792,7 +32792,7 @@ struct ISteamFriends_SteamFriends017_GetFriendsGroupMembersList_params struct ISteamFriends_SteamFriends017_HasFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -32800,34 +32800,34 @@ struct ISteamFriends_SteamFriends017_HasFriend_params struct ISteamFriends_SteamFriends017_GetClanCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends017_GetClanByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends017_GetClanName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends017_GetClanTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends017_GetClanActivityCounts_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClan; int32_t *pnOnline; @@ -32837,7 +32837,7 @@ struct ISteamFriends_SteamFriends017_GetClanActivityCounts_params struct ISteamFriends_SteamFriends017_DownloadClanActivityCounts_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID *psteamIDClans; int32_t cClansToRequest; @@ -32845,14 +32845,14 @@ struct ISteamFriends_SteamFriends017_DownloadClanActivityCounts_params struct ISteamFriends_SteamFriends017_GetFriendCountFromSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends017_GetFriendFromSourceByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -32860,7 +32860,7 @@ struct ISteamFriends_SteamFriends017_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends017_IsUserInSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; @@ -32868,74 +32868,74 @@ struct ISteamFriends_SteamFriends017_IsUserInSource_params struct ISteamFriends_SteamFriends017_SetInGameVoiceSpeaking_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUser; int8_t bSpeaking; }; struct ISteamFriends_SteamFriends017_ActivateGameOverlay_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchDialog; }; struct ISteamFriends_SteamFriends017_ActivateGameOverlayToUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchDialog; CSteamID steamID; }; struct ISteamFriends_SteamFriends017_ActivateGameOverlayToWebPage_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchURL; uint32_t eMode; }; struct ISteamFriends_SteamFriends017_ActivateGameOverlayToStore_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t nAppID; uint32_t eFlag; }; struct ISteamFriends_SteamFriends017_SetPlayedWith_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUserPlayedWith; }; struct ISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialog_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; }; struct ISteamFriends_SteamFriends017_GetSmallFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends017_GetMediumFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends017_GetLargeFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends017_RequestUserInformation_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; int8_t bRequireNameOnly; @@ -32943,28 +32943,28 @@ struct ISteamFriends_SteamFriends017_RequestUserInformation_params struct ISteamFriends_SteamFriends017_RequestClanOfficerList_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends017_GetClanOwner_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends017_GetClanOfficerCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends017_GetClanOfficerByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iOfficer; @@ -32972,13 +32972,13 @@ struct ISteamFriends_SteamFriends017_GetClanOfficerByIndex_params struct ISteamFriends_SteamFriends017_GetUserRestrictions_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends017_SetRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchKey; const char *pchValue; @@ -32986,12 +32986,12 @@ struct ISteamFriends_SteamFriends017_SetRichPresence_params struct ISteamFriends_SteamFriends017_ClearRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamFriends_SteamFriends017_GetFriendRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; const char *pchKey; @@ -32999,14 +32999,14 @@ struct ISteamFriends_SteamFriends017_GetFriendRichPresence_params struct ISteamFriends_SteamFriends017_GetFriendRichPresenceKeyCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends017_GetFriendRichPresenceKeyByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iKey; @@ -33014,13 +33014,13 @@ struct ISteamFriends_SteamFriends017_GetFriendRichPresenceKeyByIndex_params struct ISteamFriends_SteamFriends017_RequestFriendRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends017_InviteUserToGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchConnectString; @@ -33028,55 +33028,55 @@ struct ISteamFriends_SteamFriends017_InviteUserToGame_params struct ISteamFriends_SteamFriends017_GetCoplayFriendCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends017_GetCoplayFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iCoplayFriend; }; struct ISteamFriends_SteamFriends017_GetFriendCoplayTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends017_GetFriendCoplayGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends017_JoinClanChatRoom_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends017_LeaveClanChatRoom_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends017_GetClanChatMemberCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends017_GetChatMemberByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iUser; @@ -33084,7 +33084,7 @@ struct ISteamFriends_SteamFriends017_GetChatMemberByIndex_params struct ISteamFriends_SteamFriends017_SendClanChatMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; const char *pchText; @@ -33092,7 +33092,7 @@ struct ISteamFriends_SteamFriends017_SendClanChatMessage_params struct ISteamFriends_SteamFriends017_GetClanChatMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDClanChat; int32_t iMessage; @@ -33104,7 +33104,7 @@ struct ISteamFriends_SteamFriends017_GetClanChatMessage_params struct ISteamFriends_SteamFriends017_IsClanChatAdmin_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; CSteamID steamIDUser; @@ -33112,35 +33112,35 @@ struct ISteamFriends_SteamFriends017_IsClanChatAdmin_params struct ISteamFriends_SteamFriends017_IsClanChatWindowOpenInSteam_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends017_OpenClanChatWindowInSteam_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends017_CloseClanChatWindowInSteam_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends017_SetListenForFriendsMessages_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bInterceptEnabled; }; struct ISteamFriends_SteamFriends017_ReplyToFriendMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchMsgToSend; @@ -33148,7 +33148,7 @@ struct ISteamFriends_SteamFriends017_ReplyToFriendMessage_params struct ISteamFriends_SteamFriends017_GetFriendMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; int32_t iMessageID; @@ -33159,74 +33159,74 @@ struct ISteamFriends_SteamFriends017_GetFriendMessage_params struct ISteamFriends_SteamFriends017_GetFollowerCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends017_IsFollowing_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends017_EnumerateFollowingList_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamFriends_SteamFriends017_IsClanPublic_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends017_IsClanOfficialGameGroup_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends017_GetNumChatsWithUnreadPriorityMessages_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends017_ActivateGameOverlayRemotePlayTogetherInviteDialog_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; }; struct ISteamFriends_SteamFriends017_RegisterProtocolInOverlayBrowser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchProtocol; }; struct ISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialogConnectString_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchConnectString; }; struct ISteamFriends_SteamFriends017_RequestEquippedProfileItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends017_BHasEquippedProfileItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamID; uint32_t itemType; @@ -33234,7 +33234,7 @@ struct ISteamFriends_SteamFriends017_BHasEquippedProfileItem_params struct ISteamFriends_SteamFriends017_GetProfileItemPropertyString_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamID; uint32_t itemType; @@ -33243,7 +33243,7 @@ struct ISteamFriends_SteamFriends017_GetProfileItemPropertyString_params struct ISteamFriends_SteamFriends017_GetProfileItemPropertyUint_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamID; uint32_t itemType; @@ -33252,26 +33252,26 @@ struct ISteamFriends_SteamFriends017_GetProfileItemPropertyUint_params struct ISteamFriends_SteamFriends018_GetPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends018_GetPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends018_GetFriendCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends018_GetFriendByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -33279,28 +33279,28 @@ struct ISteamFriends_SteamFriends018_GetFriendByIndex_params struct ISteamFriends_SteamFriends018_GetFriendRelationship_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends018_GetFriendPersonaState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends018_GetFriendPersonaName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends018_GetFriendGamePlayed_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; @@ -33308,7 +33308,7 @@ struct ISteamFriends_SteamFriends018_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends018_GetFriendPersonaNameHistory_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -33316,48 +33316,48 @@ struct ISteamFriends_SteamFriends018_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends018_GetFriendSteamLevel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends018_GetPlayerNickname_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDPlayer; }; struct ISteamFriends_SteamFriends018_GetFriendsGroupCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends018_GetFriendsGroupIDByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; int16_t _ret; int32_t iFG; }; struct ISteamFriends_SteamFriends018_GetFriendsGroupName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; int16_t friendsGroupID; }; struct ISteamFriends_SteamFriends018_GetFriendsGroupMembersCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int16_t friendsGroupID; }; struct ISteamFriends_SteamFriends018_GetFriendsGroupMembersList_params { - struct u_iface *u_iface; + struct u_iface u_iface; int16_t friendsGroupID; CSteamID *pOutSteamIDMembers; int32_t nMembersCount; @@ -33365,7 +33365,7 @@ struct ISteamFriends_SteamFriends018_GetFriendsGroupMembersList_params struct ISteamFriends_SteamFriends018_HasFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -33373,34 +33373,34 @@ struct ISteamFriends_SteamFriends018_HasFriend_params struct ISteamFriends_SteamFriends018_GetClanCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends018_GetClanByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends018_GetClanName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends018_GetClanTag_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends018_GetClanActivityCounts_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClan; int32_t *pnOnline; @@ -33410,7 +33410,7 @@ struct ISteamFriends_SteamFriends018_GetClanActivityCounts_params struct ISteamFriends_SteamFriends018_DownloadClanActivityCounts_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID *psteamIDClans; int32_t cClansToRequest; @@ -33418,14 +33418,14 @@ struct ISteamFriends_SteamFriends018_DownloadClanActivityCounts_params struct ISteamFriends_SteamFriends018_GetFriendCountFromSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends018_GetFriendFromSourceByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -33433,7 +33433,7 @@ struct ISteamFriends_SteamFriends018_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends018_IsUserInSource_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; @@ -33441,74 +33441,74 @@ struct ISteamFriends_SteamFriends018_IsUserInSource_params struct ISteamFriends_SteamFriends018_SetInGameVoiceSpeaking_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUser; int8_t bSpeaking; }; struct ISteamFriends_SteamFriends018_ActivateGameOverlay_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchDialog; }; struct ISteamFriends_SteamFriends018_ActivateGameOverlayToUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchDialog; CSteamID steamID; }; struct ISteamFriends_SteamFriends018_ActivateGameOverlayToWebPage_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchURL; uint32_t eMode; }; struct ISteamFriends_SteamFriends018_ActivateGameOverlayToStore_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t nAppID; uint32_t eFlag; }; struct ISteamFriends_SteamFriends018_SetPlayedWith_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUserPlayedWith; }; struct ISteamFriends_SteamFriends018_ActivateGameOverlayInviteDialog_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; }; struct ISteamFriends_SteamFriends018_GetSmallFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends018_GetMediumFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends018_GetLargeFriendAvatar_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends018_RequestUserInformation_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; int8_t bRequireNameOnly; @@ -33516,28 +33516,28 @@ struct ISteamFriends_SteamFriends018_RequestUserInformation_params struct ISteamFriends_SteamFriends018_RequestClanOfficerList_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends018_GetClanOwner_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends018_GetClanOfficerCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends018_GetClanOfficerByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iOfficer; @@ -33545,7 +33545,7 @@ struct ISteamFriends_SteamFriends018_GetClanOfficerByIndex_params struct ISteamFriends_SteamFriends018_SetRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchKey; const char *pchValue; @@ -33553,12 +33553,12 @@ struct ISteamFriends_SteamFriends018_SetRichPresence_params struct ISteamFriends_SteamFriends018_ClearRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamFriends_SteamFriends018_GetFriendRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; const char *pchKey; @@ -33566,14 +33566,14 @@ struct ISteamFriends_SteamFriends018_GetFriendRichPresence_params struct ISteamFriends_SteamFriends018_GetFriendRichPresenceKeyCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends018_GetFriendRichPresenceKeyByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iKey; @@ -33581,13 +33581,13 @@ struct ISteamFriends_SteamFriends018_GetFriendRichPresenceKeyByIndex_params struct ISteamFriends_SteamFriends018_RequestFriendRichPresence_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends018_InviteUserToGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchConnectString; @@ -33595,55 +33595,55 @@ struct ISteamFriends_SteamFriends018_InviteUserToGame_params struct ISteamFriends_SteamFriends018_GetCoplayFriendCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends018_GetCoplayFriend_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iCoplayFriend; }; struct ISteamFriends_SteamFriends018_GetFriendCoplayTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends018_GetFriendCoplayGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends018_JoinClanChatRoom_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends018_LeaveClanChatRoom_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends018_GetClanChatMemberCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends018_GetChatMemberByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iUser; @@ -33651,7 +33651,7 @@ struct ISteamFriends_SteamFriends018_GetChatMemberByIndex_params struct ISteamFriends_SteamFriends018_SendClanChatMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; const char *pchText; @@ -33659,7 +33659,7 @@ struct ISteamFriends_SteamFriends018_SendClanChatMessage_params struct ISteamFriends_SteamFriends018_GetClanChatMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDClanChat; int32_t iMessage; @@ -33671,7 +33671,7 @@ struct ISteamFriends_SteamFriends018_GetClanChatMessage_params struct ISteamFriends_SteamFriends018_IsClanChatAdmin_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; CSteamID steamIDUser; @@ -33679,35 +33679,35 @@ struct ISteamFriends_SteamFriends018_IsClanChatAdmin_params struct ISteamFriends_SteamFriends018_IsClanChatWindowOpenInSteam_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends018_OpenClanChatWindowInSteam_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends018_CloseClanChatWindowInSteam_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends018_SetListenForFriendsMessages_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bInterceptEnabled; }; struct ISteamFriends_SteamFriends018_ReplyToFriendMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchMsgToSend; @@ -33715,7 +33715,7 @@ struct ISteamFriends_SteamFriends018_ReplyToFriendMessage_params struct ISteamFriends_SteamFriends018_GetFriendMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDFriend; int32_t iMessageID; @@ -33726,74 +33726,74 @@ struct ISteamFriends_SteamFriends018_GetFriendMessage_params struct ISteamFriends_SteamFriends018_GetFollowerCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends018_IsFollowing_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends018_EnumerateFollowingList_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamFriends_SteamFriends018_IsClanPublic_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends018_IsClanOfficialGameGroup_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends018_GetNumChatsWithUnreadPriorityMessages_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends018_ActivateGameOverlayRemotePlayTogetherInviteDialog_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; }; struct ISteamFriends_SteamFriends018_RegisterProtocolInOverlayBrowser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchProtocol; }; struct ISteamFriends_SteamFriends018_ActivateGameOverlayInviteDialogConnectString_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchConnectString; }; struct ISteamFriends_SteamFriends018_RequestEquippedProfileItems_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends018_BHasEquippedProfileItem_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamID; uint32_t itemType; @@ -33801,7 +33801,7 @@ struct ISteamFriends_SteamFriends018_BHasEquippedProfileItem_params struct ISteamFriends_SteamFriends018_GetProfileItemPropertyString_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamID; uint32_t itemType; @@ -33810,7 +33810,7 @@ struct ISteamFriends_SteamFriends018_GetProfileItemPropertyString_params struct ISteamFriends_SteamFriends018_GetProfileItemPropertyUint_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamID; uint32_t itemType; @@ -33819,7 +33819,7 @@ struct ISteamFriends_SteamFriends018_GetProfileItemPropertyUint_params struct ISteamGameCoordinator_SteamGameCoordinator001_SendMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t unMsgType; const void *pubData; @@ -33828,14 +33828,14 @@ struct ISteamGameCoordinator_SteamGameCoordinator001_SendMessage_params struct ISteamGameCoordinator_SteamGameCoordinator001_IsMessageAvailable_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t *pcubMsgSize; }; struct ISteamGameCoordinator_SteamGameCoordinator001_RetrieveMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t *punMsgType; void *pubDest; @@ -33845,29 +33845,29 @@ struct ISteamGameCoordinator_SteamGameCoordinator001_RetrieveMessage_params struct ISteamGameServer_SteamGameServer002_LogOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer002_LogOff_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer002_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer002_GSSetSpawnCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t ucSpawn; }; struct ISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionKeyToSendToNewClient_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; void *pvEncryptionKey; uint32_t *pcbEncryptionKey; @@ -33876,7 +33876,7 @@ struct ISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionKeyToSendToNe struct ISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unUserID; const void *pvRawKey; @@ -33889,7 +33889,7 @@ struct ISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect_params struct ISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamID; uint32_t unIPPublic; @@ -33899,14 +33899,14 @@ struct ISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect_params struct ISteamGameServer_SteamGameServer002_GSRemoveUserConnect_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unUserID; }; struct ISteamGameServer_SteamGameServer002_GSSendUserDisconnect_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamID; uint32_t unUserID; @@ -33914,7 +33914,7 @@ struct ISteamGameServer_SteamGameServer002_GSSendUserDisconnect_params struct ISteamGameServer_SteamGameServer002_GSSendUserStatusResponse_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamID; int32_t nSecondsConnected; @@ -33923,7 +33923,7 @@ struct ISteamGameServer_SteamGameServer002_GSSendUserStatusResponse_params struct ISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t nAppIdServed; uint32_t unServerFlags; @@ -33939,7 +33939,7 @@ struct ISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus_params struct ISteamGameServer_SteamGameServer002_GSUpdateStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t cPlayers; int32_t cPlayersMax; @@ -33950,19 +33950,19 @@ struct ISteamGameServer_SteamGameServer002_GSUpdateStatus_params struct ISteamGameServer_SteamGameServer002_BSecure_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer002_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer002_GSSetServerType_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t nGameAppId; uint32_t unServerFlags; @@ -33974,7 +33974,7 @@ struct ISteamGameServer_SteamGameServer002_GSSetServerType_params struct ISteamGameServer_SteamGameServer002_GSSetServerType2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t nGameAppId; uint32_t unServerFlags; @@ -33989,7 +33989,7 @@ struct ISteamGameServer_SteamGameServer002_GSSetServerType2_params struct ISteamGameServer_SteamGameServer002_GSUpdateStatus2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t cPlayers; int32_t cPlayersMax; @@ -34001,14 +34001,14 @@ struct ISteamGameServer_SteamGameServer002_GSUpdateStatus2_params struct ISteamGameServer_SteamGameServer002_GSCreateUnauthenticatedUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID *pSteamID; }; struct ISteamGameServer_SteamGameServer002_GSSetUserData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamID; const char *pPlayerName; @@ -34017,47 +34017,47 @@ struct ISteamGameServer_SteamGameServer002_GSSetUserData_params struct ISteamGameServer_SteamGameServer002_GSUpdateSpectatorPort_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint16_t unSpectatorPort; }; struct ISteamGameServer_SteamGameServer002_GSSetGameType_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchType; }; struct ISteamGameServer_SteamGameServer003_LogOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer003_LogOff_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer003_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer003_BSecure_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer003_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionKeyToSendToNewClient_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; void *pvEncryptionKey; uint32_t *pcbEncryptionKey; @@ -34066,7 +34066,7 @@ struct ISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionKeyToSendToNe struct ISteamGameServer_SteamGameServer003_GSSendUserConnect_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unUserID; uint32_t unIPPublic; @@ -34077,14 +34077,14 @@ struct ISteamGameServer_SteamGameServer003_GSSendUserConnect_params struct ISteamGameServer_SteamGameServer003_GSRemoveUserConnect_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unUserID; }; struct ISteamGameServer_SteamGameServer003_GSSendUserDisconnect_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamID; uint32_t unUserID; @@ -34092,13 +34092,13 @@ struct ISteamGameServer_SteamGameServer003_GSSendUserDisconnect_params struct ISteamGameServer_SteamGameServer003_GSSetSpawnCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t ucSpawn; }; struct ISteamGameServer_SteamGameServer003_GSSetServerType_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t nGameAppId; uint32_t unServerFlags; @@ -34113,7 +34113,7 @@ struct ISteamGameServer_SteamGameServer003_GSSetServerType_params struct ISteamGameServer_SteamGameServer003_GSUpdateStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t cPlayers; int32_t cPlayersMax; @@ -34125,14 +34125,14 @@ struct ISteamGameServer_SteamGameServer003_GSUpdateStatus_params struct ISteamGameServer_SteamGameServer003_GSCreateUnauthenticatedUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID *pSteamID; }; struct ISteamGameServer_SteamGameServer003_GSSetUserData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamID; const char *pPlayerName; @@ -34141,19 +34141,19 @@ struct ISteamGameServer_SteamGameServer003_GSSetUserData_params struct ISteamGameServer_SteamGameServer003_GSUpdateSpectatorPort_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint16_t unSpectatorPort; }; struct ISteamGameServer_SteamGameServer003_GSSetGameType_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchType; }; struct ISteamGameServer_SteamGameServer003_GSGetUserAchievementStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamID; const char *pchAchievementName; @@ -34161,35 +34161,35 @@ struct ISteamGameServer_SteamGameServer003_GSGetUserAchievementStatus_params struct ISteamGameServer_SteamGameServer004_LogOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer004_LogOff_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer004_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer004_BSecure_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer004_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer004_SendUserConnectAndAuthenticate_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUser; uint32_t unIPClient; void *pvAuthBlob; @@ -34198,19 +34198,19 @@ struct ISteamGameServer_SteamGameServer004_SendUserConnectAndAuthenticate_params struct ISteamGameServer_SteamGameServer004_CreateUnauthenticatedUserConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer004_SendUserDisconnect_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUser; }; struct ISteamGameServer_SteamGameServer004_BUpdateUserData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchPlayerName; @@ -34219,7 +34219,7 @@ struct ISteamGameServer_SteamGameServer004_BUpdateUserData_params struct ISteamGameServer_SteamGameServer004_BSetServerType_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t nGameAppId; uint32_t unServerFlags; @@ -34234,7 +34234,7 @@ struct ISteamGameServer_SteamGameServer004_BSetServerType_params struct ISteamGameServer_SteamGameServer004_UpdateServerStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t cPlayers; int32_t cPlayersMax; int32_t cBotPlayers; @@ -34245,19 +34245,19 @@ struct ISteamGameServer_SteamGameServer004_UpdateServerStatus_params struct ISteamGameServer_SteamGameServer004_UpdateSpectatorPort_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint16_t unSpectatorPort; }; struct ISteamGameServer_SteamGameServer004_SetGameType_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchGameType; }; struct ISteamGameServer_SteamGameServer004_BGetUserAchievementStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamID; const char *pchAchievementName; @@ -34265,35 +34265,35 @@ struct ISteamGameServer_SteamGameServer004_BGetUserAchievementStatus_params struct ISteamGameServer_SteamGameServer005_LogOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer005_LogOff_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer005_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer005_BSecure_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer005_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer005_SendUserConnectAndAuthenticate_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unIPClient; const void *pvAuthBlob; @@ -34303,19 +34303,19 @@ struct ISteamGameServer_SteamGameServer005_SendUserConnectAndAuthenticate_params struct ISteamGameServer_SteamGameServer005_CreateUnauthenticatedUserConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer005_SendUserDisconnect_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUser; }; struct ISteamGameServer_SteamGameServer005_BUpdateUserData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchPlayerName; @@ -34324,7 +34324,7 @@ struct ISteamGameServer_SteamGameServer005_BUpdateUserData_params struct ISteamGameServer_SteamGameServer005_BSetServerType_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unServerFlags; uint32_t unGameIP; @@ -34338,7 +34338,7 @@ struct ISteamGameServer_SteamGameServer005_BSetServerType_params struct ISteamGameServer_SteamGameServer005_UpdateServerStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t cPlayers; int32_t cPlayersMax; int32_t cBotPlayers; @@ -34349,19 +34349,19 @@ struct ISteamGameServer_SteamGameServer005_UpdateServerStatus_params struct ISteamGameServer_SteamGameServer005_UpdateSpectatorPort_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint16_t unSpectatorPort; }; struct ISteamGameServer_SteamGameServer005_SetGameType_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchGameType; }; struct ISteamGameServer_SteamGameServer005_BGetUserAchievementStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamID; const char *pchAchievementName; @@ -34369,35 +34369,35 @@ struct ISteamGameServer_SteamGameServer005_BGetUserAchievementStatus_params struct ISteamGameServer_SteamGameServer008_LogOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer008_LogOff_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer008_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer008_BSecure_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer008_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer008_SendUserConnectAndAuthenticate_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unIPClient; const void *pvAuthBlob; @@ -34407,19 +34407,19 @@ struct ISteamGameServer_SteamGameServer008_SendUserConnectAndAuthenticate_params struct ISteamGameServer_SteamGameServer008_CreateUnauthenticatedUserConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer008_SendUserDisconnect_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUser; }; struct ISteamGameServer_SteamGameServer008_BUpdateUserData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchPlayerName; @@ -34428,7 +34428,7 @@ struct ISteamGameServer_SteamGameServer008_BUpdateUserData_params struct ISteamGameServer_SteamGameServer008_BSetServerType_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unServerFlags; uint32_t unGameIP; @@ -34442,7 +34442,7 @@ struct ISteamGameServer_SteamGameServer008_BSetServerType_params struct ISteamGameServer_SteamGameServer008_UpdateServerStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t cPlayers; int32_t cPlayersMax; int32_t cBotPlayers; @@ -34453,19 +34453,19 @@ struct ISteamGameServer_SteamGameServer008_UpdateServerStatus_params struct ISteamGameServer_SteamGameServer008_UpdateSpectatorPort_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint16_t unSpectatorPort; }; struct ISteamGameServer_SteamGameServer008_SetGameType_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchGameType; }; struct ISteamGameServer_SteamGameServer008_BGetUserAchievementStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamID; const char *pchAchievementName; @@ -34473,12 +34473,12 @@ struct ISteamGameServer_SteamGameServer008_BGetUserAchievementStatus_params struct ISteamGameServer_SteamGameServer008_GetGameplayStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer008_RequestUserGroupStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDGroup; @@ -34486,41 +34486,41 @@ struct ISteamGameServer_SteamGameServer008_RequestUserGroupStatus_params struct ISteamGameServer_SteamGameServer008_GetPublicIP_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamGameServer_SteamGameServer009_LogOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer009_LogOff_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer009_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer009_BSecure_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer009_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer009_SendUserConnectAndAuthenticate_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unIPClient; const void *pvAuthBlob; @@ -34530,19 +34530,19 @@ struct ISteamGameServer_SteamGameServer009_SendUserConnectAndAuthenticate_params struct ISteamGameServer_SteamGameServer009_CreateUnauthenticatedUserConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer009_SendUserDisconnect_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUser; }; struct ISteamGameServer_SteamGameServer009_BUpdateUserData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchPlayerName; @@ -34551,7 +34551,7 @@ struct ISteamGameServer_SteamGameServer009_BUpdateUserData_params struct ISteamGameServer_SteamGameServer009_BSetServerType_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unServerFlags; uint32_t unGameIP; @@ -34565,7 +34565,7 @@ struct ISteamGameServer_SteamGameServer009_BSetServerType_params struct ISteamGameServer_SteamGameServer009_UpdateServerStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t cPlayers; int32_t cPlayersMax; int32_t cBotPlayers; @@ -34576,19 +34576,19 @@ struct ISteamGameServer_SteamGameServer009_UpdateServerStatus_params struct ISteamGameServer_SteamGameServer009_UpdateSpectatorPort_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint16_t unSpectatorPort; }; struct ISteamGameServer_SteamGameServer009_SetGameType_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchGameType; }; struct ISteamGameServer_SteamGameServer009_BGetUserAchievementStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamID; const char *pchAchievementName; @@ -34596,12 +34596,12 @@ struct ISteamGameServer_SteamGameServer009_BGetUserAchievementStatus_params struct ISteamGameServer_SteamGameServer009_GetGameplayStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer009_RequestUserGroupStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDGroup; @@ -34609,19 +34609,19 @@ struct ISteamGameServer_SteamGameServer009_RequestUserGroupStatus_params struct ISteamGameServer_SteamGameServer009_GetPublicIP_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamGameServer_SteamGameServer009_SetGameData_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchGameData; }; struct ISteamGameServer_SteamGameServer009_UserHasLicenseForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -34629,35 +34629,35 @@ struct ISteamGameServer_SteamGameServer009_UserHasLicenseForApp_params struct ISteamGameServer_SteamGameServer010_LogOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer010_LogOff_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer010_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer010_BSecure_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer010_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer010_SendUserConnectAndAuthenticate_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unIPClient; const void *pvAuthBlob; @@ -34667,19 +34667,19 @@ struct ISteamGameServer_SteamGameServer010_SendUserConnectAndAuthenticate_params struct ISteamGameServer_SteamGameServer010_CreateUnauthenticatedUserConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer010_SendUserDisconnect_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUser; }; struct ISteamGameServer_SteamGameServer010_BUpdateUserData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchPlayerName; @@ -34688,7 +34688,7 @@ struct ISteamGameServer_SteamGameServer010_BUpdateUserData_params struct ISteamGameServer_SteamGameServer010_BSetServerType_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unServerFlags; uint32_t unGameIP; @@ -34702,7 +34702,7 @@ struct ISteamGameServer_SteamGameServer010_BSetServerType_params struct ISteamGameServer_SteamGameServer010_UpdateServerStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t cPlayers; int32_t cPlayersMax; int32_t cBotPlayers; @@ -34713,30 +34713,30 @@ struct ISteamGameServer_SteamGameServer010_UpdateServerStatus_params struct ISteamGameServer_SteamGameServer010_UpdateSpectatorPort_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint16_t unSpectatorPort; }; struct ISteamGameServer_SteamGameServer010_SetGameTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchGameTags; }; struct ISteamGameServer_SteamGameServer010_GetGameplayStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer010_GetServerReputation_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamGameServer_SteamGameServer010_RequestUserGroupStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDGroup; @@ -34744,19 +34744,19 @@ struct ISteamGameServer_SteamGameServer010_RequestUserGroupStatus_params struct ISteamGameServer_SteamGameServer010_GetPublicIP_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamGameServer_SteamGameServer010_SetGameData_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchGameData; }; struct ISteamGameServer_SteamGameServer010_UserHasLicenseForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -34764,7 +34764,7 @@ struct ISteamGameServer_SteamGameServer010_UserHasLicenseForApp_params struct ISteamGameServer_SteamGameServer010_GetAuthSessionTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -34773,7 +34773,7 @@ struct ISteamGameServer_SteamGameServer010_GetAuthSessionTicket_params struct ISteamGameServer_SteamGameServer010_BeginAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -34782,19 +34782,19 @@ struct ISteamGameServer_SteamGameServer010_BeginAuthSession_params struct ISteamGameServer_SteamGameServer010_EndAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamID; }; struct ISteamGameServer_SteamGameServer010_CancelAuthTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t hAuthTicket; }; struct ISteamGameServer_SteamGameServer011_InitGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unIP; uint16_t usGamePort; @@ -34806,144 +34806,144 @@ struct ISteamGameServer_SteamGameServer011_InitGameServer_params struct ISteamGameServer_SteamGameServer011_SetProduct_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszProduct; }; struct ISteamGameServer_SteamGameServer011_SetGameDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszGameDescription; }; struct ISteamGameServer_SteamGameServer011_SetModDir_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszModDir; }; struct ISteamGameServer_SteamGameServer011_SetDedicatedServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bDedicated; }; struct ISteamGameServer_SteamGameServer011_LogOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszAccountName; const char *pszPassword; }; struct ISteamGameServer_SteamGameServer011_LogOnAnonymous_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer011_LogOff_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer011_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer011_BSecure_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer011_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer011_WasRestartRequested_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer011_SetMaxPlayerCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t cPlayersMax; }; struct ISteamGameServer_SteamGameServer011_SetBotPlayerCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t cBotplayers; }; struct ISteamGameServer_SteamGameServer011_SetServerName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszServerName; }; struct ISteamGameServer_SteamGameServer011_SetMapName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszMapName; }; struct ISteamGameServer_SteamGameServer011_SetPasswordProtected_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bPasswordProtected; }; struct ISteamGameServer_SteamGameServer011_SetSpectatorPort_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint16_t unSpectatorPort; }; struct ISteamGameServer_SteamGameServer011_SetSpectatorServerName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszSpectatorServerName; }; struct ISteamGameServer_SteamGameServer011_ClearAllKeyValues_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer011_SetKeyValue_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pKey; const char *pValue; }; struct ISteamGameServer_SteamGameServer011_SetGameTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchGameTags; }; struct ISteamGameServer_SteamGameServer011_SetGameData_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchGameData; }; struct ISteamGameServer_SteamGameServer011_SetRegion_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszRegion; }; struct ISteamGameServer_SteamGameServer011_SendUserConnectAndAuthenticate_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unIPClient; const void *pvAuthBlob; @@ -34953,19 +34953,19 @@ struct ISteamGameServer_SteamGameServer011_SendUserConnectAndAuthenticate_params struct ISteamGameServer_SteamGameServer011_CreateUnauthenticatedUserConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer011_SendUserDisconnect_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUser; }; struct ISteamGameServer_SteamGameServer011_BUpdateUserData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchPlayerName; @@ -34974,7 +34974,7 @@ struct ISteamGameServer_SteamGameServer011_BUpdateUserData_params struct ISteamGameServer_SteamGameServer011_GetAuthSessionTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -34983,7 +34983,7 @@ struct ISteamGameServer_SteamGameServer011_GetAuthSessionTicket_params struct ISteamGameServer_SteamGameServer011_BeginAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -34992,19 +34992,19 @@ struct ISteamGameServer_SteamGameServer011_BeginAuthSession_params struct ISteamGameServer_SteamGameServer011_EndAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamID; }; struct ISteamGameServer_SteamGameServer011_CancelAuthTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t hAuthTicket; }; struct ISteamGameServer_SteamGameServer011_UserHasLicenseForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -35012,7 +35012,7 @@ struct ISteamGameServer_SteamGameServer011_UserHasLicenseForApp_params struct ISteamGameServer_SteamGameServer011_RequestUserGroupStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDGroup; @@ -35020,24 +35020,24 @@ struct ISteamGameServer_SteamGameServer011_RequestUserGroupStatus_params struct ISteamGameServer_SteamGameServer011_GetGameplayStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer011_GetServerReputation_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamGameServer_SteamGameServer011_GetPublicIP_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamGameServer_SteamGameServer011_HandleIncomingPacket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const void *pData; int32_t cbData; @@ -35047,7 +35047,7 @@ struct ISteamGameServer_SteamGameServer011_HandleIncomingPacket_params struct ISteamGameServer_SteamGameServer011_GetNextOutgoingPacket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; void *pOut; int32_t cbMaxOut; @@ -35057,38 +35057,38 @@ struct ISteamGameServer_SteamGameServer011_GetNextOutgoingPacket_params struct ISteamGameServer_SteamGameServer011_EnableHeartbeats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bActive; }; struct ISteamGameServer_SteamGameServer011_SetHeartbeatInterval_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t iHeartbeatInterval; }; struct ISteamGameServer_SteamGameServer011_ForceHeartbeat_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer011_AssociateWithClan_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamGameServer_SteamGameServer011_ComputeNewPlayerCompatibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDNewPlayer; }; struct ISteamGameServer_SteamGameServer012_InitGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unIP; uint16_t usGamePort; @@ -35100,143 +35100,143 @@ struct ISteamGameServer_SteamGameServer012_InitGameServer_params struct ISteamGameServer_SteamGameServer012_SetProduct_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszProduct; }; struct ISteamGameServer_SteamGameServer012_SetGameDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszGameDescription; }; struct ISteamGameServer_SteamGameServer012_SetModDir_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszModDir; }; struct ISteamGameServer_SteamGameServer012_SetDedicatedServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bDedicated; }; struct ISteamGameServer_SteamGameServer012_LogOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszToken; }; struct ISteamGameServer_SteamGameServer012_LogOnAnonymous_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer012_LogOff_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer012_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer012_BSecure_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer012_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer012_WasRestartRequested_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer012_SetMaxPlayerCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t cPlayersMax; }; struct ISteamGameServer_SteamGameServer012_SetBotPlayerCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t cBotplayers; }; struct ISteamGameServer_SteamGameServer012_SetServerName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszServerName; }; struct ISteamGameServer_SteamGameServer012_SetMapName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszMapName; }; struct ISteamGameServer_SteamGameServer012_SetPasswordProtected_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bPasswordProtected; }; struct ISteamGameServer_SteamGameServer012_SetSpectatorPort_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint16_t unSpectatorPort; }; struct ISteamGameServer_SteamGameServer012_SetSpectatorServerName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszSpectatorServerName; }; struct ISteamGameServer_SteamGameServer012_ClearAllKeyValues_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer012_SetKeyValue_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pKey; const char *pValue; }; struct ISteamGameServer_SteamGameServer012_SetGameTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchGameTags; }; struct ISteamGameServer_SteamGameServer012_SetGameData_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchGameData; }; struct ISteamGameServer_SteamGameServer012_SetRegion_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszRegion; }; struct ISteamGameServer_SteamGameServer012_SendUserConnectAndAuthenticate_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unIPClient; const void *pvAuthBlob; @@ -35246,19 +35246,19 @@ struct ISteamGameServer_SteamGameServer012_SendUserConnectAndAuthenticate_params struct ISteamGameServer_SteamGameServer012_CreateUnauthenticatedUserConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer012_SendUserDisconnect_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUser; }; struct ISteamGameServer_SteamGameServer012_BUpdateUserData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchPlayerName; @@ -35267,7 +35267,7 @@ struct ISteamGameServer_SteamGameServer012_BUpdateUserData_params struct ISteamGameServer_SteamGameServer012_GetAuthSessionTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -35276,7 +35276,7 @@ struct ISteamGameServer_SteamGameServer012_GetAuthSessionTicket_params struct ISteamGameServer_SteamGameServer012_BeginAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -35285,19 +35285,19 @@ struct ISteamGameServer_SteamGameServer012_BeginAuthSession_params struct ISteamGameServer_SteamGameServer012_EndAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamID; }; struct ISteamGameServer_SteamGameServer012_CancelAuthTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t hAuthTicket; }; struct ISteamGameServer_SteamGameServer012_UserHasLicenseForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -35305,7 +35305,7 @@ struct ISteamGameServer_SteamGameServer012_UserHasLicenseForApp_params struct ISteamGameServer_SteamGameServer012_RequestUserGroupStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDGroup; @@ -35313,24 +35313,24 @@ struct ISteamGameServer_SteamGameServer012_RequestUserGroupStatus_params struct ISteamGameServer_SteamGameServer012_GetGameplayStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer012_GetServerReputation_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamGameServer_SteamGameServer012_GetPublicIP_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamGameServer_SteamGameServer012_HandleIncomingPacket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const void *pData; int32_t cbData; @@ -35340,7 +35340,7 @@ struct ISteamGameServer_SteamGameServer012_HandleIncomingPacket_params struct ISteamGameServer_SteamGameServer012_GetNextOutgoingPacket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; void *pOut; int32_t cbMaxOut; @@ -35350,38 +35350,38 @@ struct ISteamGameServer_SteamGameServer012_GetNextOutgoingPacket_params struct ISteamGameServer_SteamGameServer012_EnableHeartbeats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bActive; }; struct ISteamGameServer_SteamGameServer012_SetHeartbeatInterval_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t iHeartbeatInterval; }; struct ISteamGameServer_SteamGameServer012_ForceHeartbeat_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer012_AssociateWithClan_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamGameServer_SteamGameServer012_ComputeNewPlayerCompatibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDNewPlayer; }; struct ISteamGameServer_SteamGameServer013_InitGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unIP; uint16_t usGamePort; @@ -35393,143 +35393,143 @@ struct ISteamGameServer_SteamGameServer013_InitGameServer_params struct ISteamGameServer_SteamGameServer013_SetProduct_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszProduct; }; struct ISteamGameServer_SteamGameServer013_SetGameDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszGameDescription; }; struct ISteamGameServer_SteamGameServer013_SetModDir_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszModDir; }; struct ISteamGameServer_SteamGameServer013_SetDedicatedServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bDedicated; }; struct ISteamGameServer_SteamGameServer013_LogOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszToken; }; struct ISteamGameServer_SteamGameServer013_LogOnAnonymous_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer013_LogOff_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer013_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer013_BSecure_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer013_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer013_WasRestartRequested_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer013_SetMaxPlayerCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t cPlayersMax; }; struct ISteamGameServer_SteamGameServer013_SetBotPlayerCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t cBotplayers; }; struct ISteamGameServer_SteamGameServer013_SetServerName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszServerName; }; struct ISteamGameServer_SteamGameServer013_SetMapName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszMapName; }; struct ISteamGameServer_SteamGameServer013_SetPasswordProtected_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bPasswordProtected; }; struct ISteamGameServer_SteamGameServer013_SetSpectatorPort_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint16_t unSpectatorPort; }; struct ISteamGameServer_SteamGameServer013_SetSpectatorServerName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszSpectatorServerName; }; struct ISteamGameServer_SteamGameServer013_ClearAllKeyValues_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer013_SetKeyValue_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pKey; const char *pValue; }; struct ISteamGameServer_SteamGameServer013_SetGameTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchGameTags; }; struct ISteamGameServer_SteamGameServer013_SetGameData_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchGameData; }; struct ISteamGameServer_SteamGameServer013_SetRegion_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszRegion; }; struct ISteamGameServer_SteamGameServer013_SendUserConnectAndAuthenticate_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unIPClient; const void *pvAuthBlob; @@ -35539,19 +35539,19 @@ struct ISteamGameServer_SteamGameServer013_SendUserConnectAndAuthenticate_params struct ISteamGameServer_SteamGameServer013_CreateUnauthenticatedUserConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer013_SendUserDisconnect_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUser; }; struct ISteamGameServer_SteamGameServer013_BUpdateUserData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchPlayerName; @@ -35560,7 +35560,7 @@ struct ISteamGameServer_SteamGameServer013_BUpdateUserData_params struct ISteamGameServer_SteamGameServer013_GetAuthSessionTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -35569,7 +35569,7 @@ struct ISteamGameServer_SteamGameServer013_GetAuthSessionTicket_params struct ISteamGameServer_SteamGameServer013_BeginAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -35578,19 +35578,19 @@ struct ISteamGameServer_SteamGameServer013_BeginAuthSession_params struct ISteamGameServer_SteamGameServer013_EndAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamID; }; struct ISteamGameServer_SteamGameServer013_CancelAuthTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t hAuthTicket; }; struct ISteamGameServer_SteamGameServer013_UserHasLicenseForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -35598,7 +35598,7 @@ struct ISteamGameServer_SteamGameServer013_UserHasLicenseForApp_params struct ISteamGameServer_SteamGameServer013_RequestUserGroupStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDGroup; @@ -35606,24 +35606,24 @@ struct ISteamGameServer_SteamGameServer013_RequestUserGroupStatus_params struct ISteamGameServer_SteamGameServer013_GetGameplayStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer013_GetServerReputation_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamGameServer_SteamGameServer013_GetPublicIP_params { - struct u_iface *u_iface; + struct u_iface u_iface; SteamIPAddress_t *_ret; }; struct ISteamGameServer_SteamGameServer013_HandleIncomingPacket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const void *pData; int32_t cbData; @@ -35633,7 +35633,7 @@ struct ISteamGameServer_SteamGameServer013_HandleIncomingPacket_params struct ISteamGameServer_SteamGameServer013_GetNextOutgoingPacket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; void *pOut; int32_t cbMaxOut; @@ -35643,38 +35643,38 @@ struct ISteamGameServer_SteamGameServer013_GetNextOutgoingPacket_params struct ISteamGameServer_SteamGameServer013_EnableHeartbeats_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bActive; }; struct ISteamGameServer_SteamGameServer013_SetHeartbeatInterval_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t iHeartbeatInterval; }; struct ISteamGameServer_SteamGameServer013_ForceHeartbeat_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer013_AssociateWithClan_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamGameServer_SteamGameServer013_ComputeNewPlayerCompatibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDNewPlayer; }; struct ISteamGameServer_SteamGameServer014_InitGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unIP; uint16_t usGamePort; @@ -35686,149 +35686,149 @@ struct ISteamGameServer_SteamGameServer014_InitGameServer_params struct ISteamGameServer_SteamGameServer014_SetProduct_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszProduct; }; struct ISteamGameServer_SteamGameServer014_SetGameDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszGameDescription; }; struct ISteamGameServer_SteamGameServer014_SetModDir_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszModDir; }; struct ISteamGameServer_SteamGameServer014_SetDedicatedServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bDedicated; }; struct ISteamGameServer_SteamGameServer014_LogOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszToken; }; struct ISteamGameServer_SteamGameServer014_LogOnAnonymous_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer014_LogOff_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer014_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer014_BSecure_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer014_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer014_WasRestartRequested_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer014_SetMaxPlayerCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t cPlayersMax; }; struct ISteamGameServer_SteamGameServer014_SetBotPlayerCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t cBotplayers; }; struct ISteamGameServer_SteamGameServer014_SetServerName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszServerName; }; struct ISteamGameServer_SteamGameServer014_SetMapName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszMapName; }; struct ISteamGameServer_SteamGameServer014_SetPasswordProtected_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bPasswordProtected; }; struct ISteamGameServer_SteamGameServer014_SetSpectatorPort_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint16_t unSpectatorPort; }; struct ISteamGameServer_SteamGameServer014_SetSpectatorServerName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszSpectatorServerName; }; struct ISteamGameServer_SteamGameServer014_ClearAllKeyValues_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer014_SetKeyValue_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pKey; const char *pValue; }; struct ISteamGameServer_SteamGameServer014_SetGameTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchGameTags; }; struct ISteamGameServer_SteamGameServer014_SetGameData_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchGameData; }; struct ISteamGameServer_SteamGameServer014_SetRegion_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszRegion; }; struct ISteamGameServer_SteamGameServer014_SetAdvertiseServerActive_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bActive; }; struct ISteamGameServer_SteamGameServer014_GetAuthSessionTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -35837,7 +35837,7 @@ struct ISteamGameServer_SteamGameServer014_GetAuthSessionTicket_params struct ISteamGameServer_SteamGameServer014_BeginAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -35846,19 +35846,19 @@ struct ISteamGameServer_SteamGameServer014_BeginAuthSession_params struct ISteamGameServer_SteamGameServer014_EndAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamID; }; struct ISteamGameServer_SteamGameServer014_CancelAuthTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t hAuthTicket; }; struct ISteamGameServer_SteamGameServer014_UserHasLicenseForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -35866,7 +35866,7 @@ struct ISteamGameServer_SteamGameServer014_UserHasLicenseForApp_params struct ISteamGameServer_SteamGameServer014_RequestUserGroupStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDGroup; @@ -35874,24 +35874,24 @@ struct ISteamGameServer_SteamGameServer014_RequestUserGroupStatus_params struct ISteamGameServer_SteamGameServer014_GetGameplayStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer014_GetServerReputation_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamGameServer_SteamGameServer014_GetPublicIP_params { - struct u_iface *u_iface; + struct u_iface u_iface; SteamIPAddress_t *_ret; }; struct ISteamGameServer_SteamGameServer014_HandleIncomingPacket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const void *pData; int32_t cbData; @@ -35901,7 +35901,7 @@ struct ISteamGameServer_SteamGameServer014_HandleIncomingPacket_params struct ISteamGameServer_SteamGameServer014_GetNextOutgoingPacket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; void *pOut; int32_t cbMaxOut; @@ -35911,21 +35911,21 @@ struct ISteamGameServer_SteamGameServer014_GetNextOutgoingPacket_params struct ISteamGameServer_SteamGameServer014_AssociateWithClan_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamGameServer_SteamGameServer014_ComputeNewPlayerCompatibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDNewPlayer; }; struct ISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPRECATED_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unIPClient; const void *pvAuthBlob; @@ -35935,19 +35935,19 @@ struct ISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPREC struct ISteamGameServer_SteamGameServer014_CreateUnauthenticatedUserConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer014_SendUserDisconnect_DEPRECATED_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUser; }; struct ISteamGameServer_SteamGameServer014_BUpdateUserData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchPlayerName; @@ -35956,18 +35956,18 @@ struct ISteamGameServer_SteamGameServer014_BUpdateUserData_params struct ISteamGameServer_SteamGameServer014_SetMasterServerHeartbeatInterval_DEPRECATED_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t iHeartbeatInterval; }; struct ISteamGameServer_SteamGameServer014_ForceMasterServerHeartbeat_DEPRECATED_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer015_InitGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unIP; uint16_t usGamePort; @@ -35979,149 +35979,149 @@ struct ISteamGameServer_SteamGameServer015_InitGameServer_params struct ISteamGameServer_SteamGameServer015_SetProduct_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszProduct; }; struct ISteamGameServer_SteamGameServer015_SetGameDescription_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszGameDescription; }; struct ISteamGameServer_SteamGameServer015_SetModDir_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszModDir; }; struct ISteamGameServer_SteamGameServer015_SetDedicatedServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bDedicated; }; struct ISteamGameServer_SteamGameServer015_LogOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszToken; }; struct ISteamGameServer_SteamGameServer015_LogOnAnonymous_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer015_LogOff_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer015_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer015_BSecure_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer015_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer015_WasRestartRequested_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer015_SetMaxPlayerCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t cPlayersMax; }; struct ISteamGameServer_SteamGameServer015_SetBotPlayerCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t cBotplayers; }; struct ISteamGameServer_SteamGameServer015_SetServerName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszServerName; }; struct ISteamGameServer_SteamGameServer015_SetMapName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszMapName; }; struct ISteamGameServer_SteamGameServer015_SetPasswordProtected_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bPasswordProtected; }; struct ISteamGameServer_SteamGameServer015_SetSpectatorPort_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint16_t unSpectatorPort; }; struct ISteamGameServer_SteamGameServer015_SetSpectatorServerName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszSpectatorServerName; }; struct ISteamGameServer_SteamGameServer015_ClearAllKeyValues_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer015_SetKeyValue_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pKey; const char *pValue; }; struct ISteamGameServer_SteamGameServer015_SetGameTags_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchGameTags; }; struct ISteamGameServer_SteamGameServer015_SetGameData_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchGameData; }; struct ISteamGameServer_SteamGameServer015_SetRegion_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pszRegion; }; struct ISteamGameServer_SteamGameServer015_SetAdvertiseServerActive_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bActive; }; struct ISteamGameServer_SteamGameServer015_GetAuthSessionTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -36131,7 +36131,7 @@ struct ISteamGameServer_SteamGameServer015_GetAuthSessionTicket_params struct ISteamGameServer_SteamGameServer015_BeginAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -36140,19 +36140,19 @@ struct ISteamGameServer_SteamGameServer015_BeginAuthSession_params struct ISteamGameServer_SteamGameServer015_EndAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamID; }; struct ISteamGameServer_SteamGameServer015_CancelAuthTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t hAuthTicket; }; struct ISteamGameServer_SteamGameServer015_UserHasLicenseForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -36160,7 +36160,7 @@ struct ISteamGameServer_SteamGameServer015_UserHasLicenseForApp_params struct ISteamGameServer_SteamGameServer015_RequestUserGroupStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDGroup; @@ -36168,24 +36168,24 @@ struct ISteamGameServer_SteamGameServer015_RequestUserGroupStatus_params struct ISteamGameServer_SteamGameServer015_GetGameplayStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServer_SteamGameServer015_GetServerReputation_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamGameServer_SteamGameServer015_GetPublicIP_params { - struct u_iface *u_iface; + struct u_iface u_iface; SteamIPAddress_t *_ret; }; struct ISteamGameServer_SteamGameServer015_HandleIncomingPacket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const void *pData; int32_t cbData; @@ -36195,7 +36195,7 @@ struct ISteamGameServer_SteamGameServer015_HandleIncomingPacket_params struct ISteamGameServer_SteamGameServer015_GetNextOutgoingPacket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; void *pOut; int32_t cbMaxOut; @@ -36205,21 +36205,21 @@ struct ISteamGameServer_SteamGameServer015_GetNextOutgoingPacket_params struct ISteamGameServer_SteamGameServer015_AssociateWithClan_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamGameServer_SteamGameServer015_ComputeNewPlayerCompatibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDNewPlayer; }; struct ISteamGameServer_SteamGameServer015_SendUserConnectAndAuthenticate_DEPRECATED_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unIPClient; const void *pvAuthBlob; @@ -36229,19 +36229,19 @@ struct ISteamGameServer_SteamGameServer015_SendUserConnectAndAuthenticate_DEPREC struct ISteamGameServer_SteamGameServer015_CreateUnauthenticatedUserConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer015_SendUserDisconnect_DEPRECATED_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDUser; }; struct ISteamGameServer_SteamGameServer015_BUpdateUserData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchPlayerName; @@ -36250,25 +36250,25 @@ struct ISteamGameServer_SteamGameServer015_BUpdateUserData_params struct ISteamGameServer_SteamGameServer015_SetMasterServerHeartbeatInterval_DEPRECATED_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t iHeartbeatInterval; }; struct ISteamGameServer_SteamGameServer015_ForceMasterServerHeartbeat_DEPRECATED_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamGameServerStats_SteamGameServerStats001_RequestUserStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDUser; }; struct ISteamGameServerStats_SteamGameServerStats001_GetUserStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -36277,7 +36277,7 @@ struct ISteamGameServerStats_SteamGameServerStats001_GetUserStat_params struct ISteamGameServerStats_SteamGameServerStats001_GetUserStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -36286,7 +36286,7 @@ struct ISteamGameServerStats_SteamGameServerStats001_GetUserStat_2_params struct ISteamGameServerStats_SteamGameServerStats001_GetUserAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -36295,7 +36295,7 @@ struct ISteamGameServerStats_SteamGameServerStats001_GetUserAchievement_params struct ISteamGameServerStats_SteamGameServerStats001_SetUserStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -36304,7 +36304,7 @@ struct ISteamGameServerStats_SteamGameServerStats001_SetUserStat_params struct ISteamGameServerStats_SteamGameServerStats001_SetUserStat_2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -36313,7 +36313,7 @@ struct ISteamGameServerStats_SteamGameServerStats001_SetUserStat_2_params struct ISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -36323,7 +36323,7 @@ struct ISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat_param struct ISteamGameServerStats_SteamGameServerStats001_SetUserAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -36331,7 +36331,7 @@ struct ISteamGameServerStats_SteamGameServerStats001_SetUserAchievement_params struct ISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -36339,14 +36339,14 @@ struct ISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement_params struct ISteamGameServerStats_SteamGameServerStats001_StoreUserStats_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDUser; }; struct ISteamGameStats_SteamGameStats001_GetNewSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; int8_t nAccountType; uint64_t ulAccountID; @@ -36356,7 +36356,7 @@ struct ISteamGameStats_SteamGameStats001_GetNewSession_params struct ISteamGameStats_SteamGameStats001_EndSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t ulSessionID; uint32_t rtTimeEnded; @@ -36365,7 +36365,7 @@ struct ISteamGameStats_SteamGameStats001_EndSession_params struct ISteamGameStats_SteamGameStats001_AddSessionAttributeInt_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t ulSessionID; const char *pstrName; @@ -36374,7 +36374,7 @@ struct ISteamGameStats_SteamGameStats001_AddSessionAttributeInt_params struct ISteamGameStats_SteamGameStats001_AddSessionAttributeString_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t ulSessionID; const char *pstrName; @@ -36383,7 +36383,7 @@ struct ISteamGameStats_SteamGameStats001_AddSessionAttributeString_params struct ISteamGameStats_SteamGameStats001_AddSessionAttributeFloat_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t ulSessionID; const char *pstrName; @@ -36392,7 +36392,7 @@ struct ISteamGameStats_SteamGameStats001_AddSessionAttributeFloat_params struct ISteamGameStats_SteamGameStats001_AddNewRow_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t *pulRowID; uint64_t ulSessionID; @@ -36401,21 +36401,21 @@ struct ISteamGameStats_SteamGameStats001_AddNewRow_params struct ISteamGameStats_SteamGameStats001_CommitRow_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t ulRowID; }; struct ISteamGameStats_SteamGameStats001_CommitOutstandingRows_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t ulSessionID; }; struct ISteamGameStats_SteamGameStats001_AddRowAttributeInt_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t ulRowID; const char *pstrName; @@ -36424,7 +36424,7 @@ struct ISteamGameStats_SteamGameStats001_AddRowAttributeInt_params struct ISteamGameStats_SteamGameStats001_AddRowAtributeString_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t ulRowID; const char *pstrName; @@ -36433,7 +36433,7 @@ struct ISteamGameStats_SteamGameStats001_AddRowAtributeString_params struct ISteamGameStats_SteamGameStats001_AddRowAttributeFloat_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t ulRowID; const char *pstrName; @@ -36442,7 +36442,7 @@ struct ISteamGameStats_SteamGameStats001_AddRowAttributeFloat_params struct ISteamGameStats_SteamGameStats001_AddSessionAttributeInt64_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t ulSessionID; const char *pstrName; @@ -36451,7 +36451,7 @@ struct ISteamGameStats_SteamGameStats001_AddSessionAttributeInt64_params struct ISteamGameStats_SteamGameStats001_AddRowAttributeInt64_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t ulRowID; const char *pstrName; @@ -36460,72 +36460,72 @@ struct ISteamGameStats_SteamGameStats001_AddRowAttributeInt64_params struct ISteamInput_SteamInput001_Init_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamInput_SteamInput001_Shutdown_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamInput_SteamInput001_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamInput_SteamInput001_GetConnectedControllers_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t *handlesOut; }; struct ISteamInput_SteamInput001_GetActionSetHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszActionSetName; }; struct ISteamInput_SteamInput001_ActivateActionSet_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint64_t actionSetHandle; }; struct ISteamInput_SteamInput001_GetCurrentActionSet_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput001_ActivateActionSetLayer_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint64_t actionSetLayerHandle; }; struct ISteamInput_SteamInput001_DeactivateActionSetLayer_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint64_t actionSetLayerHandle; }; struct ISteamInput_SteamInput001_DeactivateAllActionSetLayers_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; }; struct ISteamInput_SteamInput001_GetActiveActionSetLayers_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t inputHandle; uint64_t *handlesOut; @@ -36533,14 +36533,14 @@ struct ISteamInput_SteamInput001_GetActiveActionSetLayers_params struct ISteamInput_SteamInput001_GetDigitalActionHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamInput_SteamInput001_GetDigitalActionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; InputDigitalActionData_t *_ret; uint64_t inputHandle; uint64_t digitalActionHandle; @@ -36548,7 +36548,7 @@ struct ISteamInput_SteamInput001_GetDigitalActionData_params struct ISteamInput_SteamInput001_GetDigitalActionOrigins_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t inputHandle; uint64_t actionSetHandle; @@ -36558,14 +36558,14 @@ struct ISteamInput_SteamInput001_GetDigitalActionOrigins_params struct ISteamInput_SteamInput001_GetAnalogActionHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamInput_SteamInput001_GetAnalogActionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; InputAnalogActionData_t *_ret; uint64_t inputHandle; uint64_t analogActionHandle; @@ -36573,7 +36573,7 @@ struct ISteamInput_SteamInput001_GetAnalogActionData_params struct ISteamInput_SteamInput001_GetAnalogActionOrigins_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t inputHandle; uint64_t actionSetHandle; @@ -36583,35 +36583,35 @@ struct ISteamInput_SteamInput001_GetAnalogActionOrigins_params struct ISteamInput_SteamInput001_GetGlyphForActionOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput001_GetStringForActionOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput001_StopAnalogActionMomentum_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint64_t eAction; }; struct ISteamInput_SteamInput001_GetMotionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; InputMotionData_t *_ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput001_TriggerVibration_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint16_t usLeftSpeed; uint16_t usRightSpeed; @@ -36619,7 +36619,7 @@ struct ISteamInput_SteamInput001_TriggerVibration_params struct ISteamInput_SteamInput001_SetLEDColor_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint8_t nColorR; uint8_t nColorG; @@ -36629,7 +36629,7 @@ struct ISteamInput_SteamInput001_SetLEDColor_params struct ISteamInput_SteamInput001_TriggerHapticPulse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -36637,7 +36637,7 @@ struct ISteamInput_SteamInput001_TriggerHapticPulse_params struct ISteamInput_SteamInput001_TriggerRepeatedHapticPulse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -36648,49 +36648,49 @@ struct ISteamInput_SteamInput001_TriggerRepeatedHapticPulse_params struct ISteamInput_SteamInput001_ShowBindingPanel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput001_GetInputTypeForHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput001_GetControllerForGamepadIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; int32_t nIndex; }; struct ISteamInput_SteamInput001_GetGamepadIndexForController_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t ulinputHandle; }; struct ISteamInput_SteamInput001_GetStringForXboxOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput001_GetGlyphForXboxOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput001_GetActionOriginFromXboxOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t inputHandle; uint32_t eOrigin; @@ -36698,7 +36698,7 @@ struct ISteamInput_SteamInput001_GetActionOriginFromXboxOrigin_params struct ISteamInput_SteamInput001_TranslateActionOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t eDestinationInputType; uint32_t eSourceOrigin; @@ -36706,7 +36706,7 @@ struct ISteamInput_SteamInput001_TranslateActionOrigin_params struct ISteamInput_SteamInput001_GetDeviceBindingRevision_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t inputHandle; int32_t *pMajor; @@ -36715,79 +36715,79 @@ struct ISteamInput_SteamInput001_GetDeviceBindingRevision_params struct ISteamInput_SteamInput001_GetRemotePlaySessionID_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput002_Init_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamInput_SteamInput002_Shutdown_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamInput_SteamInput002_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamInput_SteamInput002_GetConnectedControllers_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t *handlesOut; }; struct ISteamInput_SteamInput002_GetActionSetHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszActionSetName; }; struct ISteamInput_SteamInput002_ActivateActionSet_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint64_t actionSetHandle; }; struct ISteamInput_SteamInput002_GetCurrentActionSet_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput002_ActivateActionSetLayer_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint64_t actionSetLayerHandle; }; struct ISteamInput_SteamInput002_DeactivateActionSetLayer_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint64_t actionSetLayerHandle; }; struct ISteamInput_SteamInput002_DeactivateAllActionSetLayers_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; }; struct ISteamInput_SteamInput002_GetActiveActionSetLayers_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t inputHandle; uint64_t *handlesOut; @@ -36795,14 +36795,14 @@ struct ISteamInput_SteamInput002_GetActiveActionSetLayers_params struct ISteamInput_SteamInput002_GetDigitalActionHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamInput_SteamInput002_GetDigitalActionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; InputDigitalActionData_t *_ret; uint64_t inputHandle; uint64_t digitalActionHandle; @@ -36810,7 +36810,7 @@ struct ISteamInput_SteamInput002_GetDigitalActionData_params struct ISteamInput_SteamInput002_GetDigitalActionOrigins_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t inputHandle; uint64_t actionSetHandle; @@ -36820,14 +36820,14 @@ struct ISteamInput_SteamInput002_GetDigitalActionOrigins_params struct ISteamInput_SteamInput002_GetAnalogActionHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamInput_SteamInput002_GetAnalogActionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; InputAnalogActionData_t *_ret; uint64_t inputHandle; uint64_t analogActionHandle; @@ -36835,7 +36835,7 @@ struct ISteamInput_SteamInput002_GetAnalogActionData_params struct ISteamInput_SteamInput002_GetAnalogActionOrigins_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t inputHandle; uint64_t actionSetHandle; @@ -36845,35 +36845,35 @@ struct ISteamInput_SteamInput002_GetAnalogActionOrigins_params struct ISteamInput_SteamInput002_GetGlyphForActionOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput002_GetStringForActionOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput002_StopAnalogActionMomentum_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint64_t eAction; }; struct ISteamInput_SteamInput002_GetMotionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; InputMotionData_t *_ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput002_TriggerVibration_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint16_t usLeftSpeed; uint16_t usRightSpeed; @@ -36881,7 +36881,7 @@ struct ISteamInput_SteamInput002_TriggerVibration_params struct ISteamInput_SteamInput002_SetLEDColor_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint8_t nColorR; uint8_t nColorG; @@ -36891,7 +36891,7 @@ struct ISteamInput_SteamInput002_SetLEDColor_params struct ISteamInput_SteamInput002_TriggerHapticPulse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -36899,7 +36899,7 @@ struct ISteamInput_SteamInput002_TriggerHapticPulse_params struct ISteamInput_SteamInput002_TriggerRepeatedHapticPulse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -36910,49 +36910,49 @@ struct ISteamInput_SteamInput002_TriggerRepeatedHapticPulse_params struct ISteamInput_SteamInput002_ShowBindingPanel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput002_GetInputTypeForHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput002_GetControllerForGamepadIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; int32_t nIndex; }; struct ISteamInput_SteamInput002_GetGamepadIndexForController_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t ulinputHandle; }; struct ISteamInput_SteamInput002_GetStringForXboxOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput002_GetGlyphForXboxOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput002_GetActionOriginFromXboxOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t inputHandle; uint32_t eOrigin; @@ -36960,7 +36960,7 @@ struct ISteamInput_SteamInput002_GetActionOriginFromXboxOrigin_params struct ISteamInput_SteamInput002_TranslateActionOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t eDestinationInputType; uint32_t eSourceOrigin; @@ -36968,7 +36968,7 @@ struct ISteamInput_SteamInput002_TranslateActionOrigin_params struct ISteamInput_SteamInput002_GetDeviceBindingRevision_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t inputHandle; int32_t *pMajor; @@ -36977,40 +36977,40 @@ struct ISteamInput_SteamInput002_GetDeviceBindingRevision_params struct ISteamInput_SteamInput002_GetRemotePlaySessionID_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput005_Init_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bExplicitlyCallRunFrame; }; struct ISteamInput_SteamInput005_Shutdown_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamInput_SteamInput005_SetInputActionManifestFilePath_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchInputActionManifestAbsolutePath; }; struct ISteamInput_SteamInput005_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bReservedValue; }; struct ISteamInput_SteamInput005_BWaitForData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bWaitForever; uint32_t unTimeout; @@ -37018,72 +37018,72 @@ struct ISteamInput_SteamInput005_BWaitForData_params struct ISteamInput_SteamInput005_BNewDataAvailable_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamInput_SteamInput005_GetConnectedControllers_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t *handlesOut; }; struct ISteamInput_SteamInput005_EnableDeviceCallbacks_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamInput_SteamInput005_EnableActionEventCallbacks_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL pCallback)(SteamInputActionEvent_t *); }; struct ISteamInput_SteamInput005_GetActionSetHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszActionSetName; }; struct ISteamInput_SteamInput005_ActivateActionSet_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint64_t actionSetHandle; }; struct ISteamInput_SteamInput005_GetCurrentActionSet_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput005_ActivateActionSetLayer_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint64_t actionSetLayerHandle; }; struct ISteamInput_SteamInput005_DeactivateActionSetLayer_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint64_t actionSetLayerHandle; }; struct ISteamInput_SteamInput005_DeactivateAllActionSetLayers_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; }; struct ISteamInput_SteamInput005_GetActiveActionSetLayers_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t inputHandle; uint64_t *handlesOut; @@ -37091,14 +37091,14 @@ struct ISteamInput_SteamInput005_GetActiveActionSetLayers_params struct ISteamInput_SteamInput005_GetDigitalActionHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamInput_SteamInput005_GetDigitalActionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; InputDigitalActionData_t *_ret; uint64_t inputHandle; uint64_t digitalActionHandle; @@ -37106,7 +37106,7 @@ struct ISteamInput_SteamInput005_GetDigitalActionData_params struct ISteamInput_SteamInput005_GetDigitalActionOrigins_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t inputHandle; uint64_t actionSetHandle; @@ -37116,21 +37116,21 @@ struct ISteamInput_SteamInput005_GetDigitalActionOrigins_params struct ISteamInput_SteamInput005_GetStringForDigitalActionName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint64_t eActionHandle; }; struct ISteamInput_SteamInput005_GetAnalogActionHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamInput_SteamInput005_GetAnalogActionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; InputAnalogActionData_t *_ret; uint64_t inputHandle; uint64_t analogActionHandle; @@ -37138,7 +37138,7 @@ struct ISteamInput_SteamInput005_GetAnalogActionData_params struct ISteamInput_SteamInput005_GetAnalogActionOrigins_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t inputHandle; uint64_t actionSetHandle; @@ -37148,7 +37148,7 @@ struct ISteamInput_SteamInput005_GetAnalogActionOrigins_params struct ISteamInput_SteamInput005_GetGlyphPNGForActionOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; uint32_t eSize; @@ -37157,7 +37157,7 @@ struct ISteamInput_SteamInput005_GetGlyphPNGForActionOrigin_params struct ISteamInput_SteamInput005_GetGlyphSVGForActionOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; uint32_t unFlags; @@ -37165,42 +37165,42 @@ struct ISteamInput_SteamInput005_GetGlyphSVGForActionOrigin_params struct ISteamInput_SteamInput005_GetGlyphForActionOrigin_Legacy_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput005_GetStringForActionOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput005_GetStringForAnalogActionName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint64_t eActionHandle; }; struct ISteamInput_SteamInput005_StopAnalogActionMomentum_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint64_t eAction; }; struct ISteamInput_SteamInput005_GetMotionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; InputMotionData_t *_ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput005_TriggerVibration_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint16_t usLeftSpeed; uint16_t usRightSpeed; @@ -37208,7 +37208,7 @@ struct ISteamInput_SteamInput005_TriggerVibration_params struct ISteamInput_SteamInput005_TriggerVibrationExtended_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint16_t usLeftSpeed; uint16_t usRightSpeed; @@ -37218,7 +37218,7 @@ struct ISteamInput_SteamInput005_TriggerVibrationExtended_params struct ISteamInput_SteamInput005_TriggerSimpleHapticEvent_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint32_t eHapticLocation; uint8_t nIntensity; @@ -37229,7 +37229,7 @@ struct ISteamInput_SteamInput005_TriggerSimpleHapticEvent_params struct ISteamInput_SteamInput005_SetLEDColor_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint8_t nColorR; uint8_t nColorG; @@ -37239,7 +37239,7 @@ struct ISteamInput_SteamInput005_SetLEDColor_params struct ISteamInput_SteamInput005_Legacy_TriggerHapticPulse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -37247,7 +37247,7 @@ struct ISteamInput_SteamInput005_Legacy_TriggerHapticPulse_params struct ISteamInput_SteamInput005_Legacy_TriggerRepeatedHapticPulse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -37258,49 +37258,49 @@ struct ISteamInput_SteamInput005_Legacy_TriggerRepeatedHapticPulse_params struct ISteamInput_SteamInput005_ShowBindingPanel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput005_GetInputTypeForHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput005_GetControllerForGamepadIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; int32_t nIndex; }; struct ISteamInput_SteamInput005_GetGamepadIndexForController_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t ulinputHandle; }; struct ISteamInput_SteamInput005_GetStringForXboxOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput005_GetGlyphForXboxOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput005_GetActionOriginFromXboxOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t inputHandle; uint32_t eOrigin; @@ -37308,7 +37308,7 @@ struct ISteamInput_SteamInput005_GetActionOriginFromXboxOrigin_params struct ISteamInput_SteamInput005_TranslateActionOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t eDestinationInputType; uint32_t eSourceOrigin; @@ -37316,7 +37316,7 @@ struct ISteamInput_SteamInput005_TranslateActionOrigin_params struct ISteamInput_SteamInput005_GetDeviceBindingRevision_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t inputHandle; int32_t *pMajor; @@ -37325,46 +37325,46 @@ struct ISteamInput_SteamInput005_GetDeviceBindingRevision_params struct ISteamInput_SteamInput005_GetRemotePlaySessionID_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput005_GetSessionInputConfigurationSettings_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint16_t _ret; }; struct ISteamInput_SteamInput006_Init_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bExplicitlyCallRunFrame; }; struct ISteamInput_SteamInput006_Shutdown_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamInput_SteamInput006_SetInputActionManifestFilePath_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchInputActionManifestAbsolutePath; }; struct ISteamInput_SteamInput006_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bReservedValue; }; struct ISteamInput_SteamInput006_BWaitForData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bWaitForever; uint32_t unTimeout; @@ -37372,72 +37372,72 @@ struct ISteamInput_SteamInput006_BWaitForData_params struct ISteamInput_SteamInput006_BNewDataAvailable_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamInput_SteamInput006_GetConnectedControllers_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t *handlesOut; }; struct ISteamInput_SteamInput006_EnableDeviceCallbacks_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamInput_SteamInput006_EnableActionEventCallbacks_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL pCallback)(SteamInputActionEvent_t *); }; struct ISteamInput_SteamInput006_GetActionSetHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszActionSetName; }; struct ISteamInput_SteamInput006_ActivateActionSet_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint64_t actionSetHandle; }; struct ISteamInput_SteamInput006_GetCurrentActionSet_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput006_ActivateActionSetLayer_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint64_t actionSetLayerHandle; }; struct ISteamInput_SteamInput006_DeactivateActionSetLayer_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint64_t actionSetLayerHandle; }; struct ISteamInput_SteamInput006_DeactivateAllActionSetLayers_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; }; struct ISteamInput_SteamInput006_GetActiveActionSetLayers_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t inputHandle; uint64_t *handlesOut; @@ -37445,14 +37445,14 @@ struct ISteamInput_SteamInput006_GetActiveActionSetLayers_params struct ISteamInput_SteamInput006_GetDigitalActionHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamInput_SteamInput006_GetDigitalActionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; InputDigitalActionData_t *_ret; uint64_t inputHandle; uint64_t digitalActionHandle; @@ -37460,7 +37460,7 @@ struct ISteamInput_SteamInput006_GetDigitalActionData_params struct ISteamInput_SteamInput006_GetDigitalActionOrigins_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t inputHandle; uint64_t actionSetHandle; @@ -37470,21 +37470,21 @@ struct ISteamInput_SteamInput006_GetDigitalActionOrigins_params struct ISteamInput_SteamInput006_GetStringForDigitalActionName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint64_t eActionHandle; }; struct ISteamInput_SteamInput006_GetAnalogActionHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamInput_SteamInput006_GetAnalogActionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; InputAnalogActionData_t *_ret; uint64_t inputHandle; uint64_t analogActionHandle; @@ -37492,7 +37492,7 @@ struct ISteamInput_SteamInput006_GetAnalogActionData_params struct ISteamInput_SteamInput006_GetAnalogActionOrigins_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t inputHandle; uint64_t actionSetHandle; @@ -37502,7 +37502,7 @@ struct ISteamInput_SteamInput006_GetAnalogActionOrigins_params struct ISteamInput_SteamInput006_GetGlyphPNGForActionOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; uint32_t eSize; @@ -37511,7 +37511,7 @@ struct ISteamInput_SteamInput006_GetGlyphPNGForActionOrigin_params struct ISteamInput_SteamInput006_GetGlyphSVGForActionOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; uint32_t unFlags; @@ -37519,42 +37519,42 @@ struct ISteamInput_SteamInput006_GetGlyphSVGForActionOrigin_params struct ISteamInput_SteamInput006_GetGlyphForActionOrigin_Legacy_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput006_GetStringForActionOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput006_GetStringForAnalogActionName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint64_t eActionHandle; }; struct ISteamInput_SteamInput006_StopAnalogActionMomentum_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint64_t eAction; }; struct ISteamInput_SteamInput006_GetMotionData_params { - struct u_iface *u_iface; + struct u_iface u_iface; InputMotionData_t *_ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput006_TriggerVibration_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint16_t usLeftSpeed; uint16_t usRightSpeed; @@ -37562,7 +37562,7 @@ struct ISteamInput_SteamInput006_TriggerVibration_params struct ISteamInput_SteamInput006_TriggerVibrationExtended_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint16_t usLeftSpeed; uint16_t usRightSpeed; @@ -37572,7 +37572,7 @@ struct ISteamInput_SteamInput006_TriggerVibrationExtended_params struct ISteamInput_SteamInput006_TriggerSimpleHapticEvent_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint32_t eHapticLocation; uint8_t nIntensity; @@ -37583,7 +37583,7 @@ struct ISteamInput_SteamInput006_TriggerSimpleHapticEvent_params struct ISteamInput_SteamInput006_SetLEDColor_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint8_t nColorR; uint8_t nColorG; @@ -37593,7 +37593,7 @@ struct ISteamInput_SteamInput006_SetLEDColor_params struct ISteamInput_SteamInput006_Legacy_TriggerHapticPulse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -37601,7 +37601,7 @@ struct ISteamInput_SteamInput006_Legacy_TriggerHapticPulse_params struct ISteamInput_SteamInput006_Legacy_TriggerRepeatedHapticPulse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -37612,49 +37612,49 @@ struct ISteamInput_SteamInput006_Legacy_TriggerRepeatedHapticPulse_params struct ISteamInput_SteamInput006_ShowBindingPanel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput006_GetInputTypeForHandle_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput006_GetControllerForGamepadIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; int32_t nIndex; }; struct ISteamInput_SteamInput006_GetGamepadIndexForController_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint64_t ulinputHandle; }; struct ISteamInput_SteamInput006_GetStringForXboxOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput006_GetGlyphForXboxOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput006_GetActionOriginFromXboxOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t inputHandle; uint32_t eOrigin; @@ -37662,7 +37662,7 @@ struct ISteamInput_SteamInput006_GetActionOriginFromXboxOrigin_params struct ISteamInput_SteamInput006_TranslateActionOrigin_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t eDestinationInputType; uint32_t eSourceOrigin; @@ -37670,7 +37670,7 @@ struct ISteamInput_SteamInput006_TranslateActionOrigin_params struct ISteamInput_SteamInput006_GetDeviceBindingRevision_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t inputHandle; int32_t *pMajor; @@ -37679,39 +37679,39 @@ struct ISteamInput_SteamInput006_GetDeviceBindingRevision_params struct ISteamInput_SteamInput006_GetRemotePlaySessionID_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput006_GetSessionInputConfigurationSettings_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint16_t _ret; }; struct ISteamInput_SteamInput006_SetDualSenseTriggerEffect_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t inputHandle; const ScePadTriggerEffectParam *pParam; }; struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetActive_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bActive; }; struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetHeartbeatInterval_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t iHeartbeatInterval; }; struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleIncomingPacket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const void *pData; int32_t cbData; @@ -37721,7 +37721,7 @@ struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleIncomingPacke struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNextOutgoingPacket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; void *pOut; int32_t cbMaxOut; @@ -37731,7 +37731,7 @@ struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNextOutgoingPack struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasicServerData_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint16_t nProtocolVersion; int8_t bDedicatedServer; const char *pRegionName; @@ -37743,55 +37743,55 @@ struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasicServerData_ struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_ClearAllKeyValues_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetKeyValue_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pKey; const char *pValue; }; struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_NotifyShutdown_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_WasRestartRequested_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_ForceHeartbeat_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_AddMasterServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pServerAddress; }; struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_RemoveMasterServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pServerAddress; }; struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNumMasterServers_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetMasterServerAddress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t iServer; char *pOut; @@ -37800,7 +37800,7 @@ struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetMasterServerAddr struct ISteamGameSearch_SteamMatchGameSearch001_AddGameSearchParams_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const char *pchKeyToFind; const char *pchValuesToFind; @@ -37808,7 +37808,7 @@ struct ISteamGameSearch_SteamMatchGameSearch001_AddGameSearchParams_params struct ISteamGameSearch_SteamMatchGameSearch001_SearchForGameWithLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDLobby; int32_t nPlayerMin; @@ -37817,7 +37817,7 @@ struct ISteamGameSearch_SteamMatchGameSearch001_SearchForGameWithLobby_params struct ISteamGameSearch_SteamMatchGameSearch001_SearchForGameSolo_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t nPlayerMin; int32_t nPlayerMax; @@ -37825,19 +37825,19 @@ struct ISteamGameSearch_SteamMatchGameSearch001_SearchForGameSolo_params struct ISteamGameSearch_SteamMatchGameSearch001_AcceptGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamGameSearch_SteamMatchGameSearch001_DeclineGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamGameSearch_SteamMatchGameSearch001_RetrieveConnectionDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDHost; char *pchConnectionDetails; @@ -37846,13 +37846,13 @@ struct ISteamGameSearch_SteamMatchGameSearch001_RetrieveConnectionDetails_params struct ISteamGameSearch_SteamMatchGameSearch001_EndGameSearch_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamGameSearch_SteamMatchGameSearch001_SetGameHostParams_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const char *pchKey; const char *pchValue; @@ -37860,7 +37860,7 @@ struct ISteamGameSearch_SteamMatchGameSearch001_SetGameHostParams_params struct ISteamGameSearch_SteamMatchGameSearch001_SetConnectionDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const char *pchConnectionDetails; int32_t cubConnectionDetails; @@ -37868,7 +37868,7 @@ struct ISteamGameSearch_SteamMatchGameSearch001_SetConnectionDetails_params struct ISteamGameSearch_SteamMatchGameSearch001_RequestPlayersForGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t nPlayerMin; int32_t nPlayerMax; @@ -37877,20 +37877,20 @@ struct ISteamGameSearch_SteamMatchGameSearch001_RequestPlayersForGame_params struct ISteamGameSearch_SteamMatchGameSearch001_HostConfirmGameStart_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t ullUniqueGameID; }; struct ISteamGameSearch_SteamMatchGameSearch001_CancelRequestPlayersForGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamGameSearch_SteamMatchGameSearch001_SubmitPlayerResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t ullUniqueGameID; CSteamID steamIDPlayer; @@ -37899,20 +37899,20 @@ struct ISteamGameSearch_SteamMatchGameSearch001_SubmitPlayerResult_params struct ISteamGameSearch_SteamMatchGameSearch001_EndGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t ullUniqueGameID; }; struct ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGameCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iGame; uint32_t *pnAppID; @@ -37924,7 +37924,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t nAppID; uint32_t nIP; @@ -37935,7 +37935,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t nAppID; uint32_t nIP; @@ -37945,7 +37945,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iGame; uint32_t *pnAppID; @@ -37958,7 +37958,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2_params struct ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t nAppID; uint32_t nIP; @@ -37970,7 +37970,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame2_params struct ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t nAppID; uint32_t nIP; @@ -37981,7 +37981,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2_params struct ISteamMatchmaking_SteamMatchMaking001_RequestLobbyList_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t ulGameID; MatchMakingKeyValuePair_t *pFilters; uint32_t nFilters; @@ -37989,33 +37989,33 @@ struct ISteamMatchmaking_SteamMatchMaking001_RequestLobbyList_params struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iLobby; }; struct ISteamMatchmaking_SteamMatchMaking001_CreateLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t ulGameID; int8_t bPrivate; }; struct ISteamMatchmaking_SteamMatchMaking001_JoinLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking001_LeaveLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking001_InviteUserToLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDInvitee; @@ -38023,14 +38023,14 @@ struct ISteamMatchmaking_SteamMatchMaking001_InviteUserToLobby_params struct ISteamMatchmaking_SteamMatchMaking001_GetNumLobbyMembers_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDLobby; int32_t iMember; @@ -38038,7 +38038,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberByIndex_params struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID SteamIDLobby; const char *pchKey; @@ -38046,7 +38046,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking001_SetLobbyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; const char *pchKey; @@ -38055,7 +38055,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_SetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberData_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDLobby; CSteamID steamIDUser; @@ -38064,7 +38064,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; const char *pchKey; @@ -38073,7 +38073,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; const void *pvMsgBody; @@ -38082,7 +38082,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg_params struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyChatEntry_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDLobby; int32_t iChatID; @@ -38094,20 +38094,20 @@ struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyChatEntry_params struct ISteamMatchmaking_SteamMatchMaking001_RequestLobbyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGameCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iGame; uint32_t *pnAppID; @@ -38120,7 +38120,7 @@ struct ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking002_AddFavoriteGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t nAppID; uint32_t nIP; @@ -38132,7 +38132,7 @@ struct ISteamMatchmaking_SteamMatchMaking002_AddFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t nAppID; uint32_t nIP; @@ -38143,37 +38143,37 @@ struct ISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking002_RequestLobbyList_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iLobby; }; struct ISteamMatchmaking_SteamMatchMaking002_CreateLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bPrivate; }; struct ISteamMatchmaking_SteamMatchMaking002_JoinLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking002_LeaveLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking002_InviteUserToLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDInvitee; @@ -38181,14 +38181,14 @@ struct ISteamMatchmaking_SteamMatchMaking002_InviteUserToLobby_params struct ISteamMatchmaking_SteamMatchMaking002_GetNumLobbyMembers_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDLobby; int32_t iMember; @@ -38196,7 +38196,7 @@ struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberByIndex_params struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDLobby; const char *pchKey; @@ -38204,7 +38204,7 @@ struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking002_SetLobbyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; const char *pchKey; @@ -38213,7 +38213,7 @@ struct ISteamMatchmaking_SteamMatchMaking002_SetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberData_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDLobby; CSteamID steamIDUser; @@ -38222,7 +38222,7 @@ struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; const char *pchKey; const char *pchValue; @@ -38230,7 +38230,7 @@ struct ISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; const void *pvMsgBody; @@ -38239,7 +38239,7 @@ struct ISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg_params struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyChatEntry_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDLobby; int32_t iChatID; @@ -38251,14 +38251,14 @@ struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyChatEntry_params struct ISteamMatchmaking_SteamMatchMaking002_RequestLobbyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking002_SetLobbyGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; uint32_t unGameServerIP; uint16_t unGameServerPort; @@ -38267,13 +38267,13 @@ struct ISteamMatchmaking_SteamMatchMaking002_SetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGameCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iGame; uint32_t *pnAppID; @@ -38286,7 +38286,7 @@ struct ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking003_AddFavoriteGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t nAppID; uint32_t nIP; @@ -38298,7 +38298,7 @@ struct ISteamMatchmaking_SteamMatchMaking003_AddFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t nAppID; uint32_t nIP; @@ -38309,19 +38309,19 @@ struct ISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking003_RequestLobbyList_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchKeyToMatch; const char *pchValueToMatch; }; struct ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListNumericalFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchKeyToMatch; int32_t nValueToMatch; int32_t nComparisonType; @@ -38329,37 +38329,37 @@ struct ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListNumericalFilter_ struct ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListSlotsAvailableFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iLobby; }; struct ISteamMatchmaking_SteamMatchMaking003_CreateLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bPrivate; }; struct ISteamMatchmaking_SteamMatchMaking003_JoinLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking003_LeaveLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking003_InviteUserToLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDInvitee; @@ -38367,14 +38367,14 @@ struct ISteamMatchmaking_SteamMatchMaking003_InviteUserToLobby_params struct ISteamMatchmaking_SteamMatchMaking003_GetNumLobbyMembers_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDLobby; int32_t iMember; @@ -38382,7 +38382,7 @@ struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberByIndex_params struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDLobby; const char *pchKey; @@ -38390,7 +38390,7 @@ struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; const char *pchKey; @@ -38399,7 +38399,7 @@ struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberData_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDLobby; CSteamID steamIDUser; @@ -38408,7 +38408,7 @@ struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; const char *pchKey; const char *pchValue; @@ -38416,7 +38416,7 @@ struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; const void *pvMsgBody; @@ -38425,7 +38425,7 @@ struct ISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg_params struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyChatEntry_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDLobby; int32_t iChatID; @@ -38437,14 +38437,14 @@ struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyChatEntry_params struct ISteamMatchmaking_SteamMatchMaking003_RequestLobbyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; uint32_t unGameServerIP; uint16_t unGameServerPort; @@ -38453,7 +38453,7 @@ struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; uint32_t *punGameServerIP; @@ -38463,7 +38463,7 @@ struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberLimit_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; int32_t cMaxMembers; @@ -38471,33 +38471,33 @@ struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberLimit_params struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberLimit_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; int8_t bVoiceEnabled; }; struct ISteamMatchmaking_SteamMatchMaking003_RequestFriendsLobbies_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGameCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iGame; uint32_t *pnAppID; @@ -38510,7 +38510,7 @@ struct ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking004_AddFavoriteGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t nAppID; uint32_t nIP; @@ -38522,7 +38522,7 @@ struct ISteamMatchmaking_SteamMatchMaking004_AddFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t nAppID; uint32_t nIP; @@ -38533,19 +38533,19 @@ struct ISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking004_RequestLobbyList_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchKeyToMatch; const char *pchValueToMatch; }; struct ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListNumericalFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchKeyToMatch; int32_t nValueToMatch; int32_t nComparisonType; @@ -38553,37 +38553,37 @@ struct ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListNumericalFilter_ struct ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListSlotsAvailableFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iLobby; }; struct ISteamMatchmaking_SteamMatchMaking004_CreateLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bPrivate; }; struct ISteamMatchmaking_SteamMatchMaking004_JoinLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking004_LeaveLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking004_InviteUserToLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDInvitee; @@ -38591,14 +38591,14 @@ struct ISteamMatchmaking_SteamMatchMaking004_InviteUserToLobby_params struct ISteamMatchmaking_SteamMatchMaking004_GetNumLobbyMembers_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDLobby; int32_t iMember; @@ -38606,7 +38606,7 @@ struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberByIndex_params struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDLobby; const char *pchKey; @@ -38614,7 +38614,7 @@ struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; const char *pchKey; @@ -38623,7 +38623,7 @@ struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberData_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDLobby; CSteamID steamIDUser; @@ -38632,7 +38632,7 @@ struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; const char *pchKey; const char *pchValue; @@ -38640,7 +38640,7 @@ struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; const void *pvMsgBody; @@ -38649,7 +38649,7 @@ struct ISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg_params struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyChatEntry_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDLobby; int32_t iChatID; @@ -38661,14 +38661,14 @@ struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyChatEntry_params struct ISteamMatchmaking_SteamMatchMaking004_RequestLobbyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; uint32_t unGameServerIP; uint16_t unGameServerPort; @@ -38677,7 +38677,7 @@ struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; uint32_t *punGameServerIP; @@ -38687,7 +38687,7 @@ struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberLimit_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; int32_t cMaxMembers; @@ -38695,26 +38695,26 @@ struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberLimit_params struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberLimit_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking004_RequestFriendsLobbies_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGameCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iGame; uint32_t *pnAppID; @@ -38727,7 +38727,7 @@ struct ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking005_AddFavoriteGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t nAppID; uint32_t nIP; @@ -38739,7 +38739,7 @@ struct ISteamMatchmaking_SteamMatchMaking005_AddFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t nAppID; uint32_t nIP; @@ -38750,19 +38750,19 @@ struct ISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking005_RequestLobbyList_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchKeyToMatch; const char *pchValueToMatch; }; struct ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNumericalFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchKeyToMatch; int32_t nValueToMatch; int32_t nComparisonType; @@ -38770,44 +38770,44 @@ struct ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNumericalFilter_ struct ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListSlotsAvailableFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNearValueFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchKeyToMatch; int32_t nValueToBeCloseTo; }; struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iLobby; }; struct ISteamMatchmaking_SteamMatchMaking005_CreateLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t eLobbyType; }; struct ISteamMatchmaking_SteamMatchMaking005_JoinLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking005_LeaveLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking005_InviteUserToLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDInvitee; @@ -38815,14 +38815,14 @@ struct ISteamMatchmaking_SteamMatchMaking005_InviteUserToLobby_params struct ISteamMatchmaking_SteamMatchMaking005_GetNumLobbyMembers_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDLobby; int32_t iMember; @@ -38830,7 +38830,7 @@ struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberByIndex_params struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDLobby; const char *pchKey; @@ -38838,7 +38838,7 @@ struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; const char *pchKey; @@ -38847,7 +38847,7 @@ struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberData_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDLobby; CSteamID steamIDUser; @@ -38856,7 +38856,7 @@ struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; const char *pchKey; const char *pchValue; @@ -38864,7 +38864,7 @@ struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; const void *pvMsgBody; @@ -38873,7 +38873,7 @@ struct ISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg_params struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyChatEntry_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDLobby; int32_t iChatID; @@ -38885,14 +38885,14 @@ struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyChatEntry_params struct ISteamMatchmaking_SteamMatchMaking005_RequestLobbyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; uint32_t unGameServerIP; uint16_t unGameServerPort; @@ -38901,7 +38901,7 @@ struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; uint32_t *punGameServerIP; @@ -38911,7 +38911,7 @@ struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberLimit_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; int32_t cMaxMembers; @@ -38919,20 +38919,20 @@ struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberLimit_params struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberLimit_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking005_RequestFriendsLobbies_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyType_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; uint32_t eLobbyType; @@ -38940,27 +38940,27 @@ struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyType_params struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyOwner_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyDistance_params { - struct u_iface *u_iface; + struct u_iface u_iface; float _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGameCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iGame; uint32_t *pnAppID; @@ -38973,7 +38973,7 @@ struct ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking006_AddFavoriteGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t nAppID; uint32_t nIP; @@ -38985,7 +38985,7 @@ struct ISteamMatchmaking_SteamMatchMaking006_AddFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t nAppID; uint32_t nIP; @@ -38996,20 +38996,20 @@ struct ISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking006_RequestLobbyList_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchKeyToMatch; const char *pchValueToMatch; }; struct ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNumericalFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchKeyToMatch; int32_t nValueToMatch; int32_t nComparisonType; @@ -39017,41 +39017,41 @@ struct ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNumericalFilter_ struct ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNearValueFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchKeyToMatch; int32_t nValueToBeCloseTo; }; struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iLobby; }; struct ISteamMatchmaking_SteamMatchMaking006_CreateLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eLobbyType; }; struct ISteamMatchmaking_SteamMatchMaking006_JoinLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking006_LeaveLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking006_InviteUserToLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDInvitee; @@ -39059,14 +39059,14 @@ struct ISteamMatchmaking_SteamMatchMaking006_InviteUserToLobby_params struct ISteamMatchmaking_SteamMatchMaking006_GetNumLobbyMembers_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDLobby; int32_t iMember; @@ -39074,7 +39074,7 @@ struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberByIndex_params struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDLobby; const char *pchKey; @@ -39082,7 +39082,7 @@ struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; const char *pchKey; @@ -39091,7 +39091,7 @@ struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberData_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDLobby; CSteamID steamIDUser; @@ -39100,7 +39100,7 @@ struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; const char *pchKey; const char *pchValue; @@ -39108,7 +39108,7 @@ struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; const void *pvMsgBody; @@ -39117,7 +39117,7 @@ struct ISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg_params struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyChatEntry_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDLobby; int32_t iChatID; @@ -39129,14 +39129,14 @@ struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyChatEntry_params struct ISteamMatchmaking_SteamMatchMaking006_RequestLobbyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; uint32_t unGameServerIP; uint16_t unGameServerPort; @@ -39145,7 +39145,7 @@ struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; uint32_t *punGameServerIP; @@ -39155,7 +39155,7 @@ struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberLimit_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; int32_t cMaxMembers; @@ -39163,14 +39163,14 @@ struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberLimit_params struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberLimit_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyType_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; uint32_t eLobbyType; @@ -39178,20 +39178,20 @@ struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyType_params struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyOwner_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGameCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iGame; uint32_t *pnAppID; @@ -39204,7 +39204,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking007_AddFavoriteGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t nAppID; uint32_t nIP; @@ -39216,7 +39216,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_AddFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t nAppID; uint32_t nIP; @@ -39227,13 +39227,13 @@ struct ISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking007_RequestLobbyList_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListStringFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchKeyToMatch; const char *pchValueToMatch; uint32_t eComparisonType; @@ -39241,7 +39241,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListStringFilter_par struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNumericalFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchKeyToMatch; int32_t nValueToMatch; uint32_t eComparisonType; @@ -39249,27 +39249,27 @@ struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNumericalFilter_ struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNearValueFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchKeyToMatch; int32_t nValueToBeCloseTo; }; struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListFilterSlotsAvailable_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t nSlotsAvailable; }; struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iLobby; }; struct ISteamMatchmaking_SteamMatchMaking007_CreateLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eLobbyType; int32_t cMaxMembers; @@ -39277,20 +39277,20 @@ struct ISteamMatchmaking_SteamMatchMaking007_CreateLobby_params struct ISteamMatchmaking_SteamMatchMaking007_JoinLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking007_LeaveLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking007_InviteUserToLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDInvitee; @@ -39298,14 +39298,14 @@ struct ISteamMatchmaking_SteamMatchMaking007_InviteUserToLobby_params struct ISteamMatchmaking_SteamMatchMaking007_GetNumLobbyMembers_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDLobby; int32_t iMember; @@ -39313,7 +39313,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberByIndex_params struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDLobby; const char *pchKey; @@ -39321,7 +39321,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; const char *pchKey; @@ -39330,14 +39330,14 @@ struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; int32_t iLobbyData; @@ -39349,7 +39349,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex_params struct ISteamMatchmaking_SteamMatchMaking007_DeleteLobbyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; const char *pchKey; @@ -39357,7 +39357,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_DeleteLobbyData_params struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberData_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDLobby; CSteamID steamIDUser; @@ -39366,7 +39366,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; const char *pchKey; const char *pchValue; @@ -39374,7 +39374,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; const void *pvMsgBody; @@ -39383,7 +39383,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg_params struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDLobby; int32_t iChatID; @@ -39395,14 +39395,14 @@ struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry_params struct ISteamMatchmaking_SteamMatchMaking007_RequestLobbyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; uint32_t unGameServerIP; uint16_t unGameServerPort; @@ -39411,7 +39411,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; uint32_t *punGameServerIP; @@ -39421,7 +39421,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberLimit_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; int32_t cMaxMembers; @@ -39429,14 +39429,14 @@ struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberLimit_params struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberLimit_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyType_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; uint32_t eLobbyType; @@ -39444,7 +39444,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyType_params struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinable_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; int8_t bLobbyJoinable; @@ -39452,14 +39452,14 @@ struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinable_params struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyOwner_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyOwner_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDNewOwner; @@ -39467,13 +39467,13 @@ struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyOwner_params struct ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGameCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iGame; uint32_t *pnAppID; @@ -39486,7 +39486,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking008_AddFavoriteGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t nAppID; uint32_t nIP; @@ -39498,7 +39498,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_AddFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t nAppID; uint32_t nIP; @@ -39509,13 +39509,13 @@ struct ISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking008_RequestLobbyList_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListStringFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchKeyToMatch; const char *pchValueToMatch; uint32_t eComparisonType; @@ -39523,7 +39523,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListStringFilter_par struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNumericalFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchKeyToMatch; int32_t nValueToMatch; uint32_t eComparisonType; @@ -39531,39 +39531,39 @@ struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNumericalFilter_ struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNearValueFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchKeyToMatch; int32_t nValueToBeCloseTo; }; struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListFilterSlotsAvailable_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t nSlotsAvailable; }; struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListDistanceFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t eLobbyDistanceFilter; }; struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListResultCountFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t cMaxResults; }; struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iLobby; }; struct ISteamMatchmaking_SteamMatchMaking008_CreateLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eLobbyType; int32_t cMaxMembers; @@ -39571,20 +39571,20 @@ struct ISteamMatchmaking_SteamMatchMaking008_CreateLobby_params struct ISteamMatchmaking_SteamMatchMaking008_JoinLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking008_LeaveLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking008_InviteUserToLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDInvitee; @@ -39592,14 +39592,14 @@ struct ISteamMatchmaking_SteamMatchMaking008_InviteUserToLobby_params struct ISteamMatchmaking_SteamMatchMaking008_GetNumLobbyMembers_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDLobby; int32_t iMember; @@ -39607,7 +39607,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberByIndex_params struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDLobby; const char *pchKey; @@ -39615,7 +39615,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; const char *pchKey; @@ -39624,14 +39624,14 @@ struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; int32_t iLobbyData; @@ -39643,7 +39643,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex_params struct ISteamMatchmaking_SteamMatchMaking008_DeleteLobbyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; const char *pchKey; @@ -39651,7 +39651,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_DeleteLobbyData_params struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberData_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDLobby; CSteamID steamIDUser; @@ -39660,7 +39660,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; const char *pchKey; const char *pchValue; @@ -39668,7 +39668,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; const void *pvMsgBody; @@ -39677,7 +39677,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg_params struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyChatEntry_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDLobby; int32_t iChatID; @@ -39689,14 +39689,14 @@ struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyChatEntry_params struct ISteamMatchmaking_SteamMatchMaking008_RequestLobbyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; uint32_t unGameServerIP; uint16_t unGameServerPort; @@ -39705,7 +39705,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; uint32_t *punGameServerIP; @@ -39715,7 +39715,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberLimit_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; int32_t cMaxMembers; @@ -39723,14 +39723,14 @@ struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberLimit_params struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberLimit_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyType_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; uint32_t eLobbyType; @@ -39738,7 +39738,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyType_params struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinable_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; int8_t bLobbyJoinable; @@ -39746,14 +39746,14 @@ struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinable_params struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyOwner_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyOwner_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDNewOwner; @@ -39761,13 +39761,13 @@ struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyOwner_params struct ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGameCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iGame; uint32_t *pnAppID; @@ -39780,7 +39780,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking009_AddFavoriteGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t nAppID; uint32_t nIP; @@ -39792,7 +39792,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_AddFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t nAppID; uint32_t nIP; @@ -39803,13 +39803,13 @@ struct ISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking009_RequestLobbyList_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListStringFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchKeyToMatch; const char *pchValueToMatch; uint32_t eComparisonType; @@ -39817,7 +39817,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListStringFilter_par struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNumericalFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchKeyToMatch; int32_t nValueToMatch; uint32_t eComparisonType; @@ -39825,45 +39825,45 @@ struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNumericalFilter_ struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNearValueFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchKeyToMatch; int32_t nValueToBeCloseTo; }; struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListFilterSlotsAvailable_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t nSlotsAvailable; }; struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListDistanceFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t eLobbyDistanceFilter; }; struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListResultCountFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t cMaxResults; }; struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListCompatibleMembersFilter_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; int32_t iLobby; }; struct ISteamMatchmaking_SteamMatchMaking009_CreateLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t eLobbyType; int32_t cMaxMembers; @@ -39871,20 +39871,20 @@ struct ISteamMatchmaking_SteamMatchMaking009_CreateLobby_params struct ISteamMatchmaking_SteamMatchMaking009_JoinLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking009_LeaveLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking009_InviteUserToLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDInvitee; @@ -39892,14 +39892,14 @@ struct ISteamMatchmaking_SteamMatchMaking009_InviteUserToLobby_params struct ISteamMatchmaking_SteamMatchMaking009_GetNumLobbyMembers_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDLobby; int32_t iMember; @@ -39907,7 +39907,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberByIndex_params struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDLobby; const char *pchKey; @@ -39915,7 +39915,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; const char *pchKey; @@ -39924,14 +39924,14 @@ struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; int32_t iLobbyData; @@ -39943,7 +39943,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex_params struct ISteamMatchmaking_SteamMatchMaking009_DeleteLobbyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; const char *pchKey; @@ -39951,7 +39951,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_DeleteLobbyData_params struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberData_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; CSteamID steamIDLobby; CSteamID steamIDUser; @@ -39960,7 +39960,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; const char *pchKey; const char *pchValue; @@ -39968,7 +39968,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; const void *pvMsgBody; @@ -39977,7 +39977,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg_params struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyChatEntry_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDLobby; int32_t iChatID; @@ -39989,14 +39989,14 @@ struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyChatEntry_params struct ISteamMatchmaking_SteamMatchMaking009_RequestLobbyData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDLobby; uint32_t unGameServerIP; uint16_t unGameServerPort; @@ -40005,7 +40005,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; uint32_t *punGameServerIP; @@ -40015,7 +40015,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberLimit_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; int32_t cMaxMembers; @@ -40023,14 +40023,14 @@ struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberLimit_params struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberLimit_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyType_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; uint32_t eLobbyType; @@ -40038,7 +40038,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyType_params struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyJoinable_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; int8_t bLobbyJoinable; @@ -40046,14 +40046,14 @@ struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyJoinable_params struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyOwner_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDNewOwner; @@ -40061,7 +40061,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner_params struct ISteamMatchmaking_SteamMatchMaking009_SetLinkedLobby_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDLobbyDependent; @@ -40069,7 +40069,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_SetLinkedLobby_params struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestInternetServerList_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t iApp; MatchMakingKeyValuePair_t **ppchFilters; uint32_t nFilters; @@ -40078,14 +40078,14 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestInternetServer struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestLANServerList_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t iApp; w_ISteamMatchmakingServerListResponse_099u *pRequestServersResponse; }; struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestFriendsServerList_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t iApp; MatchMakingKeyValuePair_t **ppchFilters; uint32_t nFilters; @@ -40094,7 +40094,7 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestFriendsServerL struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestFavoritesServerList_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t iApp; MatchMakingKeyValuePair_t **ppchFilters; uint32_t nFilters; @@ -40103,7 +40103,7 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestFavoritesServe struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestHistoryServerList_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t iApp; MatchMakingKeyValuePair_t **ppchFilters; uint32_t nFilters; @@ -40112,7 +40112,7 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestHistoryServerL struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestSpectatorServerList_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t iApp; MatchMakingKeyValuePair_t **ppchFilters; uint32_t nFilters; @@ -40121,7 +40121,7 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestSpectatorServe struct ISteamMatchmakingServers_SteamMatchMakingServers001_GetServerDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; gameserveritem_t_105 *_ret; uint32_t eType; int32_t iServer; @@ -40129,40 +40129,40 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers001_GetServerDetails_para struct ISteamMatchmakingServers_SteamMatchMakingServers001_CancelQuery_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t eType; }; struct ISteamMatchmakingServers_SteamMatchMakingServers001_RefreshQuery_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t eType; }; struct ISteamMatchmakingServers_SteamMatchMakingServers001_IsRefreshing_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eType; }; struct ISteamMatchmakingServers_SteamMatchMakingServers001_GetServerCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t eType; }; struct ISteamMatchmakingServers_SteamMatchMakingServers001_RefreshServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t eType; int32_t iServer; }; struct ISteamMatchmakingServers_SteamMatchMakingServers001_PingServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t unIP; uint16_t usPort; @@ -40171,7 +40171,7 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers001_PingServer_params struct ISteamMatchmakingServers_SteamMatchMakingServers001_PlayerDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t unIP; uint16_t usPort; @@ -40180,7 +40180,7 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers001_PlayerDetails_params struct ISteamMatchmakingServers_SteamMatchMakingServers001_ServerRules_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t unIP; uint16_t usPort; @@ -40189,13 +40189,13 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers001_ServerRules_params struct ISteamMatchmakingServers_SteamMatchMakingServers001_CancelServerQuery_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t hServerQuery; }; struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestInternetServerList_params { - struct u_iface *u_iface; + struct u_iface u_iface; void *_ret; uint32_t iApp; MatchMakingKeyValuePair_t **ppchFilters; @@ -40205,7 +40205,7 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestInternetServer struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestLANServerList_params { - struct u_iface *u_iface; + struct u_iface u_iface; void *_ret; uint32_t iApp; w_ISteamMatchmakingServerListResponse_106 *pRequestServersResponse; @@ -40213,7 +40213,7 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestLANServerList_ struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestFriendsServerList_params { - struct u_iface *u_iface; + struct u_iface u_iface; void *_ret; uint32_t iApp; MatchMakingKeyValuePair_t **ppchFilters; @@ -40223,7 +40223,7 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestFriendsServerL struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestFavoritesServerList_params { - struct u_iface *u_iface; + struct u_iface u_iface; void *_ret; uint32_t iApp; MatchMakingKeyValuePair_t **ppchFilters; @@ -40233,7 +40233,7 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestFavoritesServe struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestHistoryServerList_params { - struct u_iface *u_iface; + struct u_iface u_iface; void *_ret; uint32_t iApp; MatchMakingKeyValuePair_t **ppchFilters; @@ -40243,7 +40243,7 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestHistoryServerL struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestSpectatorServerList_params { - struct u_iface *u_iface; + struct u_iface u_iface; void *_ret; uint32_t iApp; MatchMakingKeyValuePair_t **ppchFilters; @@ -40253,13 +40253,13 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestSpectatorServe struct ISteamMatchmakingServers_SteamMatchMakingServers002_ReleaseRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; void *hServerListRequest; }; struct ISteamMatchmakingServers_SteamMatchMakingServers002_GetServerDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; gameserveritem_t_105 *_ret; void *hRequest; int32_t iServer; @@ -40267,40 +40267,40 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers002_GetServerDetails_para struct ISteamMatchmakingServers_SteamMatchMakingServers002_CancelQuery_params { - struct u_iface *u_iface; + struct u_iface u_iface; void *hRequest; }; struct ISteamMatchmakingServers_SteamMatchMakingServers002_RefreshQuery_params { - struct u_iface *u_iface; + struct u_iface u_iface; void *hRequest; }; struct ISteamMatchmakingServers_SteamMatchMakingServers002_IsRefreshing_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; void *hRequest; }; struct ISteamMatchmakingServers_SteamMatchMakingServers002_GetServerCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; void *hRequest; }; struct ISteamMatchmakingServers_SteamMatchMakingServers002_RefreshServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; void *hRequest; int32_t iServer; }; struct ISteamMatchmakingServers_SteamMatchMakingServers002_PingServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t unIP; uint16_t usPort; @@ -40309,7 +40309,7 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers002_PingServer_params struct ISteamMatchmakingServers_SteamMatchMakingServers002_PlayerDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t unIP; uint16_t usPort; @@ -40318,7 +40318,7 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers002_PlayerDetails_params struct ISteamMatchmakingServers_SteamMatchMakingServers002_ServerRules_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t unIP; uint16_t usPort; @@ -40327,13 +40327,13 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers002_ServerRules_params struct ISteamMatchmakingServers_SteamMatchMakingServers002_CancelServerQuery_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t hServerQuery; }; struct ISteamNetworking_SteamNetworking001_CreateListenSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t nVirtualP2PPort; uint32_t nIP; @@ -40342,7 +40342,7 @@ struct ISteamNetworking_SteamNetworking001_CreateListenSocket_params struct ISteamNetworking_SteamNetworking001_CreateP2PConnectionSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDTarget; int32_t nVirtualPort; @@ -40351,7 +40351,7 @@ struct ISteamNetworking_SteamNetworking001_CreateP2PConnectionSocket_params struct ISteamNetworking_SteamNetworking001_CreateConnectionSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t nIP; uint16_t nPort; @@ -40360,7 +40360,7 @@ struct ISteamNetworking_SteamNetworking001_CreateConnectionSocket_params struct ISteamNetworking_SteamNetworking001_DestroySocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; int8_t bNotifyRemoteEnd; @@ -40368,7 +40368,7 @@ struct ISteamNetworking_SteamNetworking001_DestroySocket_params struct ISteamNetworking_SteamNetworking001_DestroyListenSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; int8_t bNotifyRemoteEnd; @@ -40376,7 +40376,7 @@ struct ISteamNetworking_SteamNetworking001_DestroyListenSocket_params struct ISteamNetworking_SteamNetworking001_SendDataOnSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; void *pubData; @@ -40386,7 +40386,7 @@ struct ISteamNetworking_SteamNetworking001_SendDataOnSocket_params struct ISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; uint32_t *pcubMsgSize; @@ -40394,7 +40394,7 @@ struct ISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket_params struct ISteamNetworking_SteamNetworking001_RetrieveDataFromSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; void *pubDest; @@ -40404,7 +40404,7 @@ struct ISteamNetworking_SteamNetworking001_RetrieveDataFromSocket_params struct ISteamNetworking_SteamNetworking001_IsDataAvailable_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hListenSocket; uint32_t *pcubMsgSize; @@ -40413,7 +40413,7 @@ struct ISteamNetworking_SteamNetworking001_IsDataAvailable_params struct ISteamNetworking_SteamNetworking001_RetrieveData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hListenSocket; void *pubDest; @@ -40424,7 +40424,7 @@ struct ISteamNetworking_SteamNetworking001_RetrieveData_params struct ISteamNetworking_SteamNetworking001_GetSocketInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; CSteamID *pSteamIDRemote; @@ -40435,7 +40435,7 @@ struct ISteamNetworking_SteamNetworking001_GetSocketInfo_params struct ISteamNetworking_SteamNetworking001_GetListenSocketInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hListenSocket; uint32_t *pnIP; @@ -40444,7 +40444,7 @@ struct ISteamNetworking_SteamNetworking001_GetListenSocketInfo_params struct ISteamNetworking_SteamNetworking002_CreateListenSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t nVirtualP2PPort; uint32_t nIP; @@ -40454,7 +40454,7 @@ struct ISteamNetworking_SteamNetworking002_CreateListenSocket_params struct ISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDTarget; int32_t nVirtualPort; @@ -40464,7 +40464,7 @@ struct ISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket_params struct ISteamNetworking_SteamNetworking002_CreateConnectionSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t nIP; uint16_t nPort; @@ -40473,7 +40473,7 @@ struct ISteamNetworking_SteamNetworking002_CreateConnectionSocket_params struct ISteamNetworking_SteamNetworking002_DestroySocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; int8_t bNotifyRemoteEnd; @@ -40481,7 +40481,7 @@ struct ISteamNetworking_SteamNetworking002_DestroySocket_params struct ISteamNetworking_SteamNetworking002_DestroyListenSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; int8_t bNotifyRemoteEnd; @@ -40489,7 +40489,7 @@ struct ISteamNetworking_SteamNetworking002_DestroyListenSocket_params struct ISteamNetworking_SteamNetworking002_SendDataOnSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; void *pubData; @@ -40499,7 +40499,7 @@ struct ISteamNetworking_SteamNetworking002_SendDataOnSocket_params struct ISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; uint32_t *pcubMsgSize; @@ -40507,7 +40507,7 @@ struct ISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket_params struct ISteamNetworking_SteamNetworking002_RetrieveDataFromSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; void *pubDest; @@ -40517,7 +40517,7 @@ struct ISteamNetworking_SteamNetworking002_RetrieveDataFromSocket_params struct ISteamNetworking_SteamNetworking002_IsDataAvailable_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hListenSocket; uint32_t *pcubMsgSize; @@ -40526,7 +40526,7 @@ struct ISteamNetworking_SteamNetworking002_IsDataAvailable_params struct ISteamNetworking_SteamNetworking002_RetrieveData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hListenSocket; void *pubDest; @@ -40537,7 +40537,7 @@ struct ISteamNetworking_SteamNetworking002_RetrieveData_params struct ISteamNetworking_SteamNetworking002_GetSocketInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; CSteamID *pSteamIDRemote; @@ -40548,7 +40548,7 @@ struct ISteamNetworking_SteamNetworking002_GetSocketInfo_params struct ISteamNetworking_SteamNetworking002_GetListenSocketInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hListenSocket; uint32_t *pnIP; @@ -40557,21 +40557,21 @@ struct ISteamNetworking_SteamNetworking002_GetListenSocketInfo_params struct ISteamNetworking_SteamNetworking002_GetSocketConnectionType_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t hSocket; }; struct ISteamNetworking_SteamNetworking002_GetMaxPacketSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t hSocket; }; struct ISteamNetworking_SteamNetworking003_SendP2PPacket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDRemote; const void *pubData; @@ -40581,14 +40581,14 @@ struct ISteamNetworking_SteamNetworking003_SendP2PPacket_params struct ISteamNetworking_SteamNetworking003_IsP2PPacketAvailable_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t *pcubMsgSize; }; struct ISteamNetworking_SteamNetworking003_ReadP2PPacket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; void *pubDest; uint32_t cubDest; @@ -40598,21 +40598,21 @@ struct ISteamNetworking_SteamNetworking003_ReadP2PPacket_params struct ISteamNetworking_SteamNetworking003_AcceptP2PSessionWithUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDRemote; }; struct ISteamNetworking_SteamNetworking003_CloseP2PSessionWithUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDRemote; }; struct ISteamNetworking_SteamNetworking003_GetP2PSessionState_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDRemote; P2PSessionState_t *pConnectionState; @@ -40620,7 +40620,7 @@ struct ISteamNetworking_SteamNetworking003_GetP2PSessionState_params struct ISteamNetworking_SteamNetworking003_CreateListenSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t nVirtualP2PPort; uint32_t nIP; @@ -40630,7 +40630,7 @@ struct ISteamNetworking_SteamNetworking003_CreateListenSocket_params struct ISteamNetworking_SteamNetworking003_CreateP2PConnectionSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDTarget; int32_t nVirtualPort; @@ -40640,7 +40640,7 @@ struct ISteamNetworking_SteamNetworking003_CreateP2PConnectionSocket_params struct ISteamNetworking_SteamNetworking003_CreateConnectionSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t nIP; uint16_t nPort; @@ -40649,7 +40649,7 @@ struct ISteamNetworking_SteamNetworking003_CreateConnectionSocket_params struct ISteamNetworking_SteamNetworking003_DestroySocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; int8_t bNotifyRemoteEnd; @@ -40657,7 +40657,7 @@ struct ISteamNetworking_SteamNetworking003_DestroySocket_params struct ISteamNetworking_SteamNetworking003_DestroyListenSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; int8_t bNotifyRemoteEnd; @@ -40665,7 +40665,7 @@ struct ISteamNetworking_SteamNetworking003_DestroyListenSocket_params struct ISteamNetworking_SteamNetworking003_SendDataOnSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; void *pubData; @@ -40675,7 +40675,7 @@ struct ISteamNetworking_SteamNetworking003_SendDataOnSocket_params struct ISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; uint32_t *pcubMsgSize; @@ -40683,7 +40683,7 @@ struct ISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket_params struct ISteamNetworking_SteamNetworking003_RetrieveDataFromSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; void *pubDest; @@ -40693,7 +40693,7 @@ struct ISteamNetworking_SteamNetworking003_RetrieveDataFromSocket_params struct ISteamNetworking_SteamNetworking003_IsDataAvailable_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hListenSocket; uint32_t *pcubMsgSize; @@ -40702,7 +40702,7 @@ struct ISteamNetworking_SteamNetworking003_IsDataAvailable_params struct ISteamNetworking_SteamNetworking003_RetrieveData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hListenSocket; void *pubDest; @@ -40713,7 +40713,7 @@ struct ISteamNetworking_SteamNetworking003_RetrieveData_params struct ISteamNetworking_SteamNetworking003_GetSocketInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; CSteamID *pSteamIDRemote; @@ -40724,7 +40724,7 @@ struct ISteamNetworking_SteamNetworking003_GetSocketInfo_params struct ISteamNetworking_SteamNetworking003_GetListenSocketInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hListenSocket; uint32_t *pnIP; @@ -40733,21 +40733,21 @@ struct ISteamNetworking_SteamNetworking003_GetListenSocketInfo_params struct ISteamNetworking_SteamNetworking003_GetSocketConnectionType_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t hSocket; }; struct ISteamNetworking_SteamNetworking003_GetMaxPacketSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t hSocket; }; struct ISteamNetworking_SteamNetworking004_SendP2PPacket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDRemote; const void *pubData; @@ -40758,7 +40758,7 @@ struct ISteamNetworking_SteamNetworking004_SendP2PPacket_params struct ISteamNetworking_SteamNetworking004_IsP2PPacketAvailable_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t *pcubMsgSize; int32_t nVirtualPort; @@ -40766,7 +40766,7 @@ struct ISteamNetworking_SteamNetworking004_IsP2PPacketAvailable_params struct ISteamNetworking_SteamNetworking004_ReadP2PPacket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; void *pubDest; uint32_t cubDest; @@ -40777,21 +40777,21 @@ struct ISteamNetworking_SteamNetworking004_ReadP2PPacket_params struct ISteamNetworking_SteamNetworking004_AcceptP2PSessionWithUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDRemote; }; struct ISteamNetworking_SteamNetworking004_CloseP2PSessionWithUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDRemote; }; struct ISteamNetworking_SteamNetworking004_GetP2PSessionState_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDRemote; P2PSessionState_t *pConnectionState; @@ -40799,7 +40799,7 @@ struct ISteamNetworking_SteamNetworking004_GetP2PSessionState_params struct ISteamNetworking_SteamNetworking004_CreateListenSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t nVirtualP2PPort; uint32_t nIP; @@ -40809,7 +40809,7 @@ struct ISteamNetworking_SteamNetworking004_CreateListenSocket_params struct ISteamNetworking_SteamNetworking004_CreateP2PConnectionSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDTarget; int32_t nVirtualPort; @@ -40819,7 +40819,7 @@ struct ISteamNetworking_SteamNetworking004_CreateP2PConnectionSocket_params struct ISteamNetworking_SteamNetworking004_CreateConnectionSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t nIP; uint16_t nPort; @@ -40828,7 +40828,7 @@ struct ISteamNetworking_SteamNetworking004_CreateConnectionSocket_params struct ISteamNetworking_SteamNetworking004_DestroySocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; int8_t bNotifyRemoteEnd; @@ -40836,7 +40836,7 @@ struct ISteamNetworking_SteamNetworking004_DestroySocket_params struct ISteamNetworking_SteamNetworking004_DestroyListenSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; int8_t bNotifyRemoteEnd; @@ -40844,7 +40844,7 @@ struct ISteamNetworking_SteamNetworking004_DestroyListenSocket_params struct ISteamNetworking_SteamNetworking004_SendDataOnSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; void *pubData; @@ -40854,7 +40854,7 @@ struct ISteamNetworking_SteamNetworking004_SendDataOnSocket_params struct ISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; uint32_t *pcubMsgSize; @@ -40862,7 +40862,7 @@ struct ISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket_params struct ISteamNetworking_SteamNetworking004_RetrieveDataFromSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; void *pubDest; @@ -40872,7 +40872,7 @@ struct ISteamNetworking_SteamNetworking004_RetrieveDataFromSocket_params struct ISteamNetworking_SteamNetworking004_IsDataAvailable_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hListenSocket; uint32_t *pcubMsgSize; @@ -40881,7 +40881,7 @@ struct ISteamNetworking_SteamNetworking004_IsDataAvailable_params struct ISteamNetworking_SteamNetworking004_RetrieveData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hListenSocket; void *pubDest; @@ -40892,7 +40892,7 @@ struct ISteamNetworking_SteamNetworking004_RetrieveData_params struct ISteamNetworking_SteamNetworking004_GetSocketInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; CSteamID *pSteamIDRemote; @@ -40903,7 +40903,7 @@ struct ISteamNetworking_SteamNetworking004_GetSocketInfo_params struct ISteamNetworking_SteamNetworking004_GetListenSocketInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hListenSocket; uint32_t *pnIP; @@ -40912,21 +40912,21 @@ struct ISteamNetworking_SteamNetworking004_GetListenSocketInfo_params struct ISteamNetworking_SteamNetworking004_GetSocketConnectionType_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t hSocket; }; struct ISteamNetworking_SteamNetworking004_GetMaxPacketSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t hSocket; }; struct ISteamNetworking_SteamNetworking005_SendP2PPacket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDRemote; const void *pubData; @@ -40937,7 +40937,7 @@ struct ISteamNetworking_SteamNetworking005_SendP2PPacket_params struct ISteamNetworking_SteamNetworking005_IsP2PPacketAvailable_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t *pcubMsgSize; int32_t nChannel; @@ -40945,7 +40945,7 @@ struct ISteamNetworking_SteamNetworking005_IsP2PPacketAvailable_params struct ISteamNetworking_SteamNetworking005_ReadP2PPacket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; void *pubDest; uint32_t cubDest; @@ -40956,21 +40956,21 @@ struct ISteamNetworking_SteamNetworking005_ReadP2PPacket_params struct ISteamNetworking_SteamNetworking005_AcceptP2PSessionWithUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDRemote; }; struct ISteamNetworking_SteamNetworking005_CloseP2PSessionWithUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDRemote; }; struct ISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDRemote; int32_t nChannel; @@ -40978,7 +40978,7 @@ struct ISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser_params struct ISteamNetworking_SteamNetworking005_GetP2PSessionState_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDRemote; P2PSessionState_t *pConnectionState; @@ -40986,14 +40986,14 @@ struct ISteamNetworking_SteamNetworking005_GetP2PSessionState_params struct ISteamNetworking_SteamNetworking005_AllowP2PPacketRelay_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bAllow; }; struct ISteamNetworking_SteamNetworking005_CreateListenSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t nVirtualP2PPort; uint32_t nIP; @@ -41003,7 +41003,7 @@ struct ISteamNetworking_SteamNetworking005_CreateListenSocket_params struct ISteamNetworking_SteamNetworking005_CreateP2PConnectionSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDTarget; int32_t nVirtualPort; @@ -41013,7 +41013,7 @@ struct ISteamNetworking_SteamNetworking005_CreateP2PConnectionSocket_params struct ISteamNetworking_SteamNetworking005_CreateConnectionSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t nIP; uint16_t nPort; @@ -41022,7 +41022,7 @@ struct ISteamNetworking_SteamNetworking005_CreateConnectionSocket_params struct ISteamNetworking_SteamNetworking005_DestroySocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; int8_t bNotifyRemoteEnd; @@ -41030,7 +41030,7 @@ struct ISteamNetworking_SteamNetworking005_DestroySocket_params struct ISteamNetworking_SteamNetworking005_DestroyListenSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; int8_t bNotifyRemoteEnd; @@ -41038,7 +41038,7 @@ struct ISteamNetworking_SteamNetworking005_DestroyListenSocket_params struct ISteamNetworking_SteamNetworking005_SendDataOnSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; void *pubData; @@ -41048,7 +41048,7 @@ struct ISteamNetworking_SteamNetworking005_SendDataOnSocket_params struct ISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; uint32_t *pcubMsgSize; @@ -41056,7 +41056,7 @@ struct ISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket_params struct ISteamNetworking_SteamNetworking005_RetrieveDataFromSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; void *pubDest; @@ -41066,7 +41066,7 @@ struct ISteamNetworking_SteamNetworking005_RetrieveDataFromSocket_params struct ISteamNetworking_SteamNetworking005_IsDataAvailable_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hListenSocket; uint32_t *pcubMsgSize; @@ -41075,7 +41075,7 @@ struct ISteamNetworking_SteamNetworking005_IsDataAvailable_params struct ISteamNetworking_SteamNetworking005_RetrieveData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hListenSocket; void *pubDest; @@ -41086,7 +41086,7 @@ struct ISteamNetworking_SteamNetworking005_RetrieveData_params struct ISteamNetworking_SteamNetworking005_GetSocketInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; CSteamID *pSteamIDRemote; @@ -41097,7 +41097,7 @@ struct ISteamNetworking_SteamNetworking005_GetSocketInfo_params struct ISteamNetworking_SteamNetworking005_GetListenSocketInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hListenSocket; uint32_t *pnIP; @@ -41106,21 +41106,21 @@ struct ISteamNetworking_SteamNetworking005_GetListenSocketInfo_params struct ISteamNetworking_SteamNetworking005_GetSocketConnectionType_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t hSocket; }; struct ISteamNetworking_SteamNetworking005_GetMaxPacketSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t hSocket; }; struct ISteamNetworking_SteamNetworking006_SendP2PPacket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDRemote; const void *pubData; @@ -41131,7 +41131,7 @@ struct ISteamNetworking_SteamNetworking006_SendP2PPacket_params struct ISteamNetworking_SteamNetworking006_IsP2PPacketAvailable_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t *pcubMsgSize; int32_t nChannel; @@ -41139,7 +41139,7 @@ struct ISteamNetworking_SteamNetworking006_IsP2PPacketAvailable_params struct ISteamNetworking_SteamNetworking006_ReadP2PPacket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; void *pubDest; uint32_t cubDest; @@ -41150,21 +41150,21 @@ struct ISteamNetworking_SteamNetworking006_ReadP2PPacket_params struct ISteamNetworking_SteamNetworking006_AcceptP2PSessionWithUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDRemote; }; struct ISteamNetworking_SteamNetworking006_CloseP2PSessionWithUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDRemote; }; struct ISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDRemote; int32_t nChannel; @@ -41172,7 +41172,7 @@ struct ISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser_params struct ISteamNetworking_SteamNetworking006_GetP2PSessionState_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; CSteamID steamIDRemote; P2PSessionState_t *pConnectionState; @@ -41180,14 +41180,14 @@ struct ISteamNetworking_SteamNetworking006_GetP2PSessionState_params struct ISteamNetworking_SteamNetworking006_AllowP2PPacketRelay_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int8_t bAllow; }; struct ISteamNetworking_SteamNetworking006_CreateListenSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t nVirtualP2PPort; SteamIPAddress_t nIP; @@ -41197,7 +41197,7 @@ struct ISteamNetworking_SteamNetworking006_CreateListenSocket_params struct ISteamNetworking_SteamNetworking006_CreateP2PConnectionSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamIDTarget; int32_t nVirtualPort; @@ -41207,7 +41207,7 @@ struct ISteamNetworking_SteamNetworking006_CreateP2PConnectionSocket_params struct ISteamNetworking_SteamNetworking006_CreateConnectionSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; SteamIPAddress_t nIP; uint16_t nPort; @@ -41216,7 +41216,7 @@ struct ISteamNetworking_SteamNetworking006_CreateConnectionSocket_params struct ISteamNetworking_SteamNetworking006_DestroySocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; int8_t bNotifyRemoteEnd; @@ -41224,7 +41224,7 @@ struct ISteamNetworking_SteamNetworking006_DestroySocket_params struct ISteamNetworking_SteamNetworking006_DestroyListenSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; int8_t bNotifyRemoteEnd; @@ -41232,7 +41232,7 @@ struct ISteamNetworking_SteamNetworking006_DestroyListenSocket_params struct ISteamNetworking_SteamNetworking006_SendDataOnSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; void *pubData; @@ -41242,7 +41242,7 @@ struct ISteamNetworking_SteamNetworking006_SendDataOnSocket_params struct ISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; uint32_t *pcubMsgSize; @@ -41250,7 +41250,7 @@ struct ISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket_params struct ISteamNetworking_SteamNetworking006_RetrieveDataFromSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; void *pubDest; @@ -41260,7 +41260,7 @@ struct ISteamNetworking_SteamNetworking006_RetrieveDataFromSocket_params struct ISteamNetworking_SteamNetworking006_IsDataAvailable_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hListenSocket; uint32_t *pcubMsgSize; @@ -41269,7 +41269,7 @@ struct ISteamNetworking_SteamNetworking006_IsDataAvailable_params struct ISteamNetworking_SteamNetworking006_RetrieveData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hListenSocket; void *pubDest; @@ -41280,7 +41280,7 @@ struct ISteamNetworking_SteamNetworking006_RetrieveData_params struct ISteamNetworking_SteamNetworking006_GetSocketInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; CSteamID *pSteamIDRemote; @@ -41291,7 +41291,7 @@ struct ISteamNetworking_SteamNetworking006_GetSocketInfo_params struct ISteamNetworking_SteamNetworking006_GetListenSocketInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hListenSocket; SteamIPAddress_t *pnIP; @@ -41300,26 +41300,26 @@ struct ISteamNetworking_SteamNetworking006_GetListenSocketInfo_params struct ISteamNetworking_SteamNetworking006_GetSocketConnectionType_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t hSocket; }; struct ISteamNetworking_SteamNetworking006_GetMaxPacketSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t hSocket; }; struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_DestroyFakeUDPPort_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_SendMessageToFakeIP_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const SteamNetworkingIPAddr *remoteAddress; const void *pData; @@ -41329,7 +41329,7 @@ struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_SendMessageToFa struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ReceiveMessages_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; w_SteamNetworkingMessage_t_153a **ppOutMessages; int32_t nMaxMessages; @@ -41337,13 +41337,13 @@ struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ReceiveMessages struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ScheduleCleanup_params { - struct u_iface *u_iface; + struct u_iface u_iface; const SteamNetworkingIPAddr *remoteAddress; }; struct ISteamNetworkingMessages_SteamNetworkingMessages002_SendMessageToUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const SteamNetworkingIdentity_144 *identityRemote; const void *pubData; @@ -41354,7 +41354,7 @@ struct ISteamNetworkingMessages_SteamNetworkingMessages002_SendMessageToUser_par struct ISteamNetworkingMessages_SteamNetworkingMessages002_ReceiveMessagesOnChannel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t nLocalChannel; w_SteamNetworkingMessage_t_153a **ppOutMessages; @@ -41363,21 +41363,21 @@ struct ISteamNetworkingMessages_SteamNetworkingMessages002_ReceiveMessagesOnChan struct ISteamNetworkingMessages_SteamNetworkingMessages002_AcceptSessionWithUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const SteamNetworkingIdentity_144 *identityRemote; }; struct ISteamNetworkingMessages_SteamNetworkingMessages002_CloseSessionWithUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const SteamNetworkingIdentity_144 *identityRemote; }; struct ISteamNetworkingMessages_SteamNetworkingMessages002_CloseChannelWithUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const SteamNetworkingIdentity_144 *identityRemote; int32_t nLocalChannel; @@ -41385,7 +41385,7 @@ struct ISteamNetworkingMessages_SteamNetworkingMessages002_CloseChannelWithUser_ struct ISteamNetworkingMessages_SteamNetworkingMessages002_GetSessionConnectionInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const SteamNetworkingIdentity_144 *identityRemote; SteamNetConnectionInfo_t_153a *pConnectionInfo; @@ -41394,28 +41394,28 @@ struct ISteamNetworkingMessages_SteamNetworkingMessages002_GetSessionConnectionI struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketIP_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const SteamNetworkingIPAddr *localAddress; }; struct ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectByIPAddress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const SteamNetworkingIPAddr *address; }; struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketP2P_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t nVirtualPort; }; struct ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectP2P_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const SteamNetworkingIdentity_144 *identityRemote; int32_t nVirtualPort; @@ -41423,14 +41423,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectP2P_params struct ISteamNetworkingSockets_SteamNetworkingSockets002_AcceptConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t hConn; }; struct ISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hPeer; int32_t nReason; @@ -41440,14 +41440,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnection_params struct ISteamNetworkingSockets_SteamNetworkingSockets002_CloseListenSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; }; struct ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionUserData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hPeer; int64_t nUserData; @@ -41455,21 +41455,21 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionUserData_p struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionUserData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int64_t _ret; uint32_t hPeer; }; struct ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionName_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t hPeer; const char *pszName; }; struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionName_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hPeer; char *pszName; @@ -41478,7 +41478,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionName_param struct ISteamNetworkingSockets_SteamNetworkingSockets002_SendMessageToConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t hConn; const void *pData; @@ -41488,14 +41488,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_SendMessageToConnection struct ISteamNetworkingSockets_SteamNetworkingSockets002_FlushMessagesOnConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t hConn; }; struct ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t hConn; w_SteamNetworkingMessage_t_144 **ppOutMessages; @@ -41504,7 +41504,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnConnec struct ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnListenSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t hSocket; w_SteamNetworkingMessage_t_144 **ppOutMessages; @@ -41513,7 +41513,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnListen struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hConn; SteamNetConnectionInfo_t_144 *pInfo; @@ -41521,7 +41521,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionInfo_param struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetQuickConnectionStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hConn; SteamNetworkingQuickConnectionStatus *pStats; @@ -41529,7 +41529,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetQuickConnectionStatu struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetDetailedConnectionStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t hConn; char *pszBuf; @@ -41538,7 +41538,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetDetailedConnectionSt struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSocketAddress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; SteamNetworkingIPAddr *address; @@ -41546,7 +41546,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSocketAddress_ struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocketPair_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t *pOutConnection1; uint32_t *pOutConnection2; @@ -41557,14 +41557,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocketPair_params struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetIdentity_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; SteamNetworkingIdentity_144 *pIdentity; }; struct ISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedRelayAuthTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const void *pvTicket; int32_t cbTicket; @@ -41573,7 +41573,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedRelayAuthTicket struct ISteamNetworkingSockets_SteamNetworkingSockets002_FindRelayAuthTicketForServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const SteamNetworkingIdentity_144 *identityGameServer; int32_t nVirtualPort; @@ -41582,7 +41582,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_FindRelayAuthTicketForS struct ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectToHostedDedicatedServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const SteamNetworkingIdentity_144 *identityTarget; int32_t nVirtualPort; @@ -41590,54 +41590,54 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectToHostedDedicate struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPort_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint16_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPOPID_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerAddress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; SteamDatagramHostedAddress *pRouting; }; struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateHostedDedicatedServerListenSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t nVirtualPort; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketIP_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const SteamNetworkingIPAddr *localAddress; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectByIPAddress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const SteamNetworkingIPAddr *address; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketP2P_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t nVirtualPort; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectP2P_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const SteamNetworkingIdentity_144 *identityRemote; int32_t nVirtualPort; @@ -41645,14 +41645,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectP2P_params struct ISteamNetworkingSockets_SteamNetworkingSockets004_AcceptConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t hConn; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hPeer; int32_t nReason; @@ -41662,14 +41662,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnection_params struct ISteamNetworkingSockets_SteamNetworkingSockets004_CloseListenSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionUserData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hPeer; int64_t nUserData; @@ -41677,21 +41677,21 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionUserData_p struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionUserData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int64_t _ret; uint32_t hPeer; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionName_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t hPeer; const char *pszName; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionName_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hPeer; char *pszName; @@ -41700,7 +41700,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionName_param struct ISteamNetworkingSockets_SteamNetworkingSockets004_SendMessageToConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t hConn; const void *pData; @@ -41710,14 +41710,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_SendMessageToConnection struct ISteamNetworkingSockets_SteamNetworkingSockets004_FlushMessagesOnConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t hConn; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t hConn; w_SteamNetworkingMessage_t_144 **ppOutMessages; @@ -41726,7 +41726,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnConnec struct ISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnListenSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t hSocket; w_SteamNetworkingMessage_t_144 **ppOutMessages; @@ -41735,7 +41735,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnListen struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hConn; SteamNetConnectionInfo_t_144 *pInfo; @@ -41743,7 +41743,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionInfo_param struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetQuickConnectionStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hConn; SteamNetworkingQuickConnectionStatus *pStats; @@ -41751,7 +41751,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetQuickConnectionStatu struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetDetailedConnectionStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t hConn; char *pszBuf; @@ -41760,7 +41760,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetDetailedConnectionSt struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSocketAddress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; SteamNetworkingIPAddr *address; @@ -41768,7 +41768,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSocketAddress_ struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocketPair_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t *pOutConnection1; uint32_t *pOutConnection2; @@ -41779,27 +41779,27 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocketPair_params struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetIdentity_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; SteamNetworkingIdentity_144 *pIdentity; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_InitAuthentication_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetAuthenticationStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; SteamNetAuthenticationStatus_t *pDetails; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedRelayAuthTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const void *pvTicket; int32_t cbTicket; @@ -41808,7 +41808,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedRelayAuthTicket struct ISteamNetworkingSockets_SteamNetworkingSockets004_FindRelayAuthTicketForServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const SteamNetworkingIdentity_144 *identityGameServer; int32_t nVirtualPort; @@ -41817,7 +41817,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_FindRelayAuthTicketForS struct ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectToHostedDedicatedServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const SteamNetworkingIdentity_144 *identityTarget; int32_t nVirtualPort; @@ -41825,33 +41825,33 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectToHostedDedicate struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPort_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint16_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPOPID_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerAddress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; SteamDatagramHostedAddress *pRouting; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateHostedDedicatedServerListenSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t nVirtualPort; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetGameCoordinatorServerLogin_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; SteamDatagramGameCoordinatorServerLogin *pLoginInfo; int32_t *pcbSignedBlob; @@ -41860,7 +41860,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetGameCoordinatorServe struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketIP_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const SteamNetworkingIPAddr *localAddress; int32_t nOptions; @@ -41869,7 +41869,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketIP_pa struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectByIPAddress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const SteamNetworkingIPAddr *address; int32_t nOptions; @@ -41878,7 +41878,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectByIPAddress_para struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketP2P_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t nVirtualPort; int32_t nOptions; @@ -41887,7 +41887,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketP2P_p struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2P_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const SteamNetworkingIdentity_144 *identityRemote; int32_t nVirtualPort; @@ -41897,14 +41897,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2P_params struct ISteamNetworkingSockets_SteamNetworkingSockets006_AcceptConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t hConn; }; struct ISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hPeer; int32_t nReason; @@ -41914,14 +41914,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnection_params struct ISteamNetworkingSockets_SteamNetworkingSockets006_CloseListenSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; }; struct ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionUserData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hPeer; int64_t nUserData; @@ -41929,21 +41929,21 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionUserData_p struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionUserData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int64_t _ret; uint32_t hPeer; }; struct ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionName_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t hPeer; const char *pszName; }; struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionName_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hPeer; char *pszName; @@ -41952,7 +41952,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionName_param struct ISteamNetworkingSockets_SteamNetworkingSockets006_SendMessageToConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t hConn; const void *pData; @@ -41963,7 +41963,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_SendMessageToConnection struct ISteamNetworkingSockets_SteamNetworkingSockets006_SendMessages_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t nMessages; w_SteamNetworkingMessage_t_147 **pMessages; int64_t *pOutMessageNumberOrResult; @@ -41971,14 +41971,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_SendMessages_params struct ISteamNetworkingSockets_SteamNetworkingSockets006_FlushMessagesOnConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t hConn; }; struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t hConn; w_SteamNetworkingMessage_t_147 **ppOutMessages; @@ -41987,7 +41987,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnConnec struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnListenSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t hSocket; w_SteamNetworkingMessage_t_147 **ppOutMessages; @@ -41996,7 +41996,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnListen struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hConn; SteamNetConnectionInfo_t_144 *pInfo; @@ -42004,7 +42004,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionInfo_param struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetQuickConnectionStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hConn; SteamNetworkingQuickConnectionStatus *pStats; @@ -42012,7 +42012,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetQuickConnectionStatu struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetDetailedConnectionStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t hConn; char *pszBuf; @@ -42021,7 +42021,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetDetailedConnectionSt struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSocketAddress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; SteamNetworkingIPAddr *address; @@ -42029,7 +42029,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSocketAddress_ struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocketPair_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t *pOutConnection1; uint32_t *pOutConnection2; @@ -42040,27 +42040,27 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocketPair_params struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetIdentity_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; SteamNetworkingIdentity_144 *pIdentity; }; struct ISteamNetworkingSockets_SteamNetworkingSockets006_InitAuthentication_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetAuthenticationStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; SteamNetAuthenticationStatus_t *pDetails; }; struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedRelayAuthTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const void *pvTicket; int32_t cbTicket; @@ -42069,7 +42069,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedRelayAuthTicket struct ISteamNetworkingSockets_SteamNetworkingSockets006_FindRelayAuthTicketForServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const SteamNetworkingIdentity_144 *identityGameServer; int32_t nVirtualPort; @@ -42078,7 +42078,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_FindRelayAuthTicketForS struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectToHostedDedicatedServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const SteamNetworkingIdentity_144 *identityTarget; int32_t nVirtualPort; @@ -42088,26 +42088,26 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectToHostedDedicate struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPort_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint16_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPOPID_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerAddress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; SteamDatagramHostedAddress *pRouting; }; struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateHostedDedicatedServerListenSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t nVirtualPort; int32_t nOptions; @@ -42116,7 +42116,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateHostedDedicatedSe struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetGameCoordinatorServerLogin_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; SteamDatagramGameCoordinatorServerLogin *pLoginInfo; int32_t *pcbSignedBlob; @@ -42125,7 +42125,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetGameCoordinatorServe struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2PCustomSignaling_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; w_ISteamNetworkingConnectionCustomSignaling *pSignaling; const SteamNetworkingIdentity_144 *pPeerIdentity; @@ -42135,7 +42135,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2PCustomSignali struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2PCustomSignal_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const void *pMsg; int32_t cbMsg; @@ -42144,7 +42144,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2PCustomSignal struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketIP_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const SteamNetworkingIPAddr *localAddress; int32_t nOptions; @@ -42153,7 +42153,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketIP_pa struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectByIPAddress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const SteamNetworkingIPAddr *address; int32_t nOptions; @@ -42162,7 +42162,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectByIPAddress_para struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketP2P_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t nVirtualPort; int32_t nOptions; @@ -42171,7 +42171,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketP2P_p struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2P_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const SteamNetworkingIdentity_144 *identityRemote; int32_t nVirtualPort; @@ -42181,14 +42181,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2P_params struct ISteamNetworkingSockets_SteamNetworkingSockets008_AcceptConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t hConn; }; struct ISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hPeer; int32_t nReason; @@ -42198,14 +42198,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnection_params struct ISteamNetworkingSockets_SteamNetworkingSockets008_CloseListenSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; }; struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionUserData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hPeer; int64_t nUserData; @@ -42213,21 +42213,21 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionUserData_p struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionUserData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int64_t _ret; uint32_t hPeer; }; struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionName_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t hPeer; const char *pszName; }; struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionName_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hPeer; char *pszName; @@ -42236,7 +42236,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionName_param struct ISteamNetworkingSockets_SteamNetworkingSockets008_SendMessageToConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t hConn; const void *pData; @@ -42247,7 +42247,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_SendMessageToConnection struct ISteamNetworkingSockets_SteamNetworkingSockets008_SendMessages_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t nMessages; w_SteamNetworkingMessage_t_147 *const *pMessages; int64_t *pOutMessageNumberOrResult; @@ -42255,14 +42255,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_SendMessages_params struct ISteamNetworkingSockets_SteamNetworkingSockets008_FlushMessagesOnConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t hConn; }; struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t hConn; w_SteamNetworkingMessage_t_147 **ppOutMessages; @@ -42271,7 +42271,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnConnec struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hConn; SteamNetConnectionInfo_t_144 *pInfo; @@ -42279,7 +42279,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionInfo_param struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetQuickConnectionStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hConn; SteamNetworkingQuickConnectionStatus *pStats; @@ -42287,7 +42287,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetQuickConnectionStatu struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetDetailedConnectionStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t hConn; char *pszBuf; @@ -42296,7 +42296,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetDetailedConnectionSt struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSocketAddress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; SteamNetworkingIPAddr *address; @@ -42304,7 +42304,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSocketAddress_ struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocketPair_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t *pOutConnection1; uint32_t *pOutConnection2; @@ -42315,40 +42315,40 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocketPair_params struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetIdentity_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; SteamNetworkingIdentity_144 *pIdentity; }; struct ISteamNetworkingSockets_SteamNetworkingSockets008_InitAuthentication_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetAuthenticationStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; SteamNetAuthenticationStatus_t *pDetails; }; struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreatePollGroup_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets008_DestroyPollGroup_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hPollGroup; }; struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionPollGroup_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hConn; uint32_t hPollGroup; @@ -42356,7 +42356,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionPollGroup_ struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnPollGroup_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t hPollGroup; w_SteamNetworkingMessage_t_147 **ppOutMessages; @@ -42365,7 +42365,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnPollGr struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedRelayAuthTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const void *pvTicket; int32_t cbTicket; @@ -42374,7 +42374,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedRelayAuthTicket struct ISteamNetworkingSockets_SteamNetworkingSockets008_FindRelayAuthTicketForServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const SteamNetworkingIdentity_144 *identityGameServer; int32_t nVirtualPort; @@ -42383,7 +42383,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_FindRelayAuthTicketForS struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectToHostedDedicatedServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const SteamNetworkingIdentity_144 *identityTarget; int32_t nVirtualPort; @@ -42393,26 +42393,26 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectToHostedDedicate struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPort_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint16_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPOPID_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerAddress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; SteamDatagramHostedAddress *pRouting; }; struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateHostedDedicatedServerListenSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t nVirtualPort; int32_t nOptions; @@ -42421,7 +42421,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateHostedDedicatedSe struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetGameCoordinatorServerLogin_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; SteamDatagramGameCoordinatorServerLogin *pLoginInfo; int32_t *pcbSignedBlob; @@ -42430,7 +42430,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetGameCoordinatorServe struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2PCustomSignaling_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; w_ISteamNetworkingConnectionCustomSignaling *pSignaling; const SteamNetworkingIdentity_144 *pPeerIdentity; @@ -42440,7 +42440,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2PCustomSignali struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2PCustomSignal_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const void *pMsg; int32_t cbMsg; @@ -42449,7 +42449,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2PCustomSignal struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetCertificateRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pcbBlob; void *pBlob; @@ -42458,7 +42458,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetCertificateRequest_p struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetCertificate_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const void *pCertificate; int32_t cbCertificate; @@ -42467,7 +42467,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetCertificate_params struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketIP_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const SteamNetworkingIPAddr *localAddress; int32_t nOptions; @@ -42476,7 +42476,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketIP_pa struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectByIPAddress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const SteamNetworkingIPAddr *address; int32_t nOptions; @@ -42485,7 +42485,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectByIPAddress_para struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketP2P_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t nLocalVirtualPort; int32_t nOptions; @@ -42494,7 +42494,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketP2P_p struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2P_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const SteamNetworkingIdentity_144 *identityRemote; int32_t nRemoteVirtualPort; @@ -42504,14 +42504,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2P_params struct ISteamNetworkingSockets_SteamNetworkingSockets009_AcceptConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t hConn; }; struct ISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hPeer; int32_t nReason; @@ -42521,14 +42521,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnection_params struct ISteamNetworkingSockets_SteamNetworkingSockets009_CloseListenSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; }; struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionUserData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hPeer; int64_t nUserData; @@ -42536,21 +42536,21 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionUserData_p struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionUserData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int64_t _ret; uint32_t hPeer; }; struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionName_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t hPeer; const char *pszName; }; struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionName_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hPeer; char *pszName; @@ -42559,7 +42559,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionName_param struct ISteamNetworkingSockets_SteamNetworkingSockets009_SendMessageToConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t hConn; const void *pData; @@ -42570,7 +42570,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_SendMessageToConnection struct ISteamNetworkingSockets_SteamNetworkingSockets009_SendMessages_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t nMessages; w_SteamNetworkingMessage_t_147 *const *pMessages; int64_t *pOutMessageNumberOrResult; @@ -42578,14 +42578,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_SendMessages_params struct ISteamNetworkingSockets_SteamNetworkingSockets009_FlushMessagesOnConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t hConn; }; struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t hConn; w_SteamNetworkingMessage_t_147 **ppOutMessages; @@ -42594,7 +42594,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnConnec struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hConn; SteamNetConnectionInfo_t_144 *pInfo; @@ -42602,7 +42602,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionInfo_param struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetQuickConnectionStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hConn; SteamNetworkingQuickConnectionStatus *pStats; @@ -42610,7 +42610,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetQuickConnectionStatu struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetDetailedConnectionStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t hConn; char *pszBuf; @@ -42619,7 +42619,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetDetailedConnectionSt struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSocketAddress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; SteamNetworkingIPAddr *address; @@ -42627,7 +42627,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSocketAddress_ struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocketPair_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t *pOutConnection1; uint32_t *pOutConnection2; @@ -42638,40 +42638,40 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocketPair_params struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetIdentity_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; SteamNetworkingIdentity_144 *pIdentity; }; struct ISteamNetworkingSockets_SteamNetworkingSockets009_InitAuthentication_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetAuthenticationStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; SteamNetAuthenticationStatus_t *pDetails; }; struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreatePollGroup_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets009_DestroyPollGroup_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hPollGroup; }; struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionPollGroup_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hConn; uint32_t hPollGroup; @@ -42679,7 +42679,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionPollGroup_ struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnPollGroup_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t hPollGroup; w_SteamNetworkingMessage_t_147 **ppOutMessages; @@ -42688,7 +42688,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnPollGr struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedRelayAuthTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const void *pvTicket; int32_t cbTicket; @@ -42697,7 +42697,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedRelayAuthTicket struct ISteamNetworkingSockets_SteamNetworkingSockets009_FindRelayAuthTicketForServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const SteamNetworkingIdentity_144 *identityGameServer; int32_t nRemoteVirtualPort; @@ -42706,7 +42706,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_FindRelayAuthTicketForS struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectToHostedDedicatedServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const SteamNetworkingIdentity_144 *identityTarget; int32_t nRemoteVirtualPort; @@ -42716,26 +42716,26 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectToHostedDedicate struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPort_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint16_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPOPID_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerAddress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; SteamDatagramHostedAddress *pRouting; }; struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateHostedDedicatedServerListenSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t nLocalVirtualPort; int32_t nOptions; @@ -42744,7 +42744,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateHostedDedicatedSe struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetGameCoordinatorServerLogin_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; SteamDatagramGameCoordinatorServerLogin *pLoginInfo; int32_t *pcbSignedBlob; @@ -42753,7 +42753,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetGameCoordinatorServe struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2PCustomSignaling_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; void /*ISteamNetworkingConnectionSignaling*/ *pSignaling; const SteamNetworkingIdentity_144 *pPeerIdentity; @@ -42764,7 +42764,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2PCustomSignali struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2PCustomSignal_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const void *pMsg; int32_t cbMsg; @@ -42773,7 +42773,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2PCustomSignal struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetCertificateRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pcbBlob; void *pBlob; @@ -42782,7 +42782,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetCertificateRequest_p struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetCertificate_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const void *pCertificate; int32_t cbCertificate; @@ -42791,12 +42791,12 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetCertificate_params struct ISteamNetworkingSockets_SteamNetworkingSockets009_RunCallbacks_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketIP_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const SteamNetworkingIPAddr *localAddress; int32_t nOptions; @@ -42805,7 +42805,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketIP_pa struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectByIPAddress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const SteamNetworkingIPAddr *address; int32_t nOptions; @@ -42814,7 +42814,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectByIPAddress_para struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2P_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t nLocalVirtualPort; int32_t nOptions; @@ -42823,7 +42823,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2P_p struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2P_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const SteamNetworkingIdentity_144 *identityRemote; int32_t nRemoteVirtualPort; @@ -42833,14 +42833,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2P_params struct ISteamNetworkingSockets_SteamNetworkingSockets012_AcceptConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t hConn; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hPeer; int32_t nReason; @@ -42850,14 +42850,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnection_params struct ISteamNetworkingSockets_SteamNetworkingSockets012_CloseListenSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionUserData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hPeer; int64_t nUserData; @@ -42865,21 +42865,21 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionUserData_p struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionUserData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int64_t _ret; uint32_t hPeer; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionName_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t hPeer; const char *pszName; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionName_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hPeer; char *pszName; @@ -42888,7 +42888,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionName_param struct ISteamNetworkingSockets_SteamNetworkingSockets012_SendMessageToConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t hConn; const void *pData; @@ -42899,7 +42899,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_SendMessageToConnection struct ISteamNetworkingSockets_SteamNetworkingSockets012_SendMessages_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t nMessages; w_SteamNetworkingMessage_t_153a *const *pMessages; int64_t *pOutMessageNumberOrResult; @@ -42907,14 +42907,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_SendMessages_params struct ISteamNetworkingSockets_SteamNetworkingSockets012_FlushMessagesOnConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t hConn; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t hConn; w_SteamNetworkingMessage_t_153a **ppOutMessages; @@ -42923,7 +42923,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnConnec struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hConn; SteamNetConnectionInfo_t_153a *pInfo; @@ -42931,7 +42931,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionInfo_param struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionRealTimeStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t hConn; SteamNetConnectionRealTimeStatus_t *pStatus; @@ -42941,7 +42941,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionRealTimeSt struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetDetailedConnectionStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t hConn; char *pszBuf; @@ -42950,7 +42950,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetDetailedConnectionSt struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSocketAddress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hSocket; SteamNetworkingIPAddr *address; @@ -42958,7 +42958,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSocketAddress_ struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateSocketPair_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t *pOutConnection1; uint32_t *pOutConnection2; @@ -42969,7 +42969,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateSocketPair_params struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConfigureConnectionLanes_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t hConn; int32_t nNumLanes; @@ -42979,40 +42979,40 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConfigureConnectionLane struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetIdentity_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; SteamNetworkingIdentity_144 *pIdentity; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_InitAuthentication_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetAuthenticationStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; SteamNetAuthenticationStatus_t *pDetails; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreatePollGroup_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_DestroyPollGroup_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hPollGroup; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionPollGroup_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t hConn; uint32_t hPollGroup; @@ -43020,7 +43020,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionPollGroup_ struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnPollGroup_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t hPollGroup; w_SteamNetworkingMessage_t_153a **ppOutMessages; @@ -43029,7 +43029,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnPollGr struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedRelayAuthTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const void *pvTicket; int32_t cbTicket; @@ -43038,7 +43038,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedRelayAuthTicket struct ISteamNetworkingSockets_SteamNetworkingSockets012_FindRelayAuthTicketForServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const SteamNetworkingIdentity_144 *identityGameServer; int32_t nRemoteVirtualPort; @@ -43047,7 +43047,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_FindRelayAuthTicketForS struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectToHostedDedicatedServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const SteamNetworkingIdentity_144 *identityTarget; int32_t nRemoteVirtualPort; @@ -43057,26 +43057,26 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectToHostedDedicate struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPort_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint16_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPOPID_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerAddress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; SteamDatagramHostedAddress *pRouting; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateHostedDedicatedServerListenSocket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t nLocalVirtualPort; int32_t nOptions; @@ -43085,7 +43085,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateHostedDedicatedSe struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetGameCoordinatorServerLogin_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; SteamDatagramGameCoordinatorServerLogin *pLoginInfo; int32_t *pcbSignedBlob; @@ -43094,7 +43094,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetGameCoordinatorServe struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2PCustomSignaling_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; void /*ISteamNetworkingConnectionSignaling*/ *pSignaling; const SteamNetworkingIdentity_144 *pPeerIdentity; @@ -43105,7 +43105,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2PCustomSignali struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2PCustomSignal_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const void *pMsg; int32_t cbMsg; @@ -43114,7 +43114,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2PCustomSignal struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetCertificateRequest_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t *pcbBlob; void *pBlob; @@ -43123,7 +43123,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetCertificateRequest_p struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetCertificate_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const void *pCertificate; int32_t cbCertificate; @@ -43132,32 +43132,32 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetCertificate_params struct ISteamNetworkingSockets_SteamNetworkingSockets012_ResetIdentity_params { - struct u_iface *u_iface; + struct u_iface u_iface; const SteamNetworkingIdentity_144 *pIdentity; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_RunCallbacks_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_BeginAsyncRequestFakeIP_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t nNumPorts; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetFakeIP_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t idxFirstPort; SteamNetworkingFakeIPResult_t *pInfo; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2PFakeIP_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int32_t idxFakePort; int32_t nOptions; @@ -43166,7 +43166,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2PFa struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetRemoteFakeIPForConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t hConn; SteamNetworkingIPAddr *pOutAddr; @@ -43174,14 +43174,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetRemoteFakeIPForConne struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateFakeUDPPort_params { - struct u_iface *u_iface; - void /*ISteamNetworkingFakeUDPPort*/ *_ret; + struct u_iface u_iface; + struct u_iface _ret; int32_t idxFakeServerPort; }; struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PRendezvous_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDRemote; uint32_t unConnectionIDSrc; const void *pMsgRendezvous; @@ -43190,7 +43190,7 @@ struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_Sen struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PConnectionFailure_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDRemote; uint32_t unConnectionIDDest; uint32_t nReason; @@ -43199,13 +43199,13 @@ struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_Sen struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCertAsync_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetNetworkConfigJSON_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; void *buf; uint32_t cbBuf; @@ -43213,20 +43213,20 @@ struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_Get struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_CacheRelayTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; const void *pTicket; uint32_t cbTicket; }; struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicketCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t idxTicket; void *buf; @@ -43235,14 +43235,14 @@ struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_Get struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_PostConnectionStateMsg_params { - struct u_iface *u_iface; + struct u_iface u_iface; const void *pMsg; uint32_t cbMsg; }; struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PRendezvous_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDRemote; uint32_t unConnectionIDSrc; const void *pMsgRendezvous; @@ -43251,7 +43251,7 @@ struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_Sen struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PConnectionFailure_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDRemote; uint32_t unConnectionIDDest; uint32_t nReason; @@ -43260,13 +43260,13 @@ struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_Sen struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCertAsync_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetNetworkConfigJSON_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; void *buf; uint32_t cbBuf; @@ -43275,20 +43275,20 @@ struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_Get struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_CacheRelayTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; const void *pTicket; uint32_t cbTicket; }; struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicketCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t idxTicket; void *buf; @@ -43297,21 +43297,21 @@ struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_Get struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_PostConnectionStateMsg_params { - struct u_iface *u_iface; + struct u_iface u_iface; const void *pMsg; uint32_t cbMsg; }; struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalPingLocation_params { - struct u_iface *u_iface; + struct u_iface u_iface; float _ret; SteamNetworkPingLocation_t *result; }; struct ISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeBetweenTwoLocations_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const SteamNetworkPingLocation_t *location1; const SteamNetworkPingLocation_t *location2; @@ -43319,14 +43319,14 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeBetweenTwoL struct ISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeFromLocalHost_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const SteamNetworkPingLocation_t *remoteLocation; }; struct ISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLocationToString_params { - struct u_iface *u_iface; + struct u_iface u_iface; const SteamNetworkPingLocation_t *location; char *pszBuf; int32_t cchBufSize; @@ -43334,7 +43334,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLocationToString struct ISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocationString_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pszString; SteamNetworkPingLocation_t *result; @@ -43342,20 +43342,20 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocationString_par struct ISteamNetworkingUtils_SteamNetworkingUtils001_CheckPingDataUpToDate_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; float flMaxAgeSeconds; }; struct ISteamNetworkingUtils_SteamNetworkingUtils001_IsPingMeasurementInProgress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetPingToDataCenter_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t popID; uint32_t *pViaRelayPoP; @@ -43363,20 +43363,20 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetPingToDataCenter_params struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetDirectPingToPOP_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t popID; }; struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPList_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t *list; int32_t nListSz; @@ -43384,20 +43384,20 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPList_params struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalTimestamp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int64_t _ret; }; struct ISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputFunction_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t eDetailLevel; void (*W_CDECL pfnFunc)(uint32_t, const char *); }; struct ISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eValue; uint32_t eScopeType; @@ -43408,7 +43408,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue_params struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValue_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t eValue; uint32_t eScopeType; @@ -43420,7 +43420,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValue_params struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eValue; const char **pOutName; @@ -43431,13 +43431,13 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo_params struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetFirstConfigValue_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ToString_params { - struct u_iface *u_iface; + struct u_iface u_iface; const SteamNetworkingIPAddr *addr; char *buf; uint32_t cbBuf; @@ -43446,7 +43446,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ToStr struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ParseString_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; SteamNetworkingIPAddr *pAddr; const char *pszStr; @@ -43454,7 +43454,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_Parse struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ToString_params { - struct u_iface *u_iface; + struct u_iface u_iface; const SteamNetworkingIdentity_144 *identity; char *buf; uint32_t cbBuf; @@ -43462,7 +43462,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ToS struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ParseString_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; SteamNetworkingIdentity_144 *pIdentity; const char *pszStr; @@ -43470,21 +43470,21 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_Par struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetRelayNetworkStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; SteamRelayNetworkStatus_t *pDetails; }; struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalPingLocation_params { - struct u_iface *u_iface; + struct u_iface u_iface; float _ret; SteamNetworkPingLocation_t *result; }; struct ISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeBetweenTwoLocations_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const SteamNetworkPingLocation_t *location1; const SteamNetworkPingLocation_t *location2; @@ -43492,14 +43492,14 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeBetweenTwoL struct ISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeFromLocalHost_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const SteamNetworkPingLocation_t *remoteLocation; }; struct ISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLocationToString_params { - struct u_iface *u_iface; + struct u_iface u_iface; const SteamNetworkPingLocation_t *location; char *pszBuf; int32_t cchBufSize; @@ -43507,7 +43507,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLocationToString struct ISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocationString_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pszString; SteamNetworkPingLocation_t *result; @@ -43515,14 +43515,14 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocationString_par struct ISteamNetworkingUtils_SteamNetworkingUtils002_CheckPingDataUpToDate_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; float flMaxAgeSeconds; }; struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetPingToDataCenter_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t popID; uint32_t *pViaRelayPoP; @@ -43530,20 +43530,20 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetPingToDataCenter_params struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetDirectPingToPOP_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t popID; }; struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPList_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t *list; int32_t nListSz; @@ -43551,20 +43551,20 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPList_params struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalTimestamp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int64_t _ret; }; struct ISteamNetworkingUtils_SteamNetworkingUtils002_SetDebugOutputFunction_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t eDetailLevel; void (*W_CDECL pfnFunc)(uint32_t, const char *); }; struct ISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValue_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eValue; uint32_t eScopeType; @@ -43575,7 +43575,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValue_params struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValue_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t eValue; uint32_t eScopeType; @@ -43587,7 +43587,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValue_params struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValueInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eValue; const char **pOutName; @@ -43598,13 +43598,13 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValueInfo_params struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetFirstConfigValue_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ToString_params { - struct u_iface *u_iface; + struct u_iface u_iface; const SteamNetworkingIPAddr *addr; char *buf; uint32_t cbBuf; @@ -43613,7 +43613,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ToStr struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ParseString_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; SteamNetworkingIPAddr *pAddr; const char *pszStr; @@ -43621,7 +43621,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_Parse struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ToString_params { - struct u_iface *u_iface; + struct u_iface u_iface; const SteamNetworkingIdentity_144 *identity; char *buf; uint32_t cbBuf; @@ -43629,7 +43629,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ToS struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ParseString_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; SteamNetworkingIdentity_144 *pIdentity; const char *pszStr; @@ -43637,28 +43637,28 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_Par struct ISteamNetworkingUtils_SteamNetworkingUtils003_AllocateMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; w_SteamNetworkingMessage_t_147 *_ret; int32_t cbAllocateBuffer; }; struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetRelayNetworkStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; SteamRelayNetworkStatus_t *pDetails; }; struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalPingLocation_params { - struct u_iface *u_iface; + struct u_iface u_iface; float _ret; SteamNetworkPingLocation_t *result; }; struct ISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeBetweenTwoLocations_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const SteamNetworkPingLocation_t *location1; const SteamNetworkPingLocation_t *location2; @@ -43666,14 +43666,14 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeBetweenTwoL struct ISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeFromLocalHost_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const SteamNetworkPingLocation_t *remoteLocation; }; struct ISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLocationToString_params { - struct u_iface *u_iface; + struct u_iface u_iface; const SteamNetworkPingLocation_t *location; char *pszBuf; int32_t cchBufSize; @@ -43681,7 +43681,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLocationToString struct ISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocationString_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pszString; SteamNetworkPingLocation_t *result; @@ -43689,14 +43689,14 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocationString_par struct ISteamNetworkingUtils_SteamNetworkingUtils003_CheckPingDataUpToDate_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; float flMaxAgeSeconds; }; struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetPingToDataCenter_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t popID; uint32_t *pViaRelayPoP; @@ -43704,20 +43704,20 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetPingToDataCenter_params struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetDirectPingToPOP_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t popID; }; struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPList_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t *list; int32_t nListSz; @@ -43725,20 +43725,20 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPList_params struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalTimestamp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int64_t _ret; }; struct ISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputFunction_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t eDetailLevel; void (*W_CDECL pfnFunc)(uint32_t, const char *); }; struct ISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eValue; uint32_t eScopeType; @@ -43749,7 +43749,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue_params struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValue_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t eValue; uint32_t eScopeType; @@ -43761,7 +43761,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValue_params struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eValue; const char **pOutName; @@ -43772,13 +43772,13 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueInfo_params struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetFirstConfigValue_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ToString_params { - struct u_iface *u_iface; + struct u_iface u_iface; const SteamNetworkingIPAddr *addr; char *buf; uint32_t cbBuf; @@ -43787,7 +43787,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ToStr struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ParseString_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; SteamNetworkingIPAddr *pAddr; const char *pszStr; @@ -43795,7 +43795,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_Parse struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ToString_params { - struct u_iface *u_iface; + struct u_iface u_iface; const SteamNetworkingIdentity_144 *identity; char *buf; uint32_t cbBuf; @@ -43803,7 +43803,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ToS struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ParseString_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; SteamNetworkingIdentity_144 *pIdentity; const char *pszStr; @@ -43811,28 +43811,28 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_Par struct ISteamNetworkingUtils_SteamNetworkingUtils004_AllocateMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; w_SteamNetworkingMessage_t_153a *_ret; int32_t cbAllocateBuffer; }; struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetRelayNetworkStatus_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; SteamRelayNetworkStatus_t *pDetails; }; struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalPingLocation_params { - struct u_iface *u_iface; + struct u_iface u_iface; float _ret; SteamNetworkPingLocation_t *result; }; struct ISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeBetweenTwoLocations_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const SteamNetworkPingLocation_t *location1; const SteamNetworkPingLocation_t *location2; @@ -43840,14 +43840,14 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeBetweenTwoL struct ISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeFromLocalHost_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; const SteamNetworkPingLocation_t *remoteLocation; }; struct ISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLocationToString_params { - struct u_iface *u_iface; + struct u_iface u_iface; const SteamNetworkPingLocation_t *location; char *pszBuf; int32_t cchBufSize; @@ -43855,7 +43855,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLocationToString struct ISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocationString_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pszString; SteamNetworkPingLocation_t *result; @@ -43863,14 +43863,14 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocationString_par struct ISteamNetworkingUtils_SteamNetworkingUtils004_CheckPingDataUpToDate_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; float flMaxAgeSeconds; }; struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetPingToDataCenter_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t popID; uint32_t *pViaRelayPoP; @@ -43878,20 +43878,20 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetPingToDataCenter_params struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetDirectPingToPOP_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t popID; }; struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPList_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t *list; int32_t nListSz; @@ -43899,27 +43899,27 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPList_params struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalTimestamp_params { - struct u_iface *u_iface; + struct u_iface u_iface; int64_t _ret; }; struct ISteamNetworkingUtils_SteamNetworkingUtils004_SetDebugOutputFunction_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t eDetailLevel; void (*W_CDECL pfnFunc)(uint32_t, const char *); }; struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetIPv4FakeIPType_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t nIPv4; }; struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetRealIdentityForFakeIP_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const SteamNetworkingIPAddr *fakeIP; SteamNetworkingIdentity_144 *pOutRealIdentity; @@ -43927,7 +43927,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetRealIdentityForFakeIP_pa struct ISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eValue; uint32_t eScopeType; @@ -43938,7 +43938,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue_params struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValue_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t eValue; uint32_t eScopeType; @@ -43950,7 +43950,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValue_params struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValueInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; uint32_t eValue; uint32_t *pOutDataType; @@ -43959,7 +43959,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValueInfo_params struct ISteamNetworkingUtils_SteamNetworkingUtils004_IterateGenericEditableConfigValues_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t eCurrent; int8_t bEnumerateDevVars; @@ -43967,7 +43967,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_IterateGenericEditableConfi struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToString_params { - struct u_iface *u_iface; + struct u_iface u_iface; const SteamNetworkingIPAddr *addr; char *buf; uint32_t cbBuf; @@ -43976,7 +43976,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToStr struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ParseString_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; SteamNetworkingIPAddr *pAddr; const char *pszStr; @@ -43984,14 +43984,14 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_Parse struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_GetFakeIPType_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const SteamNetworkingIPAddr *addr; }; struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ToString_params { - struct u_iface *u_iface; + struct u_iface u_iface; const SteamNetworkingIdentity_144 *identity; char *buf; uint32_t cbBuf; @@ -43999,7 +43999,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ToS struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ParseString_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; SteamNetworkingIdentity_144 *pIdentity; const char *pszStr; @@ -44007,20 +44007,20 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_Par struct ISteamParties_SteamParties002_GetNumActiveBeacons_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamParties_SteamParties002_GetBeaconByIndex_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unIndex; }; struct ISteamParties_SteamParties002_GetBeaconDetails_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t ulBeaconID; CSteamID *pSteamIDBeaconOwner; @@ -44031,21 +44031,21 @@ struct ISteamParties_SteamParties002_GetBeaconDetails_params struct ISteamParties_SteamParties002_JoinParty_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t ulBeaconID; }; struct ISteamParties_SteamParties002_GetNumAvailableBeaconLocations_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t *puNumLocations; }; struct ISteamParties_SteamParties002_GetAvailableBeaconLocations_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; w_SteamPartyBeaconLocation_t *pLocationList; uint32_t uMaxNumLocations; @@ -44053,7 +44053,7 @@ struct ISteamParties_SteamParties002_GetAvailableBeaconLocations_params struct ISteamParties_SteamParties002_CreateBeacon_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint32_t unOpenSlots; w_SteamPartyBeaconLocation_t *pBeaconLocation; @@ -44063,21 +44063,21 @@ struct ISteamParties_SteamParties002_CreateBeacon_params struct ISteamParties_SteamParties002_OnReservationCompleted_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t ulBeacon; CSteamID steamIDUser; }; struct ISteamParties_SteamParties002_CancelReservation_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t ulBeacon; CSteamID steamIDUser; }; struct ISteamParties_SteamParties002_ChangeNumOpenSlots_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; uint64_t ulBeacon; uint32_t unOpenSlots; @@ -44085,14 +44085,14 @@ struct ISteamParties_SteamParties002_ChangeNumOpenSlots_params struct ISteamParties_SteamParties002_DestroyBeacon_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t ulBeacon; }; struct ISteamParties_SteamParties002_GetBeaconLocationData_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; w_SteamPartyBeaconLocation_t BeaconLocation; uint32_t eData; @@ -44102,81 +44102,81 @@ struct ISteamParties_SteamParties002_GetBeaconLocationData_params struct ISteamUser_SteamUser004_GetHSteamUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamUser_SteamUser004_LogOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser004_LogOff_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser004_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser004_GetLogonState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUser_SteamUser004_BConnected_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser004_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser004_IsVACBanned_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t nGameID; }; struct ISteamUser_SteamUser004_RequireShowVACBannedMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t nGameID; }; struct ISteamUser_SteamUser004_AcknowledgeVACBanning_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t nGameID; }; struct ISteamUser_SteamUser004_NClientGameIDAdd_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t nGameID; }; struct ISteamUser_SteamUser004_RemoveClientGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t nClientGameID; }; struct ISteamUser_SteamUser004_SetClientGameServer_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t nClientGameID; uint32_t unIPServer; uint16_t usPortServer; @@ -44184,28 +44184,28 @@ struct ISteamUser_SteamUser004_SetClientGameServer_params struct ISteamUser_SteamUser004_SetSteam2Ticket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint8_t *pubTicket; int32_t cubTicket; }; struct ISteamUser_SteamUser004_AddServerNetAddress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIP; uint16_t unPort; }; struct ISteamUser_SteamUser004_SetEmail_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchEmail; }; struct ISteamUser_SteamUser004_GetSteamGameConnectToken_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; void *pBlob; int32_t cbMaxBlob; @@ -44213,7 +44213,7 @@ struct ISteamUser_SteamUser004_GetSteamGameConnectToken_params struct ISteamUser_SteamUser004_SetRegistryString_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44222,7 +44222,7 @@ struct ISteamUser_SteamUser004_SetRegistryString_params struct ISteamUser_SteamUser004_GetRegistryString_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44232,7 +44232,7 @@ struct ISteamUser_SteamUser004_GetRegistryString_params struct ISteamUser_SteamUser004_SetRegistryInt_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44241,7 +44241,7 @@ struct ISteamUser_SteamUser004_SetRegistryInt_params struct ISteamUser_SteamUser004_GetRegistryInt_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44250,7 +44250,7 @@ struct ISteamUser_SteamUser004_GetRegistryInt_params struct ISteamUser_SteamUser004_InitiateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; void *pBlob; int32_t cbMaxBlob; @@ -44263,113 +44263,113 @@ struct ISteamUser_SteamUser004_InitiateGameConnection_params struct ISteamUser_SteamUser004_TerminateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser004_SetSelfAsPrimaryChatDestination_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser004_IsPrimaryChatDestination_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser004_RequestLegacyCDKey_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t iAppID; }; struct ISteamUser_SteamUser005_GetHSteamUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamUser_SteamUser005_LogOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser005_LogOff_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser005_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser005_GetLogonState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUser_SteamUser005_BConnected_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser005_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser005_IsVACBanned_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t nGameID; }; struct ISteamUser_SteamUser005_RequireShowVACBannedMessage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t nAppID; }; struct ISteamUser_SteamUser005_AcknowledgeVACBanning_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t nAppID; }; struct ISteamUser_SteamUser005_SetSteam2Ticket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint8_t *pubTicket; int32_t cubTicket; }; struct ISteamUser_SteamUser005_AddServerNetAddress_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIP; uint16_t unPort; }; struct ISteamUser_SteamUser005_SetEmail_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchEmail; }; struct ISteamUser_SteamUser005_SetRegistryString_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44378,7 +44378,7 @@ struct ISteamUser_SteamUser005_SetRegistryString_params struct ISteamUser_SteamUser005_GetRegistryString_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44388,7 +44388,7 @@ struct ISteamUser_SteamUser005_GetRegistryString_params struct ISteamUser_SteamUser005_SetRegistryInt_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44397,7 +44397,7 @@ struct ISteamUser_SteamUser005_SetRegistryInt_params struct ISteamUser_SteamUser005_GetRegistryInt_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44406,7 +44406,7 @@ struct ISteamUser_SteamUser005_GetRegistryInt_params struct ISteamUser_SteamUser005_InitiateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; void *pBlob; int32_t cbMaxBlob; @@ -44419,31 +44419,31 @@ struct ISteamUser_SteamUser005_InitiateGameConnection_params struct ISteamUser_SteamUser005_TerminateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser005_SetSelfAsPrimaryChatDestination_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser005_IsPrimaryChatDestination_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser005_RequestLegacyCDKey_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t nAppID; }; struct ISteamUser_SteamUser005_SendGuestPassByEmail_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchEmailAccount; uint64_t gidGuestPassID; @@ -44452,7 +44452,7 @@ struct ISteamUser_SteamUser005_SendGuestPassByEmail_params struct ISteamUser_SteamUser005_SendGuestPassByAccountID_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t uAccountID; uint64_t gidGuestPassID; @@ -44461,39 +44461,39 @@ struct ISteamUser_SteamUser005_SendGuestPassByAccountID_params struct ISteamUser_SteamUser005_AckGuestPass_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchGuestPassCode; }; struct ISteamUser_SteamUser005_RedeemGuestPass_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchGuestPassCode; }; struct ISteamUser_SteamUser005_GetGuestPassToGiveCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUser_SteamUser005_GetGuestPassToRedeemCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUser_SteamUser005_GetGuestPassLastUpdateTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUser_SteamUser005_GetGuestPassToGiveInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t nPassIndex; uint64_t *pgidGuestPassID; @@ -44508,7 +44508,7 @@ struct ISteamUser_SteamUser005_GetGuestPassToGiveInfo_params struct ISteamUser_SteamUser005_GetGuestPassToRedeemInfo_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t nPassIndex; uint64_t *pgidGuestPassID; @@ -44521,7 +44521,7 @@ struct ISteamUser_SteamUser005_GetGuestPassToRedeemInfo_params struct ISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t nPassIndex; char *pchSenderAddress; @@ -44530,7 +44530,7 @@ struct ISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress_params struct ISteamUser_SteamUser005_GetGuestPassToRedeemSenderName_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t nPassIndex; char *pchSenderName; @@ -44539,20 +44539,20 @@ struct ISteamUser_SteamUser005_GetGuestPassToRedeemSenderName_params struct ISteamUser_SteamUser005_AcknowledgeMessageByGID_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchMessageGID; }; struct ISteamUser_SteamUser005_SetLanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; const char *pchLanguage; }; struct ISteamUser_SteamUser005_TrackAppUsageEvent_params { - struct u_iface *u_iface; + struct u_iface u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -44560,54 +44560,54 @@ struct ISteamUser_SteamUser005_TrackAppUsageEvent_params struct ISteamUser_SteamUser005_SetAccountName_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchAccountName; }; struct ISteamUser_SteamUser005_SetPassword_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *pchPassword; }; struct ISteamUser_SteamUser005_SetAccountCreationTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t rt; }; struct ISteamUser_SteamUser006_GetHSteamUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamUser_SteamUser006_LogOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser006_LogOff_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser006_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser006_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser006_SetRegistryString_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44616,7 +44616,7 @@ struct ISteamUser_SteamUser006_SetRegistryString_params struct ISteamUser_SteamUser006_GetRegistryString_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44626,7 +44626,7 @@ struct ISteamUser_SteamUser006_GetRegistryString_params struct ISteamUser_SteamUser006_SetRegistryInt_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44635,7 +44635,7 @@ struct ISteamUser_SteamUser006_SetRegistryInt_params struct ISteamUser_SteamUser006_GetRegistryInt_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44644,7 +44644,7 @@ struct ISteamUser_SteamUser006_GetRegistryInt_params struct ISteamUser_SteamUser006_InitiateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; void *pBlob; int32_t cbMaxBlob; @@ -44657,14 +44657,14 @@ struct ISteamUser_SteamUser006_InitiateGameConnection_params struct ISteamUser_SteamUser006_TerminateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser006_TrackAppUsageEvent_params { - struct u_iface *u_iface; + struct u_iface u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -44672,36 +44672,36 @@ struct ISteamUser_SteamUser006_TrackAppUsageEvent_params struct ISteamUser_SteamUser007_GetHSteamUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamUser_SteamUser007_LogOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser007_LogOff_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser007_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser007_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser007_SetRegistryString_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44710,7 +44710,7 @@ struct ISteamUser_SteamUser007_SetRegistryString_params struct ISteamUser_SteamUser007_GetRegistryString_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44720,7 +44720,7 @@ struct ISteamUser_SteamUser007_GetRegistryString_params struct ISteamUser_SteamUser007_SetRegistryInt_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44729,7 +44729,7 @@ struct ISteamUser_SteamUser007_SetRegistryInt_params struct ISteamUser_SteamUser007_GetRegistryInt_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44738,7 +44738,7 @@ struct ISteamUser_SteamUser007_GetRegistryInt_params struct ISteamUser_SteamUser007_InitiateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; void *pBlob; int32_t cbMaxBlob; @@ -44753,14 +44753,14 @@ struct ISteamUser_SteamUser007_InitiateGameConnection_params struct ISteamUser_SteamUser007_TerminateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser007_TrackAppUsageEvent_params { - struct u_iface *u_iface; + struct u_iface u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -44768,30 +44768,30 @@ struct ISteamUser_SteamUser007_TrackAppUsageEvent_params struct ISteamUser_SteamUser007_RefreshSteam2Login_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser008_GetHSteamUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamUser_SteamUser008_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser008_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser008_InitiateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; void *pBlob; int32_t cbMaxBlob; @@ -44806,14 +44806,14 @@ struct ISteamUser_SteamUser008_InitiateGameConnection_params struct ISteamUser_SteamUser008_TerminateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser008_TrackAppUsageEvent_params { - struct u_iface *u_iface; + struct u_iface u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -44821,30 +44821,30 @@ struct ISteamUser_SteamUser008_TrackAppUsageEvent_params struct ISteamUser_SteamUser008_RefreshSteam2Login_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser009_GetHSteamUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamUser_SteamUser009_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser009_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser009_InitiateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; void *pAuthBlob; int32_t cbMaxAuthBlob; @@ -44857,14 +44857,14 @@ struct ISteamUser_SteamUser009_InitiateGameConnection_params struct ISteamUser_SteamUser009_TerminateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser009_TrackAppUsageEvent_params { - struct u_iface *u_iface; + struct u_iface u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -44872,30 +44872,30 @@ struct ISteamUser_SteamUser009_TrackAppUsageEvent_params struct ISteamUser_SteamUser009_RefreshSteam2Login_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser010_GetHSteamUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamUser_SteamUser010_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser010_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser010_InitiateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; void *pAuthBlob; int32_t cbMaxAuthBlob; @@ -44907,14 +44907,14 @@ struct ISteamUser_SteamUser010_InitiateGameConnection_params struct ISteamUser_SteamUser010_TerminateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser010_TrackAppUsageEvent_params { - struct u_iface *u_iface; + struct u_iface u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -44922,25 +44922,25 @@ struct ISteamUser_SteamUser010_TrackAppUsageEvent_params struct ISteamUser_SteamUser011_GetHSteamUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamUser_SteamUser011_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser011_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser011_InitiateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; void *pAuthBlob; int32_t cbMaxAuthBlob; @@ -44952,14 +44952,14 @@ struct ISteamUser_SteamUser011_InitiateGameConnection_params struct ISteamUser_SteamUser011_TerminateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser011_TrackAppUsageEvent_params { - struct u_iface *u_iface; + struct u_iface u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -44967,7 +44967,7 @@ struct ISteamUser_SteamUser011_TrackAppUsageEvent_params struct ISteamUser_SteamUser011_GetUserDataFolder_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; char *pchBuffer; int32_t cubBuffer; @@ -44975,17 +44975,17 @@ struct ISteamUser_SteamUser011_GetUserDataFolder_params struct ISteamUser_SteamUser011_StartVoiceRecording_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser011_StopVoiceRecording_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser011_GetCompressedVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; void *pDestBuffer; uint32_t cbDestBufferSize; @@ -44994,7 +44994,7 @@ struct ISteamUser_SteamUser011_GetCompressedVoice_params struct ISteamUser_SteamUser011_DecompressVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; void *pCompressed; uint32_t cbCompressed; @@ -45005,25 +45005,25 @@ struct ISteamUser_SteamUser011_DecompressVoice_params struct ISteamUser_SteamUser012_GetHSteamUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamUser_SteamUser012_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser012_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser012_InitiateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; void *pAuthBlob; int32_t cbMaxAuthBlob; @@ -45035,14 +45035,14 @@ struct ISteamUser_SteamUser012_InitiateGameConnection_params struct ISteamUser_SteamUser012_TerminateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser012_TrackAppUsageEvent_params { - struct u_iface *u_iface; + struct u_iface u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -45050,7 +45050,7 @@ struct ISteamUser_SteamUser012_TrackAppUsageEvent_params struct ISteamUser_SteamUser012_GetUserDataFolder_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; char *pchBuffer; int32_t cubBuffer; @@ -45058,17 +45058,17 @@ struct ISteamUser_SteamUser012_GetUserDataFolder_params struct ISteamUser_SteamUser012_StartVoiceRecording_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser012_StopVoiceRecording_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser012_GetCompressedVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; void *pDestBuffer; uint32_t cbDestBufferSize; @@ -45077,7 +45077,7 @@ struct ISteamUser_SteamUser012_GetCompressedVoice_params struct ISteamUser_SteamUser012_DecompressVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; void *pCompressed; uint32_t cbCompressed; @@ -45088,7 +45088,7 @@ struct ISteamUser_SteamUser012_DecompressVoice_params struct ISteamUser_SteamUser012_GetAuthSessionTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -45097,7 +45097,7 @@ struct ISteamUser_SteamUser012_GetAuthSessionTicket_params struct ISteamUser_SteamUser012_BeginAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -45106,19 +45106,19 @@ struct ISteamUser_SteamUser012_BeginAuthSession_params struct ISteamUser_SteamUser012_EndAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser012_CancelAuthTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t hAuthTicket; }; struct ISteamUser_SteamUser012_UserHasLicenseForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -45126,25 +45126,25 @@ struct ISteamUser_SteamUser012_UserHasLicenseForApp_params struct ISteamUser_SteamUser013_GetHSteamUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamUser_SteamUser013_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser013_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser013_InitiateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; void *pAuthBlob; int32_t cbMaxAuthBlob; @@ -45156,14 +45156,14 @@ struct ISteamUser_SteamUser013_InitiateGameConnection_params struct ISteamUser_SteamUser013_TerminateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser013_TrackAppUsageEvent_params { - struct u_iface *u_iface; + struct u_iface u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -45171,7 +45171,7 @@ struct ISteamUser_SteamUser013_TrackAppUsageEvent_params struct ISteamUser_SteamUser013_GetUserDataFolder_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; char *pchBuffer; int32_t cubBuffer; @@ -45179,17 +45179,17 @@ struct ISteamUser_SteamUser013_GetUserDataFolder_params struct ISteamUser_SteamUser013_StartVoiceRecording_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser013_StopVoiceRecording_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser013_GetAvailableVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t *pcbCompressed; uint32_t *pcbUncompressed; @@ -45197,7 +45197,7 @@ struct ISteamUser_SteamUser013_GetAvailableVoice_params struct ISteamUser_SteamUser013_GetVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int8_t bWantCompressed; void *pDestBuffer; @@ -45211,7 +45211,7 @@ struct ISteamUser_SteamUser013_GetVoice_params struct ISteamUser_SteamUser013_DecompressVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const void *pCompressed; uint32_t cbCompressed; @@ -45222,7 +45222,7 @@ struct ISteamUser_SteamUser013_DecompressVoice_params struct ISteamUser_SteamUser013_GetAuthSessionTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -45231,7 +45231,7 @@ struct ISteamUser_SteamUser013_GetAuthSessionTicket_params struct ISteamUser_SteamUser013_BeginAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -45240,19 +45240,19 @@ struct ISteamUser_SteamUser013_BeginAuthSession_params struct ISteamUser_SteamUser013_EndAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser013_CancelAuthTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t hAuthTicket; }; struct ISteamUser_SteamUser013_UserHasLicenseForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -45260,25 +45260,25 @@ struct ISteamUser_SteamUser013_UserHasLicenseForApp_params struct ISteamUser_SteamUser014_GetHSteamUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamUser_SteamUser014_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser014_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser014_InitiateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; void *pAuthBlob; int32_t cbMaxAuthBlob; @@ -45290,14 +45290,14 @@ struct ISteamUser_SteamUser014_InitiateGameConnection_params struct ISteamUser_SteamUser014_TerminateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser014_TrackAppUsageEvent_params { - struct u_iface *u_iface; + struct u_iface u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -45305,7 +45305,7 @@ struct ISteamUser_SteamUser014_TrackAppUsageEvent_params struct ISteamUser_SteamUser014_GetUserDataFolder_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; char *pchBuffer; int32_t cubBuffer; @@ -45313,17 +45313,17 @@ struct ISteamUser_SteamUser014_GetUserDataFolder_params struct ISteamUser_SteamUser014_StartVoiceRecording_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser014_StopVoiceRecording_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser014_GetAvailableVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t *pcbCompressed; uint32_t *pcbUncompressed; @@ -45331,7 +45331,7 @@ struct ISteamUser_SteamUser014_GetAvailableVoice_params struct ISteamUser_SteamUser014_GetVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int8_t bWantCompressed; void *pDestBuffer; @@ -45345,7 +45345,7 @@ struct ISteamUser_SteamUser014_GetVoice_params struct ISteamUser_SteamUser014_DecompressVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const void *pCompressed; uint32_t cbCompressed; @@ -45356,7 +45356,7 @@ struct ISteamUser_SteamUser014_DecompressVoice_params struct ISteamUser_SteamUser014_GetAuthSessionTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -45365,7 +45365,7 @@ struct ISteamUser_SteamUser014_GetAuthSessionTicket_params struct ISteamUser_SteamUser014_BeginAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -45374,19 +45374,19 @@ struct ISteamUser_SteamUser014_BeginAuthSession_params struct ISteamUser_SteamUser014_EndAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser014_CancelAuthTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t hAuthTicket; }; struct ISteamUser_SteamUser014_UserHasLicenseForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -45394,13 +45394,13 @@ struct ISteamUser_SteamUser014_UserHasLicenseForApp_params struct ISteamUser_SteamUser014_BIsBehindNAT_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser014_AdvertiseGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; @@ -45408,7 +45408,7 @@ struct ISteamUser_SteamUser014_AdvertiseGame_params struct ISteamUser_SteamUser014_RequestEncryptedAppTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; void *pDataToInclude; int32_t cbDataToInclude; @@ -45416,7 +45416,7 @@ struct ISteamUser_SteamUser014_RequestEncryptedAppTicket_params struct ISteamUser_SteamUser014_GetEncryptedAppTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -45425,25 +45425,25 @@ struct ISteamUser_SteamUser014_GetEncryptedAppTicket_params struct ISteamUser_SteamUser015_GetHSteamUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamUser_SteamUser015_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser015_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser015_InitiateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; void *pAuthBlob; int32_t cbMaxAuthBlob; @@ -45455,14 +45455,14 @@ struct ISteamUser_SteamUser015_InitiateGameConnection_params struct ISteamUser_SteamUser015_TerminateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser015_TrackAppUsageEvent_params { - struct u_iface *u_iface; + struct u_iface u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -45470,7 +45470,7 @@ struct ISteamUser_SteamUser015_TrackAppUsageEvent_params struct ISteamUser_SteamUser015_GetUserDataFolder_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; char *pchBuffer; int32_t cubBuffer; @@ -45478,17 +45478,17 @@ struct ISteamUser_SteamUser015_GetUserDataFolder_params struct ISteamUser_SteamUser015_StartVoiceRecording_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser015_StopVoiceRecording_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser015_GetAvailableVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t *pcbCompressed; uint32_t *pcbUncompressed; @@ -45496,7 +45496,7 @@ struct ISteamUser_SteamUser015_GetAvailableVoice_params struct ISteamUser_SteamUser015_GetVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int8_t bWantCompressed; void *pDestBuffer; @@ -45510,7 +45510,7 @@ struct ISteamUser_SteamUser015_GetVoice_params struct ISteamUser_SteamUser015_DecompressVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const void *pCompressed; uint32_t cbCompressed; @@ -45522,13 +45522,13 @@ struct ISteamUser_SteamUser015_DecompressVoice_params struct ISteamUser_SteamUser015_GetVoiceOptimalSampleRate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUser_SteamUser015_GetAuthSessionTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -45537,7 +45537,7 @@ struct ISteamUser_SteamUser015_GetAuthSessionTicket_params struct ISteamUser_SteamUser015_BeginAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -45546,19 +45546,19 @@ struct ISteamUser_SteamUser015_BeginAuthSession_params struct ISteamUser_SteamUser015_EndAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser015_CancelAuthTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t hAuthTicket; }; struct ISteamUser_SteamUser015_UserHasLicenseForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -45566,13 +45566,13 @@ struct ISteamUser_SteamUser015_UserHasLicenseForApp_params struct ISteamUser_SteamUser015_BIsBehindNAT_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser015_AdvertiseGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; @@ -45580,7 +45580,7 @@ struct ISteamUser_SteamUser015_AdvertiseGame_params struct ISteamUser_SteamUser015_RequestEncryptedAppTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; void *pDataToInclude; int32_t cbDataToInclude; @@ -45588,7 +45588,7 @@ struct ISteamUser_SteamUser015_RequestEncryptedAppTicket_params struct ISteamUser_SteamUser015_GetEncryptedAppTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -45597,25 +45597,25 @@ struct ISteamUser_SteamUser015_GetEncryptedAppTicket_params struct ISteamUser_SteamUser016_GetHSteamUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamUser_SteamUser016_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser016_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser016_InitiateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; void *pAuthBlob; int32_t cbMaxAuthBlob; @@ -45627,14 +45627,14 @@ struct ISteamUser_SteamUser016_InitiateGameConnection_params struct ISteamUser_SteamUser016_TerminateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser016_TrackAppUsageEvent_params { - struct u_iface *u_iface; + struct u_iface u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -45642,7 +45642,7 @@ struct ISteamUser_SteamUser016_TrackAppUsageEvent_params struct ISteamUser_SteamUser016_GetUserDataFolder_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; char *pchBuffer; int32_t cubBuffer; @@ -45650,17 +45650,17 @@ struct ISteamUser_SteamUser016_GetUserDataFolder_params struct ISteamUser_SteamUser016_StartVoiceRecording_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser016_StopVoiceRecording_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser016_GetAvailableVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t *pcbCompressed; uint32_t *pcbUncompressed; @@ -45669,7 +45669,7 @@ struct ISteamUser_SteamUser016_GetAvailableVoice_params struct ISteamUser_SteamUser016_GetVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int8_t bWantCompressed; void *pDestBuffer; @@ -45684,7 +45684,7 @@ struct ISteamUser_SteamUser016_GetVoice_params struct ISteamUser_SteamUser016_DecompressVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const void *pCompressed; uint32_t cbCompressed; @@ -45696,13 +45696,13 @@ struct ISteamUser_SteamUser016_DecompressVoice_params struct ISteamUser_SteamUser016_GetVoiceOptimalSampleRate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUser_SteamUser016_GetAuthSessionTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -45711,7 +45711,7 @@ struct ISteamUser_SteamUser016_GetAuthSessionTicket_params struct ISteamUser_SteamUser016_BeginAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -45720,19 +45720,19 @@ struct ISteamUser_SteamUser016_BeginAuthSession_params struct ISteamUser_SteamUser016_EndAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser016_CancelAuthTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t hAuthTicket; }; struct ISteamUser_SteamUser016_UserHasLicenseForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -45740,13 +45740,13 @@ struct ISteamUser_SteamUser016_UserHasLicenseForApp_params struct ISteamUser_SteamUser016_BIsBehindNAT_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser016_AdvertiseGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; @@ -45754,7 +45754,7 @@ struct ISteamUser_SteamUser016_AdvertiseGame_params struct ISteamUser_SteamUser016_RequestEncryptedAppTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; void *pDataToInclude; int32_t cbDataToInclude; @@ -45762,7 +45762,7 @@ struct ISteamUser_SteamUser016_RequestEncryptedAppTicket_params struct ISteamUser_SteamUser016_GetEncryptedAppTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -45771,25 +45771,25 @@ struct ISteamUser_SteamUser016_GetEncryptedAppTicket_params struct ISteamUser_SteamUser017_GetHSteamUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamUser_SteamUser017_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser017_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser017_InitiateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; void *pAuthBlob; int32_t cbMaxAuthBlob; @@ -45801,14 +45801,14 @@ struct ISteamUser_SteamUser017_InitiateGameConnection_params struct ISteamUser_SteamUser017_TerminateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser017_TrackAppUsageEvent_params { - struct u_iface *u_iface; + struct u_iface u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -45816,7 +45816,7 @@ struct ISteamUser_SteamUser017_TrackAppUsageEvent_params struct ISteamUser_SteamUser017_GetUserDataFolder_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; char *pchBuffer; int32_t cubBuffer; @@ -45824,17 +45824,17 @@ struct ISteamUser_SteamUser017_GetUserDataFolder_params struct ISteamUser_SteamUser017_StartVoiceRecording_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser017_StopVoiceRecording_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser017_GetAvailableVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t *pcbCompressed; uint32_t *pcbUncompressed; @@ -45843,7 +45843,7 @@ struct ISteamUser_SteamUser017_GetAvailableVoice_params struct ISteamUser_SteamUser017_GetVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int8_t bWantCompressed; void *pDestBuffer; @@ -45858,7 +45858,7 @@ struct ISteamUser_SteamUser017_GetVoice_params struct ISteamUser_SteamUser017_DecompressVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const void *pCompressed; uint32_t cbCompressed; @@ -45870,13 +45870,13 @@ struct ISteamUser_SteamUser017_DecompressVoice_params struct ISteamUser_SteamUser017_GetVoiceOptimalSampleRate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUser_SteamUser017_GetAuthSessionTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -45885,7 +45885,7 @@ struct ISteamUser_SteamUser017_GetAuthSessionTicket_params struct ISteamUser_SteamUser017_BeginAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -45894,19 +45894,19 @@ struct ISteamUser_SteamUser017_BeginAuthSession_params struct ISteamUser_SteamUser017_EndAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser017_CancelAuthTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t hAuthTicket; }; struct ISteamUser_SteamUser017_UserHasLicenseForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -45914,13 +45914,13 @@ struct ISteamUser_SteamUser017_UserHasLicenseForApp_params struct ISteamUser_SteamUser017_BIsBehindNAT_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser017_AdvertiseGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; @@ -45928,7 +45928,7 @@ struct ISteamUser_SteamUser017_AdvertiseGame_params struct ISteamUser_SteamUser017_RequestEncryptedAppTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; void *pDataToInclude; int32_t cbDataToInclude; @@ -45936,7 +45936,7 @@ struct ISteamUser_SteamUser017_RequestEncryptedAppTicket_params struct ISteamUser_SteamUser017_GetEncryptedAppTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -45945,7 +45945,7 @@ struct ISteamUser_SteamUser017_GetEncryptedAppTicket_params struct ISteamUser_SteamUser017_GetGameBadgeLevel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t nSeries; int8_t bFoil; @@ -45953,31 +45953,31 @@ struct ISteamUser_SteamUser017_GetGameBadgeLevel_params struct ISteamUser_SteamUser017_GetPlayerSteamLevel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamUser_SteamUser018_GetHSteamUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamUser_SteamUser018_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser018_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser018_InitiateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; void *pAuthBlob; int32_t cbMaxAuthBlob; @@ -45989,14 +45989,14 @@ struct ISteamUser_SteamUser018_InitiateGameConnection_params struct ISteamUser_SteamUser018_TerminateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser018_TrackAppUsageEvent_params { - struct u_iface *u_iface; + struct u_iface u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -46004,7 +46004,7 @@ struct ISteamUser_SteamUser018_TrackAppUsageEvent_params struct ISteamUser_SteamUser018_GetUserDataFolder_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; char *pchBuffer; int32_t cubBuffer; @@ -46012,17 +46012,17 @@ struct ISteamUser_SteamUser018_GetUserDataFolder_params struct ISteamUser_SteamUser018_StartVoiceRecording_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser018_StopVoiceRecording_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser018_GetAvailableVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t *pcbCompressed; uint32_t *pcbUncompressed; @@ -46031,7 +46031,7 @@ struct ISteamUser_SteamUser018_GetAvailableVoice_params struct ISteamUser_SteamUser018_GetVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int8_t bWantCompressed; void *pDestBuffer; @@ -46046,7 +46046,7 @@ struct ISteamUser_SteamUser018_GetVoice_params struct ISteamUser_SteamUser018_DecompressVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const void *pCompressed; uint32_t cbCompressed; @@ -46058,13 +46058,13 @@ struct ISteamUser_SteamUser018_DecompressVoice_params struct ISteamUser_SteamUser018_GetVoiceOptimalSampleRate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUser_SteamUser018_GetAuthSessionTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -46073,7 +46073,7 @@ struct ISteamUser_SteamUser018_GetAuthSessionTicket_params struct ISteamUser_SteamUser018_BeginAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -46082,19 +46082,19 @@ struct ISteamUser_SteamUser018_BeginAuthSession_params struct ISteamUser_SteamUser018_EndAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser018_CancelAuthTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t hAuthTicket; }; struct ISteamUser_SteamUser018_UserHasLicenseForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -46102,13 +46102,13 @@ struct ISteamUser_SteamUser018_UserHasLicenseForApp_params struct ISteamUser_SteamUser018_BIsBehindNAT_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser018_AdvertiseGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; @@ -46116,7 +46116,7 @@ struct ISteamUser_SteamUser018_AdvertiseGame_params struct ISteamUser_SteamUser018_RequestEncryptedAppTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; void *pDataToInclude; int32_t cbDataToInclude; @@ -46124,7 +46124,7 @@ struct ISteamUser_SteamUser018_RequestEncryptedAppTicket_params struct ISteamUser_SteamUser018_GetEncryptedAppTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -46133,7 +46133,7 @@ struct ISteamUser_SteamUser018_GetEncryptedAppTicket_params struct ISteamUser_SteamUser018_GetGameBadgeLevel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t nSeries; int8_t bFoil; @@ -46141,38 +46141,38 @@ struct ISteamUser_SteamUser018_GetGameBadgeLevel_params struct ISteamUser_SteamUser018_GetPlayerSteamLevel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamUser_SteamUser018_RequestStoreAuthURL_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchRedirectURL; }; struct ISteamUser_SteamUser019_GetHSteamUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamUser_SteamUser019_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser019_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser019_InitiateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; void *pAuthBlob; int32_t cbMaxAuthBlob; @@ -46184,14 +46184,14 @@ struct ISteamUser_SteamUser019_InitiateGameConnection_params struct ISteamUser_SteamUser019_TerminateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser019_TrackAppUsageEvent_params { - struct u_iface *u_iface; + struct u_iface u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -46199,7 +46199,7 @@ struct ISteamUser_SteamUser019_TrackAppUsageEvent_params struct ISteamUser_SteamUser019_GetUserDataFolder_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; char *pchBuffer; int32_t cubBuffer; @@ -46207,17 +46207,17 @@ struct ISteamUser_SteamUser019_GetUserDataFolder_params struct ISteamUser_SteamUser019_StartVoiceRecording_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser019_StopVoiceRecording_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser019_GetAvailableVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t *pcbCompressed; uint32_t *pcbUncompressed_Deprecated; @@ -46226,7 +46226,7 @@ struct ISteamUser_SteamUser019_GetAvailableVoice_params struct ISteamUser_SteamUser019_GetVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int8_t bWantCompressed; void *pDestBuffer; @@ -46241,7 +46241,7 @@ struct ISteamUser_SteamUser019_GetVoice_params struct ISteamUser_SteamUser019_DecompressVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const void *pCompressed; uint32_t cbCompressed; @@ -46253,13 +46253,13 @@ struct ISteamUser_SteamUser019_DecompressVoice_params struct ISteamUser_SteamUser019_GetVoiceOptimalSampleRate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUser_SteamUser019_GetAuthSessionTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -46268,7 +46268,7 @@ struct ISteamUser_SteamUser019_GetAuthSessionTicket_params struct ISteamUser_SteamUser019_BeginAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -46277,19 +46277,19 @@ struct ISteamUser_SteamUser019_BeginAuthSession_params struct ISteamUser_SteamUser019_EndAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser019_CancelAuthTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t hAuthTicket; }; struct ISteamUser_SteamUser019_UserHasLicenseForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -46297,13 +46297,13 @@ struct ISteamUser_SteamUser019_UserHasLicenseForApp_params struct ISteamUser_SteamUser019_BIsBehindNAT_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser019_AdvertiseGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; @@ -46311,7 +46311,7 @@ struct ISteamUser_SteamUser019_AdvertiseGame_params struct ISteamUser_SteamUser019_RequestEncryptedAppTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; void *pDataToInclude; int32_t cbDataToInclude; @@ -46319,7 +46319,7 @@ struct ISteamUser_SteamUser019_RequestEncryptedAppTicket_params struct ISteamUser_SteamUser019_GetEncryptedAppTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -46328,7 +46328,7 @@ struct ISteamUser_SteamUser019_GetEncryptedAppTicket_params struct ISteamUser_SteamUser019_GetGameBadgeLevel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t nSeries; int8_t bFoil; @@ -46336,62 +46336,62 @@ struct ISteamUser_SteamUser019_GetGameBadgeLevel_params struct ISteamUser_SteamUser019_GetPlayerSteamLevel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamUser_SteamUser019_RequestStoreAuthURL_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchRedirectURL; }; struct ISteamUser_SteamUser019_BIsPhoneVerified_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser019_BIsTwoFactorEnabled_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser019_BIsPhoneIdentifying_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser019_BIsPhoneRequiringVerification_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser020_GetHSteamUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamUser_SteamUser020_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser020_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser020_InitiateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; void *pAuthBlob; int32_t cbMaxAuthBlob; @@ -46403,14 +46403,14 @@ struct ISteamUser_SteamUser020_InitiateGameConnection_params struct ISteamUser_SteamUser020_TerminateGameConnection_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser020_TrackAppUsageEvent_params { - struct u_iface *u_iface; + struct u_iface u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -46418,7 +46418,7 @@ struct ISteamUser_SteamUser020_TrackAppUsageEvent_params struct ISteamUser_SteamUser020_GetUserDataFolder_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; char *pchBuffer; int32_t cubBuffer; @@ -46426,17 +46426,17 @@ struct ISteamUser_SteamUser020_GetUserDataFolder_params struct ISteamUser_SteamUser020_StartVoiceRecording_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser020_StopVoiceRecording_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser020_GetAvailableVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t *pcbCompressed; uint32_t *pcbUncompressed_Deprecated; @@ -46445,7 +46445,7 @@ struct ISteamUser_SteamUser020_GetAvailableVoice_params struct ISteamUser_SteamUser020_GetVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int8_t bWantCompressed; void *pDestBuffer; @@ -46460,7 +46460,7 @@ struct ISteamUser_SteamUser020_GetVoice_params struct ISteamUser_SteamUser020_DecompressVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const void *pCompressed; uint32_t cbCompressed; @@ -46472,13 +46472,13 @@ struct ISteamUser_SteamUser020_DecompressVoice_params struct ISteamUser_SteamUser020_GetVoiceOptimalSampleRate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUser_SteamUser020_GetAuthSessionTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -46487,7 +46487,7 @@ struct ISteamUser_SteamUser020_GetAuthSessionTicket_params struct ISteamUser_SteamUser020_BeginAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -46496,19 +46496,19 @@ struct ISteamUser_SteamUser020_BeginAuthSession_params struct ISteamUser_SteamUser020_EndAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser020_CancelAuthTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t hAuthTicket; }; struct ISteamUser_SteamUser020_UserHasLicenseForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -46516,13 +46516,13 @@ struct ISteamUser_SteamUser020_UserHasLicenseForApp_params struct ISteamUser_SteamUser020_BIsBehindNAT_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser020_AdvertiseGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; @@ -46530,7 +46530,7 @@ struct ISteamUser_SteamUser020_AdvertiseGame_params struct ISteamUser_SteamUser020_RequestEncryptedAppTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; void *pDataToInclude; int32_t cbDataToInclude; @@ -46538,7 +46538,7 @@ struct ISteamUser_SteamUser020_RequestEncryptedAppTicket_params struct ISteamUser_SteamUser020_GetEncryptedAppTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -46547,7 +46547,7 @@ struct ISteamUser_SteamUser020_GetEncryptedAppTicket_params struct ISteamUser_SteamUser020_GetGameBadgeLevel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t nSeries; int8_t bFoil; @@ -46555,74 +46555,74 @@ struct ISteamUser_SteamUser020_GetGameBadgeLevel_params struct ISteamUser_SteamUser020_GetPlayerSteamLevel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamUser_SteamUser020_RequestStoreAuthURL_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchRedirectURL; }; struct ISteamUser_SteamUser020_BIsPhoneVerified_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser020_BIsTwoFactorEnabled_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser020_BIsPhoneIdentifying_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser020_BIsPhoneRequiringVerification_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser020_GetMarketEligibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUser_SteamUser020_GetDurationControl_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUser_SteamUser021_GetHSteamUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamUser_SteamUser021_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser021_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; void *pAuthBlob; int32_t cbMaxAuthBlob; @@ -46634,14 +46634,14 @@ struct ISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED_params struct ISteamUser_SteamUser021_TerminateGameConnection_DEPRECATED_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser021_TrackAppUsageEvent_params { - struct u_iface *u_iface; + struct u_iface u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -46649,7 +46649,7 @@ struct ISteamUser_SteamUser021_TrackAppUsageEvent_params struct ISteamUser_SteamUser021_GetUserDataFolder_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; char *pchBuffer; int32_t cubBuffer; @@ -46657,17 +46657,17 @@ struct ISteamUser_SteamUser021_GetUserDataFolder_params struct ISteamUser_SteamUser021_StartVoiceRecording_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser021_StopVoiceRecording_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser021_GetAvailableVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t *pcbCompressed; uint32_t *pcbUncompressed_Deprecated; @@ -46676,7 +46676,7 @@ struct ISteamUser_SteamUser021_GetAvailableVoice_params struct ISteamUser_SteamUser021_GetVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int8_t bWantCompressed; void *pDestBuffer; @@ -46691,7 +46691,7 @@ struct ISteamUser_SteamUser021_GetVoice_params struct ISteamUser_SteamUser021_DecompressVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const void *pCompressed; uint32_t cbCompressed; @@ -46703,13 +46703,13 @@ struct ISteamUser_SteamUser021_DecompressVoice_params struct ISteamUser_SteamUser021_GetVoiceOptimalSampleRate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUser_SteamUser021_GetAuthSessionTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -46718,7 +46718,7 @@ struct ISteamUser_SteamUser021_GetAuthSessionTicket_params struct ISteamUser_SteamUser021_BeginAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -46727,19 +46727,19 @@ struct ISteamUser_SteamUser021_BeginAuthSession_params struct ISteamUser_SteamUser021_EndAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser021_CancelAuthTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t hAuthTicket; }; struct ISteamUser_SteamUser021_UserHasLicenseForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -46747,13 +46747,13 @@ struct ISteamUser_SteamUser021_UserHasLicenseForApp_params struct ISteamUser_SteamUser021_BIsBehindNAT_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser021_AdvertiseGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; @@ -46761,7 +46761,7 @@ struct ISteamUser_SteamUser021_AdvertiseGame_params struct ISteamUser_SteamUser021_RequestEncryptedAppTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; void *pDataToInclude; int32_t cbDataToInclude; @@ -46769,7 +46769,7 @@ struct ISteamUser_SteamUser021_RequestEncryptedAppTicket_params struct ISteamUser_SteamUser021_GetEncryptedAppTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -46778,7 +46778,7 @@ struct ISteamUser_SteamUser021_GetEncryptedAppTicket_params struct ISteamUser_SteamUser021_GetGameBadgeLevel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t nSeries; int8_t bFoil; @@ -46786,81 +46786,81 @@ struct ISteamUser_SteamUser021_GetGameBadgeLevel_params struct ISteamUser_SteamUser021_GetPlayerSteamLevel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamUser_SteamUser021_RequestStoreAuthURL_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchRedirectURL; }; struct ISteamUser_SteamUser021_BIsPhoneVerified_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser021_BIsTwoFactorEnabled_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser021_BIsPhoneIdentifying_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser021_BIsPhoneRequiringVerification_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser021_GetMarketEligibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUser_SteamUser021_GetDurationControl_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUser_SteamUser021_BSetDurationControlOnlineState_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eNewState; }; struct ISteamUser_SteamUser022_GetHSteamUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamUser_SteamUser022_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser022_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; void *pAuthBlob; int32_t cbMaxAuthBlob; @@ -46872,14 +46872,14 @@ struct ISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED_params struct ISteamUser_SteamUser022_TerminateGameConnection_DEPRECATED_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser022_TrackAppUsageEvent_params { - struct u_iface *u_iface; + struct u_iface u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -46887,7 +46887,7 @@ struct ISteamUser_SteamUser022_TrackAppUsageEvent_params struct ISteamUser_SteamUser022_GetUserDataFolder_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; char *pchBuffer; int32_t cubBuffer; @@ -46895,17 +46895,17 @@ struct ISteamUser_SteamUser022_GetUserDataFolder_params struct ISteamUser_SteamUser022_StartVoiceRecording_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser022_StopVoiceRecording_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser022_GetAvailableVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t *pcbCompressed; uint32_t *pcbUncompressed_Deprecated; @@ -46914,7 +46914,7 @@ struct ISteamUser_SteamUser022_GetAvailableVoice_params struct ISteamUser_SteamUser022_GetVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int8_t bWantCompressed; void *pDestBuffer; @@ -46929,7 +46929,7 @@ struct ISteamUser_SteamUser022_GetVoice_params struct ISteamUser_SteamUser022_DecompressVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const void *pCompressed; uint32_t cbCompressed; @@ -46941,13 +46941,13 @@ struct ISteamUser_SteamUser022_DecompressVoice_params struct ISteamUser_SteamUser022_GetVoiceOptimalSampleRate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUser_SteamUser022_GetAuthSessionTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -46957,7 +46957,7 @@ struct ISteamUser_SteamUser022_GetAuthSessionTicket_params struct ISteamUser_SteamUser022_BeginAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -46966,19 +46966,19 @@ struct ISteamUser_SteamUser022_BeginAuthSession_params struct ISteamUser_SteamUser022_EndAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser022_CancelAuthTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t hAuthTicket; }; struct ISteamUser_SteamUser022_UserHasLicenseForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -46986,13 +46986,13 @@ struct ISteamUser_SteamUser022_UserHasLicenseForApp_params struct ISteamUser_SteamUser022_BIsBehindNAT_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser022_AdvertiseGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; @@ -47000,7 +47000,7 @@ struct ISteamUser_SteamUser022_AdvertiseGame_params struct ISteamUser_SteamUser022_RequestEncryptedAppTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; void *pDataToInclude; int32_t cbDataToInclude; @@ -47008,7 +47008,7 @@ struct ISteamUser_SteamUser022_RequestEncryptedAppTicket_params struct ISteamUser_SteamUser022_GetEncryptedAppTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -47017,7 +47017,7 @@ struct ISteamUser_SteamUser022_GetEncryptedAppTicket_params struct ISteamUser_SteamUser022_GetGameBadgeLevel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t nSeries; int8_t bFoil; @@ -47025,81 +47025,81 @@ struct ISteamUser_SteamUser022_GetGameBadgeLevel_params struct ISteamUser_SteamUser022_GetPlayerSteamLevel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamUser_SteamUser022_RequestStoreAuthURL_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchRedirectURL; }; struct ISteamUser_SteamUser022_BIsPhoneVerified_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser022_BIsTwoFactorEnabled_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser022_BIsPhoneIdentifying_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser022_BIsPhoneRequiringVerification_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser022_GetMarketEligibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUser_SteamUser022_GetDurationControl_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUser_SteamUser022_BSetDurationControlOnlineState_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eNewState; }; struct ISteamUser_SteamUser023_GetHSteamUser_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamUser_SteamUser023_BLoggedOn_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser023_GetSteamID_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; void *pAuthBlob; int32_t cbMaxAuthBlob; @@ -47111,14 +47111,14 @@ struct ISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED_params struct ISteamUser_SteamUser023_TerminateGameConnection_DEPRECATED_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser023_TrackAppUsageEvent_params { - struct u_iface *u_iface; + struct u_iface u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -47126,7 +47126,7 @@ struct ISteamUser_SteamUser023_TrackAppUsageEvent_params struct ISteamUser_SteamUser023_GetUserDataFolder_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; char *pchBuffer; int32_t cubBuffer; @@ -47134,17 +47134,17 @@ struct ISteamUser_SteamUser023_GetUserDataFolder_params struct ISteamUser_SteamUser023_StartVoiceRecording_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser023_StopVoiceRecording_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUser_SteamUser023_GetAvailableVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t *pcbCompressed; uint32_t *pcbUncompressed_Deprecated; @@ -47153,7 +47153,7 @@ struct ISteamUser_SteamUser023_GetAvailableVoice_params struct ISteamUser_SteamUser023_GetVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; int8_t bWantCompressed; void *pDestBuffer; @@ -47168,7 +47168,7 @@ struct ISteamUser_SteamUser023_GetVoice_params struct ISteamUser_SteamUser023_DecompressVoice_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const void *pCompressed; uint32_t cbCompressed; @@ -47180,13 +47180,13 @@ struct ISteamUser_SteamUser023_DecompressVoice_params struct ISteamUser_SteamUser023_GetVoiceOptimalSampleRate_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUser_SteamUser023_GetAuthSessionTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -47196,14 +47196,14 @@ struct ISteamUser_SteamUser023_GetAuthSessionTicket_params struct ISteamUser_SteamUser023_GetAuthTicketForWebApi_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const char *pchIdentity; }; struct ISteamUser_SteamUser023_BeginAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -47212,19 +47212,19 @@ struct ISteamUser_SteamUser023_BeginAuthSession_params struct ISteamUser_SteamUser023_EndAuthSession_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser023_CancelAuthTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t hAuthTicket; }; struct ISteamUser_SteamUser023_UserHasLicenseForApp_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -47232,13 +47232,13 @@ struct ISteamUser_SteamUser023_UserHasLicenseForApp_params struct ISteamUser_SteamUser023_BIsBehindNAT_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser023_AdvertiseGame_params { - struct u_iface *u_iface; + struct u_iface u_iface; CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; @@ -47246,7 +47246,7 @@ struct ISteamUser_SteamUser023_AdvertiseGame_params struct ISteamUser_SteamUser023_RequestEncryptedAppTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; void *pDataToInclude; int32_t cbDataToInclude; @@ -47254,7 +47254,7 @@ struct ISteamUser_SteamUser023_RequestEncryptedAppTicket_params struct ISteamUser_SteamUser023_GetEncryptedAppTicket_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -47263,7 +47263,7 @@ struct ISteamUser_SteamUser023_GetEncryptedAppTicket_params struct ISteamUser_SteamUser023_GetGameBadgeLevel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; int32_t nSeries; int8_t bFoil; @@ -47271,93 +47271,93 @@ struct ISteamUser_SteamUser023_GetGameBadgeLevel_params struct ISteamUser_SteamUser023_GetPlayerSteamLevel_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; }; struct ISteamUser_SteamUser023_RequestStoreAuthURL_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *pchRedirectURL; }; struct ISteamUser_SteamUser023_BIsPhoneVerified_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser023_BIsTwoFactorEnabled_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser023_BIsPhoneIdentifying_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser023_BIsPhoneRequiringVerification_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUser_SteamUser023_GetMarketEligibility_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUser_SteamUser023_GetDurationControl_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; }; struct ISteamUser_SteamUser023_BSetDurationControlOnlineState_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eNewState; }; struct ISteamUtils_SteamUtils002_GetSecondsSinceAppActive_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils002_GetSecondsSinceComputerActive_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils002_GetConnectedUniverse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils002_GetServerRealTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils002_GetIPCountry_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamUtils_SteamUtils002_GetImageSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iImage; uint32_t *pnWidth; @@ -47366,7 +47366,7 @@ struct ISteamUtils_SteamUtils002_GetImageSize_params struct ISteamUtils_SteamUtils002_GetImageRGBA_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iImage; uint8_t *pubDest; @@ -47375,7 +47375,7 @@ struct ISteamUtils_SteamUtils002_GetImageRGBA_params struct ISteamUtils_SteamUtils002_GetCSERIPPort_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t *unIP; uint16_t *usPort; @@ -47383,25 +47383,25 @@ struct ISteamUtils_SteamUtils002_GetCSERIPPort_params struct ISteamUtils_SteamUtils002_GetCurrentBatteryPower_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint8_t _ret; }; struct ISteamUtils_SteamUtils002_GetAppID_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils002_SetOverlayNotificationPosition_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t eNotificationPosition; }; struct ISteamUtils_SteamUtils002_IsAPICallCompleted_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hSteamAPICall; int8_t *pbFailed; @@ -47409,14 +47409,14 @@ struct ISteamUtils_SteamUtils002_IsAPICallCompleted_params struct ISteamUtils_SteamUtils002_GetAPICallFailureReason_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t hSteamAPICall; }; struct ISteamUtils_SteamUtils002_GetAPICallResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hSteamAPICall; void *pCallback; @@ -47427,37 +47427,37 @@ struct ISteamUtils_SteamUtils002_GetAPICallResult_params struct ISteamUtils_SteamUtils004_GetSecondsSinceAppActive_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils004_GetSecondsSinceComputerActive_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils004_GetConnectedUniverse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils004_GetServerRealTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils004_GetIPCountry_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamUtils_SteamUtils004_GetImageSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iImage; uint32_t *pnWidth; @@ -47466,7 +47466,7 @@ struct ISteamUtils_SteamUtils004_GetImageSize_params struct ISteamUtils_SteamUtils004_GetImageRGBA_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iImage; uint8_t *pubDest; @@ -47475,7 +47475,7 @@ struct ISteamUtils_SteamUtils004_GetImageRGBA_params struct ISteamUtils_SteamUtils004_GetCSERIPPort_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t *unIP; uint16_t *usPort; @@ -47483,25 +47483,25 @@ struct ISteamUtils_SteamUtils004_GetCSERIPPort_params struct ISteamUtils_SteamUtils004_GetCurrentBatteryPower_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint8_t _ret; }; struct ISteamUtils_SteamUtils004_GetAppID_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils004_SetOverlayNotificationPosition_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t eNotificationPosition; }; struct ISteamUtils_SteamUtils004_IsAPICallCompleted_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hSteamAPICall; int8_t *pbFailed; @@ -47509,14 +47509,14 @@ struct ISteamUtils_SteamUtils004_IsAPICallCompleted_params struct ISteamUtils_SteamUtils004_GetAPICallFailureReason_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t hSteamAPICall; }; struct ISteamUtils_SteamUtils004_GetAPICallResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hSteamAPICall; void *pCallback; @@ -47527,60 +47527,60 @@ struct ISteamUtils_SteamUtils004_GetAPICallResult_params struct ISteamUtils_SteamUtils004_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUtils_SteamUtils004_GetIPCCallCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils004_SetWarningMessageHook_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamUtils_SteamUtils004_IsOverlayEnabled_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils005_GetSecondsSinceAppActive_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils005_GetSecondsSinceComputerActive_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils005_GetConnectedUniverse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils005_GetServerRealTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils005_GetIPCountry_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamUtils_SteamUtils005_GetImageSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iImage; uint32_t *pnWidth; @@ -47589,7 +47589,7 @@ struct ISteamUtils_SteamUtils005_GetImageSize_params struct ISteamUtils_SteamUtils005_GetImageRGBA_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iImage; uint8_t *pubDest; @@ -47598,7 +47598,7 @@ struct ISteamUtils_SteamUtils005_GetImageRGBA_params struct ISteamUtils_SteamUtils005_GetCSERIPPort_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t *unIP; uint16_t *usPort; @@ -47606,25 +47606,25 @@ struct ISteamUtils_SteamUtils005_GetCSERIPPort_params struct ISteamUtils_SteamUtils005_GetCurrentBatteryPower_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint8_t _ret; }; struct ISteamUtils_SteamUtils005_GetAppID_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils005_SetOverlayNotificationPosition_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t eNotificationPosition; }; struct ISteamUtils_SteamUtils005_IsAPICallCompleted_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hSteamAPICall; int8_t *pbFailed; @@ -47632,14 +47632,14 @@ struct ISteamUtils_SteamUtils005_IsAPICallCompleted_params struct ISteamUtils_SteamUtils005_GetAPICallFailureReason_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t hSteamAPICall; }; struct ISteamUtils_SteamUtils005_GetAPICallResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hSteamAPICall; void *pCallback; @@ -47650,43 +47650,43 @@ struct ISteamUtils_SteamUtils005_GetAPICallResult_params struct ISteamUtils_SteamUtils005_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUtils_SteamUtils005_GetIPCCallCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils005_SetWarningMessageHook_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamUtils_SteamUtils005_IsOverlayEnabled_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils005_BOverlayNeedsPresent_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils005_CheckFileSignature_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *szFileName; }; struct ISteamUtils_SteamUtils005_ShowGamepadTextInput_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eInputMode; uint32_t eLineInputMode; @@ -47696,13 +47696,13 @@ struct ISteamUtils_SteamUtils005_ShowGamepadTextInput_params struct ISteamUtils_SteamUtils005_GetEnteredGamepadTextLength_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils005_GetEnteredGamepadTextInput_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; char *pchText; uint32_t cchText; @@ -47710,37 +47710,37 @@ struct ISteamUtils_SteamUtils005_GetEnteredGamepadTextInput_params struct ISteamUtils_SteamUtils006_GetSecondsSinceAppActive_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils006_GetSecondsSinceComputerActive_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils006_GetConnectedUniverse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils006_GetServerRealTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils006_GetIPCountry_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamUtils_SteamUtils006_GetImageSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iImage; uint32_t *pnWidth; @@ -47749,7 +47749,7 @@ struct ISteamUtils_SteamUtils006_GetImageSize_params struct ISteamUtils_SteamUtils006_GetImageRGBA_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iImage; uint8_t *pubDest; @@ -47758,7 +47758,7 @@ struct ISteamUtils_SteamUtils006_GetImageRGBA_params struct ISteamUtils_SteamUtils006_GetCSERIPPort_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t *unIP; uint16_t *usPort; @@ -47766,25 +47766,25 @@ struct ISteamUtils_SteamUtils006_GetCSERIPPort_params struct ISteamUtils_SteamUtils006_GetCurrentBatteryPower_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint8_t _ret; }; struct ISteamUtils_SteamUtils006_GetAppID_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils006_SetOverlayNotificationPosition_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t eNotificationPosition; }; struct ISteamUtils_SteamUtils006_IsAPICallCompleted_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hSteamAPICall; int8_t *pbFailed; @@ -47792,14 +47792,14 @@ struct ISteamUtils_SteamUtils006_IsAPICallCompleted_params struct ISteamUtils_SteamUtils006_GetAPICallFailureReason_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t hSteamAPICall; }; struct ISteamUtils_SteamUtils006_GetAPICallResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hSteamAPICall; void *pCallback; @@ -47810,43 +47810,43 @@ struct ISteamUtils_SteamUtils006_GetAPICallResult_params struct ISteamUtils_SteamUtils006_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUtils_SteamUtils006_GetIPCCallCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils006_SetWarningMessageHook_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamUtils_SteamUtils006_IsOverlayEnabled_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils006_BOverlayNeedsPresent_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils006_CheckFileSignature_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *szFileName; }; struct ISteamUtils_SteamUtils006_ShowGamepadTextInput_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eInputMode; uint32_t eLineInputMode; @@ -47856,13 +47856,13 @@ struct ISteamUtils_SteamUtils006_ShowGamepadTextInput_params struct ISteamUtils_SteamUtils006_GetEnteredGamepadTextLength_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils006_GetEnteredGamepadTextInput_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; char *pchText; uint32_t cchText; @@ -47870,49 +47870,49 @@ struct ISteamUtils_SteamUtils006_GetEnteredGamepadTextInput_params struct ISteamUtils_SteamUtils006_GetSteamUILanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamUtils_SteamUtils006_IsSteamRunningInVR_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils007_GetSecondsSinceAppActive_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils007_GetSecondsSinceComputerActive_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils007_GetConnectedUniverse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils007_GetServerRealTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils007_GetIPCountry_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamUtils_SteamUtils007_GetImageSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iImage; uint32_t *pnWidth; @@ -47921,7 +47921,7 @@ struct ISteamUtils_SteamUtils007_GetImageSize_params struct ISteamUtils_SteamUtils007_GetImageRGBA_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iImage; uint8_t *pubDest; @@ -47930,7 +47930,7 @@ struct ISteamUtils_SteamUtils007_GetImageRGBA_params struct ISteamUtils_SteamUtils007_GetCSERIPPort_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t *unIP; uint16_t *usPort; @@ -47938,25 +47938,25 @@ struct ISteamUtils_SteamUtils007_GetCSERIPPort_params struct ISteamUtils_SteamUtils007_GetCurrentBatteryPower_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint8_t _ret; }; struct ISteamUtils_SteamUtils007_GetAppID_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils007_SetOverlayNotificationPosition_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t eNotificationPosition; }; struct ISteamUtils_SteamUtils007_IsAPICallCompleted_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hSteamAPICall; int8_t *pbFailed; @@ -47964,14 +47964,14 @@ struct ISteamUtils_SteamUtils007_IsAPICallCompleted_params struct ISteamUtils_SteamUtils007_GetAPICallFailureReason_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t hSteamAPICall; }; struct ISteamUtils_SteamUtils007_GetAPICallResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hSteamAPICall; void *pCallback; @@ -47982,43 +47982,43 @@ struct ISteamUtils_SteamUtils007_GetAPICallResult_params struct ISteamUtils_SteamUtils007_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUtils_SteamUtils007_GetIPCCallCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils007_SetWarningMessageHook_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamUtils_SteamUtils007_IsOverlayEnabled_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils007_BOverlayNeedsPresent_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils007_CheckFileSignature_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *szFileName; }; struct ISteamUtils_SteamUtils007_ShowGamepadTextInput_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eInputMode; uint32_t eLineInputMode; @@ -48029,13 +48029,13 @@ struct ISteamUtils_SteamUtils007_ShowGamepadTextInput_params struct ISteamUtils_SteamUtils007_GetEnteredGamepadTextLength_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils007_GetEnteredGamepadTextInput_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; char *pchText; uint32_t cchText; @@ -48043,56 +48043,56 @@ struct ISteamUtils_SteamUtils007_GetEnteredGamepadTextInput_params struct ISteamUtils_SteamUtils007_GetSteamUILanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamUtils_SteamUtils007_IsSteamRunningInVR_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils007_SetOverlayNotificationInset_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t nHorizontalInset; int32_t nVerticalInset; }; struct ISteamUtils_SteamUtils008_GetSecondsSinceAppActive_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils008_GetSecondsSinceComputerActive_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils008_GetConnectedUniverse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils008_GetServerRealTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils008_GetIPCountry_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamUtils_SteamUtils008_GetImageSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iImage; uint32_t *pnWidth; @@ -48101,7 +48101,7 @@ struct ISteamUtils_SteamUtils008_GetImageSize_params struct ISteamUtils_SteamUtils008_GetImageRGBA_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iImage; uint8_t *pubDest; @@ -48110,7 +48110,7 @@ struct ISteamUtils_SteamUtils008_GetImageRGBA_params struct ISteamUtils_SteamUtils008_GetCSERIPPort_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t *unIP; uint16_t *usPort; @@ -48118,25 +48118,25 @@ struct ISteamUtils_SteamUtils008_GetCSERIPPort_params struct ISteamUtils_SteamUtils008_GetCurrentBatteryPower_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint8_t _ret; }; struct ISteamUtils_SteamUtils008_GetAppID_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils008_SetOverlayNotificationPosition_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t eNotificationPosition; }; struct ISteamUtils_SteamUtils008_IsAPICallCompleted_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hSteamAPICall; int8_t *pbFailed; @@ -48144,14 +48144,14 @@ struct ISteamUtils_SteamUtils008_IsAPICallCompleted_params struct ISteamUtils_SteamUtils008_GetAPICallFailureReason_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t hSteamAPICall; }; struct ISteamUtils_SteamUtils008_GetAPICallResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hSteamAPICall; void *pCallback; @@ -48162,43 +48162,43 @@ struct ISteamUtils_SteamUtils008_GetAPICallResult_params struct ISteamUtils_SteamUtils008_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUtils_SteamUtils008_GetIPCCallCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils008_SetWarningMessageHook_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamUtils_SteamUtils008_IsOverlayEnabled_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils008_BOverlayNeedsPresent_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils008_CheckFileSignature_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *szFileName; }; struct ISteamUtils_SteamUtils008_ShowGamepadTextInput_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eInputMode; uint32_t eLineInputMode; @@ -48209,13 +48209,13 @@ struct ISteamUtils_SteamUtils008_ShowGamepadTextInput_params struct ISteamUtils_SteamUtils008_GetEnteredGamepadTextLength_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils008_GetEnteredGamepadTextInput_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; char *pchText; uint32_t cchText; @@ -48223,67 +48223,67 @@ struct ISteamUtils_SteamUtils008_GetEnteredGamepadTextInput_params struct ISteamUtils_SteamUtils008_GetSteamUILanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamUtils_SteamUtils008_IsSteamRunningInVR_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils008_SetOverlayNotificationInset_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t nHorizontalInset; int32_t nVerticalInset; }; struct ISteamUtils_SteamUtils008_IsSteamInBigPictureMode_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils008_StartVRDashboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUtils_SteamUtils009_GetSecondsSinceAppActive_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils009_GetSecondsSinceComputerActive_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils009_GetConnectedUniverse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils009_GetServerRealTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils009_GetIPCountry_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamUtils_SteamUtils009_GetImageSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iImage; uint32_t *pnWidth; @@ -48292,7 +48292,7 @@ struct ISteamUtils_SteamUtils009_GetImageSize_params struct ISteamUtils_SteamUtils009_GetImageRGBA_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iImage; uint8_t *pubDest; @@ -48301,7 +48301,7 @@ struct ISteamUtils_SteamUtils009_GetImageRGBA_params struct ISteamUtils_SteamUtils009_GetCSERIPPort_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t *unIP; uint16_t *usPort; @@ -48309,25 +48309,25 @@ struct ISteamUtils_SteamUtils009_GetCSERIPPort_params struct ISteamUtils_SteamUtils009_GetCurrentBatteryPower_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint8_t _ret; }; struct ISteamUtils_SteamUtils009_GetAppID_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils009_SetOverlayNotificationPosition_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t eNotificationPosition; }; struct ISteamUtils_SteamUtils009_IsAPICallCompleted_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hSteamAPICall; int8_t *pbFailed; @@ -48335,14 +48335,14 @@ struct ISteamUtils_SteamUtils009_IsAPICallCompleted_params struct ISteamUtils_SteamUtils009_GetAPICallFailureReason_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t hSteamAPICall; }; struct ISteamUtils_SteamUtils009_GetAPICallResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hSteamAPICall; void *pCallback; @@ -48353,43 +48353,43 @@ struct ISteamUtils_SteamUtils009_GetAPICallResult_params struct ISteamUtils_SteamUtils009_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUtils_SteamUtils009_GetIPCCallCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils009_SetWarningMessageHook_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamUtils_SteamUtils009_IsOverlayEnabled_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils009_BOverlayNeedsPresent_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils009_CheckFileSignature_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *szFileName; }; struct ISteamUtils_SteamUtils009_ShowGamepadTextInput_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eInputMode; uint32_t eLineInputMode; @@ -48400,13 +48400,13 @@ struct ISteamUtils_SteamUtils009_ShowGamepadTextInput_params struct ISteamUtils_SteamUtils009_GetEnteredGamepadTextLength_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils009_GetEnteredGamepadTextInput_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; char *pchText; uint32_t cchText; @@ -48414,61 +48414,61 @@ struct ISteamUtils_SteamUtils009_GetEnteredGamepadTextInput_params struct ISteamUtils_SteamUtils009_GetSteamUILanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamUtils_SteamUtils009_IsSteamRunningInVR_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils009_SetOverlayNotificationInset_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t nHorizontalInset; int32_t nVerticalInset; }; struct ISteamUtils_SteamUtils009_IsSteamInBigPictureMode_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils009_StartVRDashboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUtils_SteamUtils009_IsVRHeadsetStreamingEnabled_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bEnabled; }; struct ISteamUtils_SteamUtils009_IsSteamChinaLauncher_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils009_InitFilterText_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils009_FilterText_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; char *pchOutFilteredText; uint32_t nByteSizeOutFilteredText; @@ -48478,44 +48478,44 @@ struct ISteamUtils_SteamUtils009_FilterText_params struct ISteamUtils_SteamUtils009_GetIPv6ConnectivityState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t eProtocol; }; struct ISteamUtils_SteamUtils010_GetSecondsSinceAppActive_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils010_GetSecondsSinceComputerActive_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils010_GetConnectedUniverse_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils010_GetServerRealTime_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils010_GetIPCountry_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamUtils_SteamUtils010_GetImageSize_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iImage; uint32_t *pnWidth; @@ -48524,7 +48524,7 @@ struct ISteamUtils_SteamUtils010_GetImageSize_params struct ISteamUtils_SteamUtils010_GetImageRGBA_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; int32_t iImage; uint8_t *pubDest; @@ -48533,7 +48533,7 @@ struct ISteamUtils_SteamUtils010_GetImageRGBA_params struct ISteamUtils_SteamUtils010_GetCSERIPPort_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t *unIP; uint16_t *usPort; @@ -48541,25 +48541,25 @@ struct ISteamUtils_SteamUtils010_GetCSERIPPort_params struct ISteamUtils_SteamUtils010_GetCurrentBatteryPower_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint8_t _ret; }; struct ISteamUtils_SteamUtils010_GetAppID_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils010_SetOverlayNotificationPosition_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t eNotificationPosition; }; struct ISteamUtils_SteamUtils010_IsAPICallCompleted_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hSteamAPICall; int8_t *pbFailed; @@ -48567,14 +48567,14 @@ struct ISteamUtils_SteamUtils010_IsAPICallCompleted_params struct ISteamUtils_SteamUtils010_GetAPICallFailureReason_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint64_t hSteamAPICall; }; struct ISteamUtils_SteamUtils010_GetAPICallResult_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint64_t hSteamAPICall; void *pCallback; @@ -48585,43 +48585,43 @@ struct ISteamUtils_SteamUtils010_GetAPICallResult_params struct ISteamUtils_SteamUtils010_RunFrame_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUtils_SteamUtils010_GetIPCCallCount_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils010_SetWarningMessageHook_params { - struct u_iface *u_iface; + struct u_iface u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamUtils_SteamUtils010_IsOverlayEnabled_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils010_BOverlayNeedsPresent_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils010_CheckFileSignature_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint64_t _ret; const char *szFileName; }; struct ISteamUtils_SteamUtils010_ShowGamepadTextInput_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eInputMode; uint32_t eLineInputMode; @@ -48632,13 +48632,13 @@ struct ISteamUtils_SteamUtils010_ShowGamepadTextInput_params struct ISteamUtils_SteamUtils010_GetEnteredGamepadTextLength_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils010_GetEnteredGamepadTextInput_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; char *pchText; uint32_t cchText; @@ -48646,62 +48646,62 @@ struct ISteamUtils_SteamUtils010_GetEnteredGamepadTextInput_params struct ISteamUtils_SteamUtils010_GetSteamUILanguage_params { - struct u_iface *u_iface; + struct u_iface u_iface; const char *_ret; }; struct ISteamUtils_SteamUtils010_IsSteamRunningInVR_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils010_SetOverlayNotificationInset_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t nHorizontalInset; int32_t nVerticalInset; }; struct ISteamUtils_SteamUtils010_IsSteamInBigPictureMode_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils010_StartVRDashboard_params { - struct u_iface *u_iface; + struct u_iface u_iface; }; struct ISteamUtils_SteamUtils010_IsVRHeadsetStreamingEnabled_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils010_SetVRHeadsetStreamingEnabled_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bEnabled; }; struct ISteamUtils_SteamUtils010_IsSteamChinaLauncher_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils010_InitFilterText_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t unFilterOptions; }; struct ISteamUtils_SteamUtils010_FilterText_params { - struct u_iface *u_iface; + struct u_iface u_iface; int32_t _ret; uint32_t eContext; CSteamID sourceSteamID; @@ -48712,20 +48712,20 @@ struct ISteamUtils_SteamUtils010_FilterText_params struct ISteamUtils_SteamUtils010_GetIPv6ConnectivityState_params { - struct u_iface *u_iface; + struct u_iface u_iface; uint32_t _ret; uint32_t eProtocol; }; struct ISteamUtils_SteamUtils010_IsSteamRunningOnSteamDeck_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; uint32_t eKeyboardMode; int32_t nTextFieldXPosition; @@ -48736,19 +48736,19 @@ struct ISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput_params struct ISteamUtils_SteamUtils010_SetGameLauncherMode_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t bLauncherMode; }; struct ISteamUtils_SteamUtils010_DismissFloatingGamepadTextInput_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils010_DismissGamepadTextInput_params { - struct u_iface *u_iface; + struct u_iface u_iface; int8_t _ret; }; diff --git a/lsteamclient/winISteamAppList.c b/lsteamclient/winISteamAppList.c index 365868cf..4a134b45 100644 --- a/lsteamclient/winISteamAppList.c +++ b/lsteamclient/winISteamAppList.c @@ -87,7 +87,7 @@ __ASM_BLOCK_BEGIN(winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001( struct u_iface *u_iface ) +struct w_iface *create_winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMAPPLIST_INTERFACE_VERSION001"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamAppTicket.c b/lsteamclient/winISteamAppTicket.c index 28ebe4d8..83b20e25 100644 --- a/lsteamclient/winISteamAppTicket.c +++ b/lsteamclient/winISteamAppTicket.c @@ -33,7 +33,7 @@ __ASM_BLOCK_BEGIN(winISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001_vtables ); __ASM_BLOCK_END -struct w_iface *create_winISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001( struct u_iface *u_iface ) +struct w_iface *create_winISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMAPPTICKET_INTERFACE_VERSION001"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamApps.c b/lsteamclient/winISteamApps.c index a3091de1..2ec2ec83 100644 --- a/lsteamclient/winISteamApps.c +++ b/lsteamclient/winISteamApps.c @@ -31,7 +31,7 @@ __ASM_BLOCK_BEGIN(winISteamApps_STEAMAPPS_INTERFACE_VERSION001_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION001( struct u_iface *u_iface ) +struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION001( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMAPPS_INTERFACE_VERSION001"); TRACE("-> %p\n", r); @@ -142,7 +142,7 @@ __ASM_BLOCK_BEGIN(winISteamApps_STEAMAPPS_INTERFACE_VERSION002_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION002( struct u_iface *u_iface ) +struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION002( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMAPPS_INTERFACE_VERSION002"); TRACE("-> %p\n", r); @@ -267,7 +267,7 @@ __ASM_BLOCK_BEGIN(winISteamApps_STEAMAPPS_INTERFACE_VERSION003_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION003( struct u_iface *u_iface ) +struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION003( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMAPPS_INTERFACE_VERSION003"); TRACE("-> %p\n", r); @@ -476,7 +476,7 @@ __ASM_BLOCK_BEGIN(winISteamApps_STEAMAPPS_INTERFACE_VERSION004_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION004( struct u_iface *u_iface ) +struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION004( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMAPPS_INTERFACE_VERSION004"); TRACE("-> %p\n", r); @@ -772,7 +772,7 @@ __ASM_BLOCK_BEGIN(winISteamApps_STEAMAPPS_INTERFACE_VERSION005_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION005( struct u_iface *u_iface ) +struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION005( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMAPPS_INTERFACE_VERSION005"); TRACE("-> %p\n", r); @@ -1098,7 +1098,7 @@ __ASM_BLOCK_BEGIN(winISteamApps_STEAMAPPS_INTERFACE_VERSION006_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION006( struct u_iface *u_iface ) +struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION006( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMAPPS_INTERFACE_VERSION006"); TRACE("-> %p\n", r); @@ -1453,7 +1453,7 @@ __ASM_BLOCK_BEGIN(winISteamApps_STEAMAPPS_INTERFACE_VERSION007_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION007( struct u_iface *u_iface ) +struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION007( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMAPPS_INTERFACE_VERSION007"); TRACE("-> %p\n", r); @@ -1942,7 +1942,7 @@ __ASM_BLOCK_BEGIN(winISteamApps_STEAMAPPS_INTERFACE_VERSION008_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION008( struct u_iface *u_iface ) +struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION008( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMAPPS_INTERFACE_VERSION008"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamClient.c b/lsteamclient/winISteamClient.c index a58af75d..ceceb1e9 100644 --- a/lsteamclient/winISteamClient.c +++ b/lsteamclient/winISteamClient.c @@ -108,8 +108,7 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient006_GetISteamUser(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient006_GetISteamUser, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void * __thiscall winISteamClient_SteamClient006_GetIVAC(struct w_iface *_this, int32_t hSteamUser) @@ -136,8 +135,7 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient006_GetISteamG TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient006_GetISteamGameServer, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient006_SetLocalIPBinding(struct w_iface *_this, uint32_t unIP, uint16_t usPort) @@ -176,8 +174,7 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient006_GetISteamFrie TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient006_GetISteamFriends, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient006_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) @@ -191,8 +188,7 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient006_GetISteamUtils( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient006_GetISteamUtils, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void * __thiscall winISteamClient_SteamClient006_GetISteamBilling(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -207,8 +203,7 @@ void * __thiscall winISteamClient_SteamClient006_GetISteamBilling(struct w_iface TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient006_GetISteamBilling, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient006_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -223,8 +218,7 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient006_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient006_GetISteamMatchmaking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient006_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -239,8 +233,7 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient006_GetISteamApps(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient006_GetISteamApps, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamContentServer*/ * __thiscall winISteamClient_SteamClient006_GetISteamContentServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -255,8 +248,7 @@ void /*ISteamContentServer*/ * __thiscall winISteamClient_SteamClient006_GetISte TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient006_GetISteamContentServer, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient006_GetISteamMasterServerUpdater(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -271,8 +263,7 @@ void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient006_G TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient006_GetISteamMasterServerUpdater, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient006_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -287,8 +278,7 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient006_Ge TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient006_GetISteamMatchmakingServers, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient006_RunFrame(struct w_iface *_this) @@ -342,7 +332,7 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient006_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamClient_SteamClient006( struct u_iface *u_iface ) +struct w_iface *create_winISteamClient_SteamClient006( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient006"); TRACE("-> %p\n", r); @@ -445,8 +435,7 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient007_GetISteamUser(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient007_GetISteamUser, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient007_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -461,8 +450,7 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient007_GetISteamG TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient007_GetISteamGameServer, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient007_SetLocalIPBinding(struct w_iface *_this, uint32_t unIP, uint16_t usPort) @@ -489,8 +477,7 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient007_GetISteamFrie TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient007_GetISteamFriends, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient007_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) @@ -504,8 +491,7 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient007_GetISteamUtils( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient007_GetISteamUtils, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient007_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -520,8 +506,7 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient007_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient007_GetISteamMatchmaking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamContentServer*/ * __thiscall winISteamClient_SteamClient007_GetISteamContentServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -536,8 +521,7 @@ void /*ISteamContentServer*/ * __thiscall winISteamClient_SteamClient007_GetISte TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient007_GetISteamContentServer, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient007_GetISteamMasterServerUpdater(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -552,8 +536,7 @@ void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient007_G TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient007_GetISteamMasterServerUpdater, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient007_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -568,8 +551,7 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient007_Ge TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient007_GetISteamMatchmakingServers, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void * __thiscall winISteamClient_SteamClient007_GetISteamGenericInterface(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -584,8 +566,7 @@ void * __thiscall winISteamClient_SteamClient007_GetISteamGenericInterface(struc TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient007_GetISteamGenericInterface, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient007_RunFrame(struct w_iface *_this) @@ -621,8 +602,7 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient007_GetISteamUs TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient007_GetISteamUserStats, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient007_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -637,8 +617,7 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient007_GetISteamApps(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient007_GetISteamApps, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient007_GetISteamNetworking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -653,8 +632,7 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient007_GetISteamN TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient007_GetISteamNetworking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient007_SetWarningMessageHook(struct w_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) @@ -680,8 +658,7 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient007_GetISte TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient007_GetISteamRemoteStorage, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } extern vtable_ptr winISteamClient_SteamClient007_vtable; @@ -715,7 +692,7 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient007_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamClient_SteamClient007( struct u_iface *u_iface ) +struct w_iface *create_winISteamClient_SteamClient007( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient007"); TRACE("-> %p\n", r); @@ -818,8 +795,7 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient008_GetISteamUser(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient008_GetISteamUser, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient008_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -834,8 +810,7 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient008_GetISteamG TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient008_GetISteamGameServer, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient008_SetLocalIPBinding(struct w_iface *_this, uint32_t unIP, uint16_t usPort) @@ -862,8 +837,7 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient008_GetISteamFrie TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient008_GetISteamFriends, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient008_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) @@ -877,8 +851,7 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient008_GetISteamUtils( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient008_GetISteamUtils, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient008_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -893,8 +866,7 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient008_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient008_GetISteamMatchmaking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient008_GetISteamMasterServerUpdater(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -909,8 +881,7 @@ void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient008_G TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient008_GetISteamMasterServerUpdater, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient008_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -925,8 +896,7 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient008_Ge TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient008_GetISteamMatchmakingServers, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void * __thiscall winISteamClient_SteamClient008_GetISteamGenericInterface(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -941,8 +911,7 @@ void * __thiscall winISteamClient_SteamClient008_GetISteamGenericInterface(struc TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient008_GetISteamGenericInterface, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient008_GetISteamUserStats(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -957,8 +926,7 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient008_GetISteamUs TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient008_GetISteamUserStats, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient008_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -973,8 +941,7 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient008_GetISteamApps(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient008_GetISteamApps, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient008_GetISteamNetworking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -989,8 +956,7 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient008_GetISteamN TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient008_GetISteamNetworking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient008_GetISteamRemoteStorage(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -1005,8 +971,7 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient008_GetISte TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient008_GetISteamRemoteStorage, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient008_RunFrame(struct w_iface *_this) @@ -1071,7 +1036,7 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient008_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamClient_SteamClient008( struct u_iface *u_iface ) +struct w_iface *create_winISteamClient_SteamClient008( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient008"); TRACE("-> %p\n", r); @@ -1175,8 +1140,7 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient009_GetISteamUser(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient009_GetISteamUser, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient009_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -1191,8 +1155,7 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient009_GetISteamG TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient009_GetISteamGameServer, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient009_SetLocalIPBinding(struct w_iface *_this, uint32_t unIP, uint16_t usPort) @@ -1219,8 +1182,7 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient009_GetISteamFrie TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient009_GetISteamFriends, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient009_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) @@ -1234,8 +1196,7 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient009_GetISteamUtils( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient009_GetISteamUtils, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient009_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -1250,8 +1211,7 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient009_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient009_GetISteamMatchmaking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient009_GetISteamMasterServerUpdater(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -1266,8 +1226,7 @@ void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient009_G TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient009_GetISteamMasterServerUpdater, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient009_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -1282,8 +1241,7 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient009_Ge TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient009_GetISteamMatchmakingServers, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void * __thiscall winISteamClient_SteamClient009_GetISteamGenericInterface(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -1298,8 +1256,7 @@ void * __thiscall winISteamClient_SteamClient009_GetISteamGenericInterface(struc TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient009_GetISteamGenericInterface, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient009_GetISteamUserStats(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -1314,8 +1271,7 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient009_GetISteamUs TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient009_GetISteamUserStats, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient009_GetISteamGameServerStats(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -1330,8 +1286,7 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient009_GetIS TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient009_GetISteamGameServerStats, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient009_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -1346,8 +1301,7 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient009_GetISteamApps(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient009_GetISteamApps, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient009_GetISteamNetworking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -1362,8 +1316,7 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient009_GetISteamN TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient009_GetISteamNetworking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient009_GetISteamRemoteStorage(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -1378,8 +1331,7 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient009_GetISte TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient009_GetISteamRemoteStorage, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient009_RunFrame(struct w_iface *_this) @@ -1445,7 +1397,7 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient009_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamClient_SteamClient009( struct u_iface *u_iface ) +struct w_iface *create_winISteamClient_SteamClient009( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient009"); TRACE("-> %p\n", r); @@ -1551,8 +1503,7 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient010_GetISteamUser(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient010_GetISteamUser, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient010_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -1567,8 +1518,7 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient010_GetISteamG TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient010_GetISteamGameServer, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient010_SetLocalIPBinding(struct w_iface *_this, uint32_t unIP, uint16_t usPort) @@ -1595,8 +1545,7 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient010_GetISteamFrie TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient010_GetISteamFriends, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient010_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) @@ -1610,8 +1559,7 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient010_GetISteamUtils( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient010_GetISteamUtils, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient010_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -1626,8 +1574,7 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient010_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient010_GetISteamMatchmaking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient010_GetISteamMasterServerUpdater(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -1642,8 +1589,7 @@ void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient010_G TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient010_GetISteamMasterServerUpdater, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient010_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -1658,8 +1604,7 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient010_Ge TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient010_GetISteamMatchmakingServers, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void * __thiscall winISteamClient_SteamClient010_GetISteamGenericInterface(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -1674,8 +1619,7 @@ void * __thiscall winISteamClient_SteamClient010_GetISteamGenericInterface(struc TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient010_GetISteamGenericInterface, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient010_GetISteamUserStats(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -1690,8 +1634,7 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient010_GetISteamUs TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient010_GetISteamUserStats, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient010_GetISteamGameServerStats(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -1706,8 +1649,7 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient010_GetIS TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient010_GetISteamGameServerStats, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient010_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -1722,8 +1664,7 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient010_GetISteamApps(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient010_GetISteamApps, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient010_GetISteamNetworking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -1738,8 +1679,7 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient010_GetISteamN TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient010_GetISteamNetworking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient010_GetISteamRemoteStorage(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -1754,8 +1694,7 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient010_GetISte TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient010_GetISteamRemoteStorage, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient010_RunFrame(struct w_iface *_this) @@ -1813,8 +1752,7 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient010_GetISteamHTTP(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient010_GetISteamHTTP, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } extern vtable_ptr winISteamClient_SteamClient010_vtable; @@ -1850,7 +1788,7 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient010_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamClient_SteamClient010( struct u_iface *u_iface ) +struct w_iface *create_winISteamClient_SteamClient010( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient010"); TRACE("-> %p\n", r); @@ -1957,8 +1895,7 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient011_GetISteamUser(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetISteamUser, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient011_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -1973,8 +1910,7 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient011_GetISteamG TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetISteamGameServer, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient011_SetLocalIPBinding(struct w_iface *_this, uint32_t unIP, uint16_t usPort) @@ -2001,8 +1937,7 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient011_GetISteamFrie TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetISteamFriends, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient011_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) @@ -2016,8 +1951,7 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient011_GetISteamUtils( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetISteamUtils, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient011_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -2032,8 +1966,7 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient011_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetISteamMatchmaking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient011_GetISteamMasterServerUpdater(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -2048,8 +1981,7 @@ void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient011_G TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetISteamMasterServerUpdater, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient011_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -2064,8 +1996,7 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient011_Ge TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetISteamMatchmakingServers, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void * __thiscall winISteamClient_SteamClient011_GetISteamGenericInterface(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -2080,8 +2011,7 @@ void * __thiscall winISteamClient_SteamClient011_GetISteamGenericInterface(struc TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetISteamGenericInterface, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient011_GetISteamUserStats(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -2096,8 +2026,7 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient011_GetISteamUs TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetISteamUserStats, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient011_GetISteamGameServerStats(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -2112,8 +2041,7 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient011_GetIS TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetISteamGameServerStats, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient011_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -2128,8 +2056,7 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient011_GetISteamApps(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetISteamApps, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient011_GetISteamNetworking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -2144,8 +2071,7 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient011_GetISteamN TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetISteamNetworking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient011_GetISteamRemoteStorage(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -2160,8 +2086,7 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient011_GetISte TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetISteamRemoteStorage, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient011_GetISteamScreenshots(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -2176,8 +2101,7 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient011_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetISteamScreenshots, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient011_RunFrame(struct w_iface *_this) @@ -2235,8 +2159,7 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient011_GetISteamHTTP(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetISteamHTTP, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } extern vtable_ptr winISteamClient_SteamClient011_vtable; @@ -2273,7 +2196,7 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient011_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamClient_SteamClient011( struct u_iface *u_iface ) +struct w_iface *create_winISteamClient_SteamClient011( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient011"); TRACE("-> %p\n", r); @@ -2382,8 +2305,7 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient012_GetISteamUser(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamUser, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient012_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -2398,8 +2320,7 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient012_GetISteamG TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamGameServer, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient012_SetLocalIPBinding(struct w_iface *_this, uint32_t unIP, uint16_t usPort) @@ -2426,8 +2347,7 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient012_GetISteamFrie TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamFriends, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient012_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) @@ -2441,8 +2361,7 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient012_GetISteamUtils( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamUtils, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient012_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -2457,8 +2376,7 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient012_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamMatchmaking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient012_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -2473,8 +2391,7 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient012_Ge TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamMatchmakingServers, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void * __thiscall winISteamClient_SteamClient012_GetISteamGenericInterface(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -2489,8 +2406,7 @@ void * __thiscall winISteamClient_SteamClient012_GetISteamGenericInterface(struc TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamGenericInterface, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient012_GetISteamUserStats(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -2505,8 +2421,7 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient012_GetISteamUs TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamUserStats, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient012_GetISteamGameServerStats(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -2521,8 +2436,7 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient012_GetIS TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamGameServerStats, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient012_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -2537,8 +2451,7 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient012_GetISteamApps(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamApps, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient012_GetISteamNetworking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -2553,8 +2466,7 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient012_GetISteamN TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamNetworking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient012_GetISteamRemoteStorage(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -2569,8 +2481,7 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient012_GetISte TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamRemoteStorage, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient012_GetISteamScreenshots(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -2585,8 +2496,7 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient012_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamScreenshots, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient012_RunFrame(struct w_iface *_this) @@ -2644,8 +2554,7 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient012_GetISteamHTTP(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamHTTP, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient012_GetISteamUnifiedMessages(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -2660,8 +2569,7 @@ void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient012_GetIS TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamUnifiedMessages, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamController*/ * __thiscall winISteamClient_SteamClient012_GetISteamController(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -2676,8 +2584,7 @@ void /*ISteamController*/ * __thiscall winISteamClient_SteamClient012_GetISteamC TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamController, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient012_GetISteamUGC(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -2692,8 +2599,7 @@ void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient012_GetISteamUGC(stru TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetISteamUGC, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } extern vtable_ptr winISteamClient_SteamClient012_vtable; @@ -2732,7 +2638,7 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient012_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamClient_SteamClient012( struct u_iface *u_iface ) +struct w_iface *create_winISteamClient_SteamClient012( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient012"); TRACE("-> %p\n", r); @@ -2844,8 +2750,7 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient013_GetISteamUser(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamUser, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient013_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -2860,8 +2765,7 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient013_GetISteamG TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamGameServer, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient013_SetLocalIPBinding(struct w_iface *_this, uint32_t unIP, uint16_t usPort) @@ -2888,8 +2792,7 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient013_GetISteamFrie TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamFriends, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient013_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) @@ -2903,8 +2806,7 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient013_GetISteamUtils( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamUtils, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient013_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -2919,8 +2821,7 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient013_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamMatchmaking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient013_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -2935,8 +2836,7 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient013_Ge TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamMatchmakingServers, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void * __thiscall winISteamClient_SteamClient013_GetISteamGenericInterface(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -2951,8 +2851,7 @@ void * __thiscall winISteamClient_SteamClient013_GetISteamGenericInterface(struc TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamGenericInterface, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient013_GetISteamUserStats(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -2967,8 +2866,7 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient013_GetISteamUs TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamUserStats, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient013_GetISteamGameServerStats(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -2983,8 +2881,7 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient013_GetIS TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamGameServerStats, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient013_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -2999,8 +2896,7 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient013_GetISteamApps(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamApps, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient013_GetISteamNetworking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -3015,8 +2911,7 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient013_GetISteamN TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamNetworking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient013_GetISteamRemoteStorage(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -3031,8 +2926,7 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient013_GetISte TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamRemoteStorage, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient013_GetISteamScreenshots(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -3047,8 +2941,7 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient013_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamScreenshots, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient013_RunFrame(struct w_iface *_this) @@ -3106,8 +2999,7 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient013_GetISteamHTTP(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamHTTP, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient013_GetISteamUnifiedMessages(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -3122,8 +3014,7 @@ void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient013_GetIS TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamUnifiedMessages, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamController*/ * __thiscall winISteamClient_SteamClient013_GetISteamController(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -3138,8 +3029,7 @@ void /*ISteamController*/ * __thiscall winISteamClient_SteamClient013_GetISteamC TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamController, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient013_GetISteamUGC(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -3154,8 +3044,7 @@ void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient013_GetISteamUGC(stru TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamUGC, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void * __thiscall winISteamClient_SteamClient013_GetISteamInventory(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -3170,8 +3059,7 @@ void * __thiscall winISteamClient_SteamClient013_GetISteamInventory(struct w_ifa TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamInventory, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void * __thiscall winISteamClient_SteamClient013_GetISteamVideo(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -3186,8 +3074,7 @@ void * __thiscall winISteamClient_SteamClient013_GetISteamVideo(struct w_iface * TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamVideo, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient013_GetISteamAppList(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -3202,8 +3089,7 @@ void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient013_GetISteamAppL TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamAppList, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } extern vtable_ptr winISteamClient_SteamClient013_vtable; @@ -3245,7 +3131,7 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient013_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamClient_SteamClient013( struct u_iface *u_iface ) +struct w_iface *create_winISteamClient_SteamClient013( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient013"); TRACE("-> %p\n", r); @@ -3356,8 +3242,7 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient014_GetISteamUser(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamUser, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient014_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -3372,8 +3257,7 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient014_GetISteamG TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamGameServer, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient014_SetLocalIPBinding(struct w_iface *_this, uint32_t unIP, uint16_t usPort) @@ -3400,8 +3284,7 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient014_GetISteamFrie TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamFriends, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient014_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) @@ -3415,8 +3298,7 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient014_GetISteamUtils( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamUtils, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient014_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -3431,8 +3313,7 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient014_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamMatchmaking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient014_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -3447,8 +3328,7 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient014_Ge TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamMatchmakingServers, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void * __thiscall winISteamClient_SteamClient014_GetISteamGenericInterface(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -3463,8 +3343,7 @@ void * __thiscall winISteamClient_SteamClient014_GetISteamGenericInterface(struc TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamGenericInterface, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient014_GetISteamUserStats(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -3479,8 +3358,7 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient014_GetISteamUs TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamUserStats, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient014_GetISteamGameServerStats(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -3495,8 +3373,7 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient014_GetIS TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamGameServerStats, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient014_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -3511,8 +3388,7 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient014_GetISteamApps(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamApps, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient014_GetISteamNetworking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -3527,8 +3403,7 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient014_GetISteamN TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamNetworking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient014_GetISteamRemoteStorage(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -3543,8 +3418,7 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient014_GetISte TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamRemoteStorage, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient014_GetISteamScreenshots(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -3559,8 +3433,7 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient014_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamScreenshots, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient014_RunFrame(struct w_iface *_this) @@ -3618,8 +3491,7 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient014_GetISteamHTTP(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamHTTP, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient014_GetISteamUnifiedMessages(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -3634,8 +3506,7 @@ void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient014_GetIS TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamUnifiedMessages, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamController*/ * __thiscall winISteamClient_SteamClient014_GetISteamController(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -3650,8 +3521,7 @@ void /*ISteamController*/ * __thiscall winISteamClient_SteamClient014_GetISteamC TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamController, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient014_GetISteamUGC(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -3666,8 +3536,7 @@ void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient014_GetISteamUGC(stru TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamUGC, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient014_GetISteamAppList(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -3682,8 +3551,7 @@ void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient014_GetISteamAppL TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamAppList, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient014_GetISteamMusic(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -3698,8 +3566,7 @@ void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient014_GetISteamMusic( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetISteamMusic, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } extern vtable_ptr winISteamClient_SteamClient014_vtable; @@ -3740,7 +3607,7 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient014_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamClient_SteamClient014( struct u_iface *u_iface ) +struct w_iface *create_winISteamClient_SteamClient014( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient014"); TRACE("-> %p\n", r); @@ -3852,8 +3719,7 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient015_GetISteamUser(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamUser, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient015_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -3868,8 +3734,7 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient015_GetISteamG TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamGameServer, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient015_SetLocalIPBinding(struct w_iface *_this, uint32_t unIP, uint16_t usPort) @@ -3896,8 +3761,7 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient015_GetISteamFrie TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamFriends, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient015_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) @@ -3911,8 +3775,7 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient015_GetISteamUtils( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamUtils, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient015_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -3927,8 +3790,7 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient015_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamMatchmaking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient015_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -3943,8 +3805,7 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient015_Ge TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamMatchmakingServers, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void * __thiscall winISteamClient_SteamClient015_GetISteamGenericInterface(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -3959,8 +3820,7 @@ void * __thiscall winISteamClient_SteamClient015_GetISteamGenericInterface(struc TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamGenericInterface, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient015_GetISteamUserStats(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -3975,8 +3835,7 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient015_GetISteamUs TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamUserStats, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient015_GetISteamGameServerStats(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -3991,8 +3850,7 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient015_GetIS TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamGameServerStats, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient015_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -4007,8 +3865,7 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient015_GetISteamApps(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamApps, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient015_GetISteamNetworking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -4023,8 +3880,7 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient015_GetISteamN TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamNetworking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient015_GetISteamRemoteStorage(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -4039,8 +3895,7 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient015_GetISte TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamRemoteStorage, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient015_GetISteamScreenshots(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -4055,8 +3910,7 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient015_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamScreenshots, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient015_RunFrame(struct w_iface *_this) @@ -4114,8 +3968,7 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient015_GetISteamHTTP(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamHTTP, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient015_GetISteamUnifiedMessages(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -4130,8 +3983,7 @@ void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient015_GetIS TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamUnifiedMessages, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamController*/ * __thiscall winISteamClient_SteamClient015_GetISteamController(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -4146,8 +3998,7 @@ void /*ISteamController*/ * __thiscall winISteamClient_SteamClient015_GetISteamC TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamController, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient015_GetISteamUGC(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -4162,8 +4013,7 @@ void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient015_GetISteamUGC(stru TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamUGC, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient015_GetISteamAppList(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -4178,8 +4028,7 @@ void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient015_GetISteamAppL TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamAppList, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient015_GetISteamMusic(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -4194,8 +4043,7 @@ void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient015_GetISteamMusic( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamMusic, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient015_GetISteamMusicRemote(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -4210,8 +4058,7 @@ void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient015_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetISteamMusicRemote, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } extern vtable_ptr winISteamClient_SteamClient015_vtable; @@ -4253,7 +4100,7 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient015_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamClient_SteamClient015( struct u_iface *u_iface ) +struct w_iface *create_winISteamClient_SteamClient015( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient015"); TRACE("-> %p\n", r); @@ -4369,8 +4216,7 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient016_GetISteamUser(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamUser, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient016_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -4385,8 +4231,7 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient016_GetISteamG TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamGameServer, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient016_SetLocalIPBinding(struct w_iface *_this, uint32_t unIP, uint16_t usPort) @@ -4413,8 +4258,7 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient016_GetISteamFrie TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamFriends, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient016_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) @@ -4428,8 +4272,7 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient016_GetISteamUtils( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamUtils, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient016_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -4444,8 +4287,7 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient016_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamMatchmaking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient016_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -4460,8 +4302,7 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient016_Ge TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamMatchmakingServers, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void * __thiscall winISteamClient_SteamClient016_GetISteamGenericInterface(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -4476,8 +4317,7 @@ void * __thiscall winISteamClient_SteamClient016_GetISteamGenericInterface(struc TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamGenericInterface, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient016_GetISteamUserStats(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -4492,8 +4332,7 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient016_GetISteamUs TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamUserStats, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient016_GetISteamGameServerStats(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -4508,8 +4347,7 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient016_GetIS TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamGameServerStats, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient016_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -4524,8 +4362,7 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient016_GetISteamApps(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamApps, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient016_GetISteamNetworking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -4540,8 +4377,7 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient016_GetISteamN TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamNetworking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient016_GetISteamRemoteStorage(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -4556,8 +4392,7 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient016_GetISte TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamRemoteStorage, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient016_GetISteamScreenshots(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -4572,8 +4407,7 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient016_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamScreenshots, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient016_RunFrame(struct w_iface *_this) @@ -4631,8 +4465,7 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient016_GetISteamHTTP(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamHTTP, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient016_GetISteamUnifiedMessages(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -4647,8 +4480,7 @@ void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient016_GetIS TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamUnifiedMessages, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamController*/ * __thiscall winISteamClient_SteamClient016_GetISteamController(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -4663,8 +4495,7 @@ void /*ISteamController*/ * __thiscall winISteamClient_SteamClient016_GetISteamC TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamController, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient016_GetISteamUGC(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -4679,8 +4510,7 @@ void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient016_GetISteamUGC(stru TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamUGC, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient016_GetISteamAppList(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -4695,8 +4525,7 @@ void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient016_GetISteamAppL TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamAppList, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient016_GetISteamMusic(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -4711,8 +4540,7 @@ void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient016_GetISteamMusic( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamMusic, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient016_GetISteamMusicRemote(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -4727,8 +4555,7 @@ void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient016_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamMusicRemote, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient016_GetISteamHTMLSurface(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -4743,8 +4570,7 @@ void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient016_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetISteamHTMLSurface, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient016_Set_SteamAPI_CPostAPIResultInProcess(struct w_iface *_this, void (*W_CDECL func)(uint64_t, void *, uint32_t, int32_t)) @@ -4823,7 +4649,7 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient016_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamClient_SteamClient016( struct u_iface *u_iface ) +struct w_iface *create_winISteamClient_SteamClient016( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient016"); TRACE("-> %p\n", r); @@ -4942,8 +4768,7 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient017_GetISteamUser(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamUser, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient017_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -4958,8 +4783,7 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient017_GetISteamG TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamGameServer, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient017_SetLocalIPBinding(struct w_iface *_this, uint32_t unIP, uint16_t usPort) @@ -4986,8 +4810,7 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient017_GetISteamFrie TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamFriends, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient017_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) @@ -5001,8 +4824,7 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient017_GetISteamUtils( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamUtils, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient017_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -5017,8 +4839,7 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient017_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamMatchmaking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient017_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -5033,8 +4854,7 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient017_Ge TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamMatchmakingServers, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void * __thiscall winISteamClient_SteamClient017_GetISteamGenericInterface(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -5049,8 +4869,7 @@ void * __thiscall winISteamClient_SteamClient017_GetISteamGenericInterface(struc TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamGenericInterface, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient017_GetISteamUserStats(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -5065,8 +4884,7 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient017_GetISteamUs TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamUserStats, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient017_GetISteamGameServerStats(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -5081,8 +4899,7 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient017_GetIS TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamGameServerStats, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient017_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -5097,8 +4914,7 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient017_GetISteamApps(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamApps, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient017_GetISteamNetworking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -5113,8 +4929,7 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient017_GetISteamN TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamNetworking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient017_GetISteamRemoteStorage(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -5129,8 +4944,7 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient017_GetISte TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamRemoteStorage, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient017_GetISteamScreenshots(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -5145,8 +4959,7 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient017_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamScreenshots, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient017_RunFrame(struct w_iface *_this) @@ -5204,8 +5017,7 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient017_GetISteamHTTP(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamHTTP, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void * __thiscall winISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMessages(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -5220,8 +5032,7 @@ void * __thiscall winISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMess TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMessages, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamController*/ * __thiscall winISteamClient_SteamClient017_GetISteamController(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -5236,8 +5047,7 @@ void /*ISteamController*/ * __thiscall winISteamClient_SteamClient017_GetISteamC TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamController, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient017_GetISteamUGC(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -5252,8 +5062,7 @@ void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient017_GetISteamUGC(stru TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamUGC, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient017_GetISteamAppList(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -5268,8 +5077,7 @@ void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient017_GetISteamAppL TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamAppList, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient017_GetISteamMusic(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -5284,8 +5092,7 @@ void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient017_GetISteamMusic( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamMusic, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient017_GetISteamMusicRemote(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -5300,8 +5107,7 @@ void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient017_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamMusicRemote, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient017_GetISteamHTMLSurface(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -5316,8 +5122,7 @@ void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient017_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamHTMLSurface, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient017_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess(struct w_iface *_this, void (*W_CDECL _a)(void)) @@ -5365,8 +5170,7 @@ void /*ISteamInventory*/ * __thiscall winISteamClient_SteamClient017_GetISteamIn TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamInventory, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient017_GetISteamVideo(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -5381,8 +5185,7 @@ void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient017_GetISteamVideo( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamVideo, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient017_GetISteamParentalSettings(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -5397,8 +5200,7 @@ void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient017_GetI TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetISteamParentalSettings, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } extern vtable_ptr winISteamClient_SteamClient017_vtable; @@ -5447,7 +5249,7 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient017_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamClient_SteamClient017( struct u_iface *u_iface ) +struct w_iface *create_winISteamClient_SteamClient017( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient017"); TRACE("-> %p\n", r); @@ -5569,8 +5371,7 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient018_GetISteamUser(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamUser, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient018_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -5585,8 +5386,7 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient018_GetISteamG TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamGameServer, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient018_SetLocalIPBinding(struct w_iface *_this, uint32_t unIP, uint16_t usPort) @@ -5613,8 +5413,7 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient018_GetISteamFrie TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamFriends, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient018_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) @@ -5628,8 +5427,7 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient018_GetISteamUtils( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamUtils, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient018_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -5644,8 +5442,7 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient018_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamMatchmaking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient018_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -5660,8 +5457,7 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient018_Ge TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamMatchmakingServers, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void * __thiscall winISteamClient_SteamClient018_GetISteamGenericInterface(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -5676,8 +5472,7 @@ void * __thiscall winISteamClient_SteamClient018_GetISteamGenericInterface(struc TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamGenericInterface, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient018_GetISteamUserStats(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -5692,8 +5487,7 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient018_GetISteamUs TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamUserStats, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient018_GetISteamGameServerStats(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -5708,8 +5502,7 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient018_GetIS TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamGameServerStats, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient018_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -5724,8 +5517,7 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient018_GetISteamApps(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamApps, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient018_GetISteamNetworking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -5740,8 +5532,7 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient018_GetISteamN TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamNetworking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient018_GetISteamRemoteStorage(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -5756,8 +5547,7 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient018_GetISte TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamRemoteStorage, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient018_GetISteamScreenshots(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -5772,8 +5562,7 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient018_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamScreenshots, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameSearch*/ * __thiscall winISteamClient_SteamClient018_GetISteamGameSearch(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -5788,8 +5577,7 @@ void /*ISteamGameSearch*/ * __thiscall winISteamClient_SteamClient018_GetISteamG TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamGameSearch, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient018_RunFrame(struct w_iface *_this) @@ -5847,8 +5635,7 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient018_GetISteamHTTP(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamHTTP, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void * __thiscall winISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMessages(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -5863,8 +5650,7 @@ void * __thiscall winISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMess TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMessages, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamController*/ * __thiscall winISteamClient_SteamClient018_GetISteamController(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -5879,8 +5665,7 @@ void /*ISteamController*/ * __thiscall winISteamClient_SteamClient018_GetISteamC TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamController, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient018_GetISteamUGC(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -5895,8 +5680,7 @@ void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient018_GetISteamUGC(stru TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamUGC, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient018_GetISteamAppList(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -5911,8 +5695,7 @@ void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient018_GetISteamAppL TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamAppList, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient018_GetISteamMusic(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -5927,8 +5710,7 @@ void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient018_GetISteamMusic( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamMusic, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient018_GetISteamMusicRemote(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -5943,8 +5725,7 @@ void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient018_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamMusicRemote, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient018_GetISteamHTMLSurface(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -5959,8 +5740,7 @@ void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient018_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamHTMLSurface, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient018_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess(struct w_iface *_this, void (*W_CDECL _a)(void)) @@ -6008,8 +5788,7 @@ void /*ISteamInventory*/ * __thiscall winISteamClient_SteamClient018_GetISteamIn TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamInventory, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient018_GetISteamVideo(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -6024,8 +5803,7 @@ void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient018_GetISteamVideo( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamVideo, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient018_GetISteamParentalSettings(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -6040,8 +5818,7 @@ void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient018_GetI TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamParentalSettings, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamInput*/ * __thiscall winISteamClient_SteamClient018_GetISteamInput(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -6056,8 +5833,7 @@ void /*ISteamInput*/ * __thiscall winISteamClient_SteamClient018_GetISteamInput( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamInput, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamParties*/ * __thiscall winISteamClient_SteamClient018_GetISteamParties(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -6072,8 +5848,7 @@ void /*ISteamParties*/ * __thiscall winISteamClient_SteamClient018_GetISteamPart TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetISteamParties, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } extern vtable_ptr winISteamClient_SteamClient018_vtable; @@ -6125,7 +5900,7 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient018_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamClient_SteamClient018( struct u_iface *u_iface ) +struct w_iface *create_winISteamClient_SteamClient018( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient018"); TRACE("-> %p\n", r); @@ -6248,8 +6023,7 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient019_GetISteamUser(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamUser, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient019_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -6264,8 +6038,7 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient019_GetISteamG TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamGameServer, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient019_SetLocalIPBinding(struct w_iface *_this, uint32_t unIP, uint16_t usPort) @@ -6292,8 +6065,7 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient019_GetISteamFrie TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamFriends, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient019_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) @@ -6307,8 +6079,7 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient019_GetISteamUtils( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamUtils, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient019_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -6323,8 +6094,7 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient019_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamMatchmaking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient019_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -6339,8 +6109,7 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient019_Ge TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamMatchmakingServers, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void * __thiscall winISteamClient_SteamClient019_GetISteamGenericInterface(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -6355,8 +6124,7 @@ void * __thiscall winISteamClient_SteamClient019_GetISteamGenericInterface(struc TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamGenericInterface, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient019_GetISteamUserStats(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -6371,8 +6139,7 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient019_GetISteamUs TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamUserStats, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient019_GetISteamGameServerStats(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -6387,8 +6154,7 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient019_GetIS TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamGameServerStats, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient019_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -6403,8 +6169,7 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient019_GetISteamApps(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamApps, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient019_GetISteamNetworking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -6419,8 +6184,7 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient019_GetISteamN TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamNetworking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient019_GetISteamRemoteStorage(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -6435,8 +6199,7 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient019_GetISte TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamRemoteStorage, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient019_GetISteamScreenshots(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -6451,8 +6214,7 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient019_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamScreenshots, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameSearch*/ * __thiscall winISteamClient_SteamClient019_GetISteamGameSearch(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -6467,8 +6229,7 @@ void /*ISteamGameSearch*/ * __thiscall winISteamClient_SteamClient019_GetISteamG TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamGameSearch, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient019_RunFrame(struct w_iface *_this) @@ -6526,8 +6287,7 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient019_GetISteamHTTP(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamHTTP, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void * __thiscall winISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMessages(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -6542,8 +6302,7 @@ void * __thiscall winISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMess TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMessages, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamController*/ * __thiscall winISteamClient_SteamClient019_GetISteamController(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -6558,8 +6317,7 @@ void /*ISteamController*/ * __thiscall winISteamClient_SteamClient019_GetISteamC TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamController, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient019_GetISteamUGC(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -6574,8 +6332,7 @@ void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient019_GetISteamUGC(stru TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamUGC, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient019_GetISteamAppList(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -6590,8 +6347,7 @@ void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient019_GetISteamAppL TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamAppList, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient019_GetISteamMusic(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -6606,8 +6362,7 @@ void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient019_GetISteamMusic( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamMusic, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient019_GetISteamMusicRemote(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -6622,8 +6377,7 @@ void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient019_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamMusicRemote, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient019_GetISteamHTMLSurface(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -6638,8 +6392,7 @@ void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient019_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamHTMLSurface, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient019_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess(struct w_iface *_this, void (*W_CDECL _a)(void)) @@ -6687,8 +6440,7 @@ void /*ISteamInventory*/ * __thiscall winISteamClient_SteamClient019_GetISteamIn TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamInventory, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient019_GetISteamVideo(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -6703,8 +6455,7 @@ void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient019_GetISteamVideo( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamVideo, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient019_GetISteamParentalSettings(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -6719,8 +6470,7 @@ void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient019_GetI TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamParentalSettings, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamInput*/ * __thiscall winISteamClient_SteamClient019_GetISteamInput(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -6735,8 +6485,7 @@ void /*ISteamInput*/ * __thiscall winISteamClient_SteamClient019_GetISteamInput( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamInput, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamParties*/ * __thiscall winISteamClient_SteamClient019_GetISteamParties(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -6751,8 +6500,7 @@ void /*ISteamParties*/ * __thiscall winISteamClient_SteamClient019_GetISteamPart TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamParties, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamRemotePlay*/ * __thiscall winISteamClient_SteamClient019_GetISteamRemotePlay(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -6767,8 +6515,7 @@ void /*ISteamRemotePlay*/ * __thiscall winISteamClient_SteamClient019_GetISteamR TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetISteamRemotePlay, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } extern vtable_ptr winISteamClient_SteamClient019_vtable; @@ -6821,7 +6568,7 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient019_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamClient_SteamClient019( struct u_iface *u_iface ) +struct w_iface *create_winISteamClient_SteamClient019( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient019"); TRACE("-> %p\n", r); @@ -6945,8 +6692,7 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient020_GetISteamUser(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamUser, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient020_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -6961,8 +6707,7 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient020_GetISteamG TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamGameServer, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient020_SetLocalIPBinding(struct w_iface *_this, const SteamIPAddress_t *unIP, uint16_t usPort) @@ -6989,8 +6734,7 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient020_GetISteamFrie TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamFriends, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient020_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) @@ -7004,8 +6748,7 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient020_GetISteamUtils( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamUtils, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient020_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -7020,8 +6763,7 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient020_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamMatchmaking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient020_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -7036,8 +6778,7 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient020_Ge TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamMatchmakingServers, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void * __thiscall winISteamClient_SteamClient020_GetISteamGenericInterface(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -7052,8 +6793,7 @@ void * __thiscall winISteamClient_SteamClient020_GetISteamGenericInterface(struc TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamGenericInterface, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient020_GetISteamUserStats(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -7068,8 +6808,7 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient020_GetISteamUs TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamUserStats, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient020_GetISteamGameServerStats(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -7084,8 +6823,7 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient020_GetIS TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamGameServerStats, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient020_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -7100,8 +6838,7 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient020_GetISteamApps(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamApps, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient020_GetISteamNetworking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -7116,8 +6853,7 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient020_GetISteamN TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamNetworking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient020_GetISteamRemoteStorage(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -7132,8 +6868,7 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient020_GetISte TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamRemoteStorage, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient020_GetISteamScreenshots(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -7148,8 +6883,7 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient020_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamScreenshots, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameSearch*/ * __thiscall winISteamClient_SteamClient020_GetISteamGameSearch(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -7164,8 +6898,7 @@ void /*ISteamGameSearch*/ * __thiscall winISteamClient_SteamClient020_GetISteamG TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamGameSearch, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient020_RunFrame(struct w_iface *_this) @@ -7223,8 +6956,7 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient020_GetISteamHTTP(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamHTTP, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void * __thiscall winISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMessages(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -7239,8 +6971,7 @@ void * __thiscall winISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMess TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMessages, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamController*/ * __thiscall winISteamClient_SteamClient020_GetISteamController(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -7255,8 +6986,7 @@ void /*ISteamController*/ * __thiscall winISteamClient_SteamClient020_GetISteamC TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamController, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient020_GetISteamUGC(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -7271,8 +7001,7 @@ void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient020_GetISteamUGC(stru TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamUGC, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient020_GetISteamAppList(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -7287,8 +7016,7 @@ void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient020_GetISteamAppL TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamAppList, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient020_GetISteamMusic(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -7303,8 +7031,7 @@ void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient020_GetISteamMusic( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamMusic, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient020_GetISteamMusicRemote(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -7319,8 +7046,7 @@ void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient020_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamMusicRemote, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient020_GetISteamHTMLSurface(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -7335,8 +7061,7 @@ void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient020_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamHTMLSurface, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient020_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess(struct w_iface *_this, void (*W_CDECL _a)(void)) @@ -7384,8 +7109,7 @@ void /*ISteamInventory*/ * __thiscall winISteamClient_SteamClient020_GetISteamIn TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamInventory, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient020_GetISteamVideo(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -7400,8 +7124,7 @@ void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient020_GetISteamVideo( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamVideo, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient020_GetISteamParentalSettings(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -7416,8 +7139,7 @@ void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient020_GetI TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamParentalSettings, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamInput*/ * __thiscall winISteamClient_SteamClient020_GetISteamInput(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -7432,8 +7154,7 @@ void /*ISteamInput*/ * __thiscall winISteamClient_SteamClient020_GetISteamInput( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamInput, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamParties*/ * __thiscall winISteamClient_SteamClient020_GetISteamParties(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -7448,8 +7169,7 @@ void /*ISteamParties*/ * __thiscall winISteamClient_SteamClient020_GetISteamPart TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamParties, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamRemotePlay*/ * __thiscall winISteamClient_SteamClient020_GetISteamRemotePlay(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -7464,8 +7184,7 @@ void /*ISteamRemotePlay*/ * __thiscall winISteamClient_SteamClient020_GetISteamR TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetISteamRemotePlay, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient020_DestroyAllInterfaces(struct w_iface *_this) @@ -7529,7 +7248,7 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient020_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamClient_SteamClient020( struct u_iface *u_iface ) +struct w_iface *create_winISteamClient_SteamClient020( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient020"); TRACE("-> %p\n", r); @@ -7651,8 +7370,7 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient021_GetISteamUser(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient021_GetISteamUser, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient021_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -7667,8 +7385,7 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient021_GetISteamG TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient021_GetISteamGameServer, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient021_SetLocalIPBinding(struct w_iface *_this, const SteamIPAddress_t *unIP, uint16_t usPort) @@ -7695,8 +7412,7 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient021_GetISteamFrie TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient021_GetISteamFriends, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient021_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) @@ -7710,8 +7426,7 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient021_GetISteamUtils( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient021_GetISteamUtils, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient021_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -7726,8 +7441,7 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient021_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient021_GetISteamMatchmaking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient021_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -7742,8 +7456,7 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient021_Ge TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient021_GetISteamMatchmakingServers, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void * __thiscall winISteamClient_SteamClient021_GetISteamGenericInterface(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -7758,8 +7471,7 @@ void * __thiscall winISteamClient_SteamClient021_GetISteamGenericInterface(struc TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient021_GetISteamGenericInterface, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient021_GetISteamUserStats(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -7774,8 +7486,7 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient021_GetISteamUs TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient021_GetISteamUserStats, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient021_GetISteamGameServerStats(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -7790,8 +7501,7 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient021_GetIS TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient021_GetISteamGameServerStats, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient021_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -7806,8 +7516,7 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient021_GetISteamApps(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient021_GetISteamApps, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient021_GetISteamNetworking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -7822,8 +7531,7 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient021_GetISteamN TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient021_GetISteamNetworking, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient021_GetISteamRemoteStorage(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -7838,8 +7546,7 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient021_GetISte TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient021_GetISteamRemoteStorage, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient021_GetISteamScreenshots(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -7854,8 +7561,7 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient021_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient021_GetISteamScreenshots, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamGameSearch*/ * __thiscall winISteamClient_SteamClient021_GetISteamGameSearch(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -7870,8 +7576,7 @@ void /*ISteamGameSearch*/ * __thiscall winISteamClient_SteamClient021_GetISteamG TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient021_GetISteamGameSearch, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient021_RunFrame(struct w_iface *_this) @@ -7929,8 +7634,7 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient021_GetISteamHTTP(st TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient021_GetISteamHTTP, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamController*/ * __thiscall winISteamClient_SteamClient021_GetISteamController(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -7945,8 +7649,7 @@ void /*ISteamController*/ * __thiscall winISteamClient_SteamClient021_GetISteamC TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient021_GetISteamController, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient021_GetISteamUGC(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -7961,8 +7664,7 @@ void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient021_GetISteamUGC(stru TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient021_GetISteamUGC, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient021_GetISteamMusic(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -7977,8 +7679,7 @@ void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient021_GetISteamMusic( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient021_GetISteamMusic, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient021_GetISteamMusicRemote(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -7993,8 +7694,7 @@ void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient021_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient021_GetISteamMusicRemote, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient021_GetISteamHTMLSurface(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -8009,8 +7709,7 @@ void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient021_GetISteam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient021_GetISteamHTMLSurface, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient021_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess(struct w_iface *_this, void (*W_CDECL _a)(void)) @@ -8058,8 +7757,7 @@ void /*ISteamInventory*/ * __thiscall winISteamClient_SteamClient021_GetISteamIn TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient021_GetISteamInventory, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient021_GetISteamVideo(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -8074,8 +7772,7 @@ void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient021_GetISteamVideo( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient021_GetISteamVideo, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient021_GetISteamParentalSettings(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) @@ -8090,8 +7787,7 @@ void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient021_GetI TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient021_GetISteamParentalSettings, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamInput*/ * __thiscall winISteamClient_SteamClient021_GetISteamInput(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -8106,8 +7802,7 @@ void /*ISteamInput*/ * __thiscall winISteamClient_SteamClient021_GetISteamInput( TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient021_GetISteamInput, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamParties*/ * __thiscall winISteamClient_SteamClient021_GetISteamParties(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -8122,8 +7817,7 @@ void /*ISteamParties*/ * __thiscall winISteamClient_SteamClient021_GetISteamPart TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient021_GetISteamParties, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void /*ISteamRemotePlay*/ * __thiscall winISteamClient_SteamClient021_GetISteamRemotePlay(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) @@ -8138,8 +7832,7 @@ void /*ISteamRemotePlay*/ * __thiscall winISteamClient_SteamClient021_GetISteamR TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient021_GetISteamRemotePlay, ¶ms ); - params._ret = create_win_interface( pchVersion, params._ret ); - return params._ret; + return create_win_interface( pchVersion, params._ret ); } void __thiscall winISteamClient_SteamClient021_DestroyAllInterfaces(struct w_iface *_this) @@ -8201,7 +7894,7 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient021_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamClient_SteamClient021( struct u_iface *u_iface ) +struct w_iface *create_winISteamClient_SteamClient021( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient021"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamController.c b/lsteamclient/winISteamController.c index 24f1930d..dbb833fd 100644 --- a/lsteamclient/winISteamController.c +++ b/lsteamclient/winISteamController.c @@ -97,7 +97,7 @@ __ASM_BLOCK_BEGIN(winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamController_STEAMCONTROLLER_INTERFACE_VERSION( struct u_iface *u_iface ) +struct w_iface *create_winISteamController_STEAMCONTROLLER_INTERFACE_VERSION( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMCONTROLLER_INTERFACE_VERSION"); TRACE("-> %p\n", r); @@ -368,7 +368,7 @@ __ASM_BLOCK_BEGIN(winISteamController_SteamController003_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamController_SteamController003( struct u_iface *u_iface ) +struct w_iface *create_winISteamController_SteamController003( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamController003"); TRACE("-> %p\n", r); @@ -718,7 +718,7 @@ __ASM_BLOCK_BEGIN(winISteamController_SteamController004_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamController_SteamController004( struct u_iface *u_iface ) +struct w_iface *create_winISteamController_SteamController004( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamController004"); TRACE("-> %p\n", r); @@ -1116,7 +1116,7 @@ __ASM_BLOCK_BEGIN(winISteamController_SteamController005_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamController_SteamController005( struct u_iface *u_iface ) +struct w_iface *create_winISteamController_SteamController005( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamController005"); TRACE("-> %p\n", r); @@ -1584,7 +1584,7 @@ __ASM_BLOCK_BEGIN(winISteamController_SteamController006_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamController_SteamController006( struct u_iface *u_iface ) +struct w_iface *create_winISteamController_SteamController006( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamController006"); TRACE("-> %p\n", r); @@ -2078,7 +2078,7 @@ __ASM_BLOCK_BEGIN(winISteamController_SteamController007_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamController_SteamController007( struct u_iface *u_iface ) +struct w_iface *create_winISteamController_SteamController007( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamController007"); TRACE("-> %p\n", r); @@ -2572,7 +2572,7 @@ __ASM_BLOCK_BEGIN(winISteamController_SteamController008_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamController_SteamController008( struct u_iface *u_iface ) +struct w_iface *create_winISteamController_SteamController008( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamController008"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamFriends.c b/lsteamclient/winISteamFriends.c index 945d3ce6..8fec13d1 100644 --- a/lsteamclient/winISteamFriends.c +++ b/lsteamclient/winISteamFriends.c @@ -413,7 +413,7 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends001_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamFriends_SteamFriends001( struct u_iface *u_iface ) +struct w_iface *create_winISteamFriends_SteamFriends001( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends001"); TRACE("-> %p\n", r); @@ -874,7 +874,7 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends002_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamFriends_SteamFriends002( struct u_iface *u_iface ) +struct w_iface *create_winISteamFriends_SteamFriends002( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends002"); TRACE("-> %p\n", r); @@ -1182,7 +1182,7 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends003_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamFriends_SteamFriends003( struct u_iface *u_iface ) +struct w_iface *create_winISteamFriends_SteamFriends003( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends003"); TRACE("-> %p\n", r); @@ -1491,7 +1491,7 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends004_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamFriends_SteamFriends004( struct u_iface *u_iface ) +struct w_iface *create_winISteamFriends_SteamFriends004( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends004"); TRACE("-> %p\n", r); @@ -1852,7 +1852,7 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends005_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamFriends_SteamFriends005( struct u_iface *u_iface ) +struct w_iface *create_winISteamFriends_SteamFriends005( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends005"); TRACE("-> %p\n", r); @@ -2240,7 +2240,7 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends006_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamFriends_SteamFriends006( struct u_iface *u_iface ) +struct w_iface *create_winISteamFriends_SteamFriends006( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends006"); TRACE("-> %p\n", r); @@ -2655,7 +2655,7 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends007_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamFriends_SteamFriends007( struct u_iface *u_iface ) +struct w_iface *create_winISteamFriends_SteamFriends007( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends007"); TRACE("-> %p\n", r); @@ -3157,7 +3157,7 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends008_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamFriends_SteamFriends008( struct u_iface *u_iface ) +struct w_iface *create_winISteamFriends_SteamFriends008( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends008"); TRACE("-> %p\n", r); @@ -3805,7 +3805,7 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends009_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamFriends_SteamFriends009( struct u_iface *u_iface ) +struct w_iface *create_winISteamFriends_SteamFriends009( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends009"); TRACE("-> %p\n", r); @@ -4683,7 +4683,7 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends010_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamFriends_SteamFriends010( struct u_iface *u_iface ) +struct w_iface *create_winISteamFriends_SteamFriends010( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends010"); TRACE("-> %p\n", r); @@ -5616,7 +5616,7 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends011_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamFriends_SteamFriends011( struct u_iface *u_iface ) +struct w_iface *create_winISteamFriends_SteamFriends011( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends011"); TRACE("-> %p\n", r); @@ -6550,7 +6550,7 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends012_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamFriends_SteamFriends012( struct u_iface *u_iface ) +struct w_iface *create_winISteamFriends_SteamFriends012( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends012"); TRACE("-> %p\n", r); @@ -7485,7 +7485,7 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends013_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamFriends_SteamFriends013( struct u_iface *u_iface ) +struct w_iface *create_winISteamFriends_SteamFriends013( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends013"); TRACE("-> %p\n", r); @@ -8434,7 +8434,7 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends014_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamFriends_SteamFriends014( struct u_iface *u_iface ) +struct w_iface *create_winISteamFriends_SteamFriends014( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends014"); TRACE("-> %p\n", r); @@ -9495,7 +9495,7 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends015_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamFriends_SteamFriends015( struct u_iface *u_iface ) +struct w_iface *create_winISteamFriends_SteamFriends015( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends015"); TRACE("-> %p\n", r); @@ -10673,7 +10673,7 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends017_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamFriends_SteamFriends017( struct u_iface *u_iface ) +struct w_iface *create_winISteamFriends_SteamFriends017( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends017"); TRACE("-> %p\n", r); @@ -11823,7 +11823,7 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends018_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamFriends_SteamFriends018( struct u_iface *u_iface ) +struct w_iface *create_winISteamFriends_SteamFriends018( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends018"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamGameCoordinator.c b/lsteamclient/winISteamGameCoordinator.c index d44f1e2b..75756335 100644 --- a/lsteamclient/winISteamGameCoordinator.c +++ b/lsteamclient/winISteamGameCoordinator.c @@ -60,7 +60,7 @@ __ASM_BLOCK_BEGIN(winISteamGameCoordinator_SteamGameCoordinator001_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamGameCoordinator_SteamGameCoordinator001( struct u_iface *u_iface ) +struct w_iface *create_winISteamGameCoordinator_SteamGameCoordinator001( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamGameCoordinator001"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamGameSearch.c b/lsteamclient/winISteamGameSearch.c index 5ac3ebbb..cb03097e 100644 --- a/lsteamclient/winISteamGameSearch.c +++ b/lsteamclient/winISteamGameSearch.c @@ -222,7 +222,7 @@ __ASM_BLOCK_BEGIN(winISteamGameSearch_SteamMatchGameSearch001_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamGameSearch_SteamMatchGameSearch001( struct u_iface *u_iface ) +struct w_iface *create_winISteamGameSearch_SteamMatchGameSearch001( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamMatchGameSearch001"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamGameServer.c b/lsteamclient/winISteamGameServer.c index 1bef1075..d291a5f1 100644 --- a/lsteamclient/winISteamGameServer.c +++ b/lsteamclient/winISteamGameServer.c @@ -360,7 +360,7 @@ __ASM_BLOCK_BEGIN(winISteamGameServer_SteamGameServer002_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamGameServer_SteamGameServer002( struct u_iface *u_iface ) +struct w_iface *create_winISteamGameServer_SteamGameServer002( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamGameServer002"); TRACE("-> %p\n", r); @@ -639,7 +639,7 @@ __ASM_BLOCK_BEGIN(winISteamGameServer_SteamGameServer003_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamGameServer_SteamGameServer003( struct u_iface *u_iface ) +struct w_iface *create_winISteamGameServer_SteamGameServer003( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamGameServer003"); TRACE("-> %p\n", r); @@ -870,7 +870,7 @@ __ASM_BLOCK_BEGIN(winISteamGameServer_SteamGameServer004_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamGameServer_SteamGameServer004( struct u_iface *u_iface ) +struct w_iface *create_winISteamGameServer_SteamGameServer004( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamGameServer004"); TRACE("-> %p\n", r); @@ -1101,7 +1101,7 @@ __ASM_BLOCK_BEGIN(winISteamGameServer_SteamGameServer005_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamGameServer_SteamGameServer005( struct u_iface *u_iface ) +struct w_iface *create_winISteamGameServer_SteamGameServer005( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamGameServer005"); TRACE("-> %p\n", r); @@ -1372,7 +1372,7 @@ __ASM_BLOCK_BEGIN(winISteamGameServer_SteamGameServer008_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamGameServer_SteamGameServer008( struct u_iface *u_iface ) +struct w_iface *create_winISteamGameServer_SteamGameServer008( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamGameServer008"); TRACE("-> %p\n", r); @@ -1672,7 +1672,7 @@ __ASM_BLOCK_BEGIN(winISteamGameServer_SteamGameServer009_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamGameServer_SteamGameServer009( struct u_iface *u_iface ) +struct w_iface *create_winISteamGameServer_SteamGameServer009( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamGameServer009"); TRACE("-> %p\n", r); @@ -2027,7 +2027,7 @@ __ASM_BLOCK_BEGIN(winISteamGameServer_SteamGameServer010_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamGameServer_SteamGameServer010( struct u_iface *u_iface ) +struct w_iface *create_winISteamGameServer_SteamGameServer010( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamGameServer010"); TRACE("-> %p\n", r); @@ -2665,7 +2665,7 @@ __ASM_BLOCK_BEGIN(winISteamGameServer_SteamGameServer011_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamGameServer_SteamGameServer011( struct u_iface *u_iface ) +struct w_iface *create_winISteamGameServer_SteamGameServer011( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamGameServer011"); TRACE("-> %p\n", r); @@ -3301,7 +3301,7 @@ __ASM_BLOCK_BEGIN(winISteamGameServer_SteamGameServer012_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamGameServer_SteamGameServer012( struct u_iface *u_iface ) +struct w_iface *create_winISteamGameServer_SteamGameServer012( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamGameServer012"); TRACE("-> %p\n", r); @@ -3938,7 +3938,7 @@ __ASM_BLOCK_BEGIN(winISteamGameServer_SteamGameServer013_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamGameServer_SteamGameServer013( struct u_iface *u_iface ) +struct w_iface *create_winISteamGameServer_SteamGameServer013( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamGameServer013"); TRACE("-> %p\n", r); @@ -4575,7 +4575,7 @@ __ASM_BLOCK_BEGIN(winISteamGameServer_SteamGameServer014_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamGameServer_SteamGameServer014( struct u_iface *u_iface ) +struct w_iface *create_winISteamGameServer_SteamGameServer014( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamGameServer014"); TRACE("-> %p\n", r); @@ -5213,7 +5213,7 @@ __ASM_BLOCK_BEGIN(winISteamGameServer_SteamGameServer015_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamGameServer_SteamGameServer015( struct u_iface *u_iface ) +struct w_iface *create_winISteamGameServer_SteamGameServer015( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamGameServer015"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamGameServerStats.c b/lsteamclient/winISteamGameServerStats.c index 22831e56..2790ab75 100644 --- a/lsteamclient/winISteamGameServerStats.c +++ b/lsteamclient/winISteamGameServerStats.c @@ -176,7 +176,7 @@ __ASM_BLOCK_BEGIN(winISteamGameServerStats_SteamGameServerStats001_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamGameServerStats_SteamGameServerStats001( struct u_iface *u_iface ) +struct w_iface *create_winISteamGameServerStats_SteamGameServerStats001( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamGameServerStats001"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamGameStats.c b/lsteamclient/winISteamGameStats.c index 9a327dfa..b1e049f0 100644 --- a/lsteamclient/winISteamGameStats.c +++ b/lsteamclient/winISteamGameStats.c @@ -229,7 +229,7 @@ __ASM_BLOCK_BEGIN(winISteamGameStats_SteamGameStats001_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamGameStats_SteamGameStats001( struct u_iface *u_iface ) +struct w_iface *create_winISteamGameStats_SteamGameStats001( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamGameStats001"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamHTMLSurface.c b/lsteamclient/winISteamHTMLSurface.c index bc64fb95..9f618d7e 100644 --- a/lsteamclient/winISteamHTMLSurface.c +++ b/lsteamclient/winISteamHTMLSurface.c @@ -474,7 +474,7 @@ __ASM_BLOCK_BEGIN(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_vt ); __ASM_BLOCK_END -struct w_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001( struct u_iface *u_iface ) +struct w_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMHTMLSURFACE_INTERFACE_VERSION_001"); TRACE("-> %p\n", r); @@ -993,7 +993,7 @@ __ASM_BLOCK_BEGIN(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_vt ); __ASM_BLOCK_END -struct w_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002( struct u_iface *u_iface ) +struct w_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMHTMLSURFACE_INTERFACE_VERSION_002"); TRACE("-> %p\n", r); @@ -1526,7 +1526,7 @@ __ASM_BLOCK_BEGIN(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_vt ); __ASM_BLOCK_END -struct w_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003( struct u_iface *u_iface ) +struct w_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMHTMLSURFACE_INTERFACE_VERSION_003"); TRACE("-> %p\n", r); @@ -2073,7 +2073,7 @@ __ASM_BLOCK_BEGIN(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_vt ); __ASM_BLOCK_END -struct w_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004( struct u_iface *u_iface ) +struct w_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMHTMLSURFACE_INTERFACE_VERSION_004"); TRACE("-> %p\n", r); @@ -2634,7 +2634,7 @@ __ASM_BLOCK_BEGIN(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_vt ); __ASM_BLOCK_END -struct w_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005( struct u_iface *u_iface ) +struct w_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMHTMLSURFACE_INTERFACE_VERSION_005"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamHTTP.c b/lsteamclient/winISteamHTTP.c index 76482ad9..c35ad0da 100644 --- a/lsteamclient/winISteamHTTP.c +++ b/lsteamclient/winISteamHTTP.c @@ -251,7 +251,7 @@ __ASM_BLOCK_BEGIN(winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001( struct u_iface *u_iface ) +struct w_iface *create_winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMHTTP_INTERFACE_VERSION001"); TRACE("-> %p\n", r); @@ -664,7 +664,7 @@ __ASM_BLOCK_BEGIN(winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002( struct u_iface *u_iface ) +struct w_iface *create_winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMHTTP_INTERFACE_VERSION002"); TRACE("-> %p\n", r); @@ -1077,7 +1077,7 @@ __ASM_BLOCK_BEGIN(winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003( struct u_iface *u_iface ) +struct w_iface *create_winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMHTTP_INTERFACE_VERSION003"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamInput.c b/lsteamclient/winISteamInput.c index ca1db32b..170ae59c 100644 --- a/lsteamclient/winISteamInput.c +++ b/lsteamclient/winISteamInput.c @@ -502,7 +502,7 @@ __ASM_BLOCK_BEGIN(winISteamInput_SteamInput001_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamInput_SteamInput001( struct u_iface *u_iface ) +struct w_iface *create_winISteamInput_SteamInput001( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamInput001"); TRACE("-> %p\n", r); @@ -1010,7 +1010,7 @@ __ASM_BLOCK_BEGIN(winISteamInput_SteamInput002_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamInput_SteamInput002( struct u_iface *u_iface ) +struct w_iface *create_winISteamInput_SteamInput002( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamInput002"); TRACE("-> %p\n", r); @@ -1668,7 +1668,7 @@ __ASM_BLOCK_BEGIN(winISteamInput_SteamInput005_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamInput_SteamInput005( struct u_iface *u_iface ) +struct w_iface *create_winISteamInput_SteamInput005( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamInput005"); TRACE("-> %p\n", r); @@ -2340,7 +2340,7 @@ __ASM_BLOCK_BEGIN(winISteamInput_SteamInput006_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamInput_SteamInput006( struct u_iface *u_iface ) +struct w_iface *create_winISteamInput_SteamInput006( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamInput006"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamInventory.c b/lsteamclient/winISteamInventory.c index 846a7103..d4b67565 100644 --- a/lsteamclient/winISteamInventory.c +++ b/lsteamclient/winISteamInventory.c @@ -387,7 +387,7 @@ __ASM_BLOCK_BEGIN(winISteamInventory_STEAMINVENTORY_INTERFACE_V001_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamInventory_STEAMINVENTORY_INTERFACE_V001( struct u_iface *u_iface ) +struct w_iface *create_winISteamInventory_STEAMINVENTORY_INTERFACE_V001( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMINVENTORY_INTERFACE_V001"); TRACE("-> %p\n", r); @@ -990,7 +990,7 @@ __ASM_BLOCK_BEGIN(winISteamInventory_STEAMINVENTORY_INTERFACE_V002_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamInventory_STEAMINVENTORY_INTERFACE_V002( struct u_iface *u_iface ) +struct w_iface *create_winISteamInventory_STEAMINVENTORY_INTERFACE_V002( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMINVENTORY_INTERFACE_V002"); TRACE("-> %p\n", r); @@ -1611,7 +1611,7 @@ __ASM_BLOCK_BEGIN(winISteamInventory_STEAMINVENTORY_INTERFACE_V003_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamInventory_STEAMINVENTORY_INTERFACE_V003( struct u_iface *u_iface ) +struct w_iface *create_winISteamInventory_STEAMINVENTORY_INTERFACE_V003( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMINVENTORY_INTERFACE_V003"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamMasterServerUpdater.c b/lsteamclient/winISteamMasterServerUpdater.c index 58c12222..f847f762 100644 --- a/lsteamclient/winISteamMasterServerUpdater.c +++ b/lsteamclient/winISteamMasterServerUpdater.c @@ -219,7 +219,7 @@ __ASM_BLOCK_BEGIN(winISteamMasterServerUpdater_SteamMasterServerUpdater001_vtabl ); __ASM_BLOCK_END -struct w_iface *create_winISteamMasterServerUpdater_SteamMasterServerUpdater001( struct u_iface *u_iface ) +struct w_iface *create_winISteamMasterServerUpdater_SteamMasterServerUpdater001( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamMasterServerUpdater001"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamMatchmaking.c b/lsteamclient/winISteamMatchmaking.c index c0acd673..db003a97 100644 --- a/lsteamclient/winISteamMatchmaking.c +++ b/lsteamclient/winISteamMatchmaking.c @@ -370,7 +370,7 @@ __ASM_BLOCK_BEGIN(winISteamMatchmaking_SteamMatchMaking001_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamMatchmaking_SteamMatchMaking001( struct u_iface *u_iface ) +struct w_iface *create_winISteamMatchmaking_SteamMatchMaking001( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamMatchMaking001"); TRACE("-> %p\n", r); @@ -703,7 +703,7 @@ __ASM_BLOCK_BEGIN(winISteamMatchmaking_SteamMatchMaking002_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamMatchmaking_SteamMatchMaking002( struct u_iface *u_iface ) +struct w_iface *create_winISteamMatchmaking_SteamMatchMaking002( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamMatchMaking002"); TRACE("-> %p\n", r); @@ -1153,7 +1153,7 @@ __ASM_BLOCK_BEGIN(winISteamMatchmaking_SteamMatchMaking003_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamMatchmaking_SteamMatchMaking003( struct u_iface *u_iface ) +struct w_iface *create_winISteamMatchmaking_SteamMatchMaking003( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamMatchMaking003"); TRACE("-> %p\n", r); @@ -1589,7 +1589,7 @@ __ASM_BLOCK_BEGIN(winISteamMatchmaking_SteamMatchMaking004_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamMatchmaking_SteamMatchMaking004( struct u_iface *u_iface ) +struct w_iface *create_winISteamMatchmaking_SteamMatchMaking004( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamMatchMaking004"); TRACE("-> %p\n", r); @@ -2084,7 +2084,7 @@ __ASM_BLOCK_BEGIN(winISteamMatchmaking_SteamMatchMaking005_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamMatchmaking_SteamMatchMaking005( struct u_iface *u_iface ) +struct w_iface *create_winISteamMatchmaking_SteamMatchMaking005( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamMatchMaking005"); TRACE("-> %p\n", r); @@ -2543,7 +2543,7 @@ __ASM_BLOCK_BEGIN(winISteamMatchmaking_SteamMatchMaking006_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamMatchmaking_SteamMatchMaking006( struct u_iface *u_iface ) +struct w_iface *create_winISteamMatchmaking_SteamMatchMaking006( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamMatchMaking006"); TRACE("-> %p\n", r); @@ -3096,7 +3096,7 @@ __ASM_BLOCK_BEGIN(winISteamMatchmaking_SteamMatchMaking007_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamMatchmaking_SteamMatchMaking007( struct u_iface *u_iface ) +struct w_iface *create_winISteamMatchmaking_SteamMatchMaking007( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamMatchMaking007"); TRACE("-> %p\n", r); @@ -3675,7 +3675,7 @@ __ASM_BLOCK_BEGIN(winISteamMatchmaking_SteamMatchMaking008_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamMatchmaking_SteamMatchMaking008( struct u_iface *u_iface ) +struct w_iface *create_winISteamMatchmaking_SteamMatchMaking008( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamMatchMaking008"); TRACE("-> %p\n", r); @@ -4282,7 +4282,7 @@ __ASM_BLOCK_BEGIN(winISteamMatchmaking_SteamMatchMaking009_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamMatchmaking_SteamMatchMaking009( struct u_iface *u_iface ) +struct w_iface *create_winISteamMatchmaking_SteamMatchMaking009( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamMatchMaking009"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamMatchmakingServers.c b/lsteamclient/winISteamMatchmakingServers.c index 88d68bc2..0a2f0323 100644 --- a/lsteamclient/winISteamMatchmakingServers.c +++ b/lsteamclient/winISteamMatchmakingServers.c @@ -251,7 +251,7 @@ __ASM_BLOCK_BEGIN(winISteamMatchmakingServers_SteamMatchMakingServers001_vtables ); __ASM_BLOCK_END -struct w_iface *create_winISteamMatchmakingServers_SteamMatchMakingServers001( struct u_iface *u_iface ) +struct w_iface *create_winISteamMatchmakingServers_SteamMatchMakingServers001( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamMatchMakingServers001"); TRACE("-> %p\n", r); @@ -516,7 +516,7 @@ __ASM_BLOCK_BEGIN(winISteamMatchmakingServers_SteamMatchMakingServers002_vtables ); __ASM_BLOCK_END -struct w_iface *create_winISteamMatchmakingServers_SteamMatchMakingServers002( struct u_iface *u_iface ) +struct w_iface *create_winISteamMatchmakingServers_SteamMatchMakingServers002( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamMatchMakingServers002"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamMusic.c b/lsteamclient/winISteamMusic.c index 3c25b7cf..da8984f3 100644 --- a/lsteamclient/winISteamMusic.c +++ b/lsteamclient/winISteamMusic.c @@ -126,7 +126,7 @@ __ASM_BLOCK_BEGIN(winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001( struct u_iface *u_iface ) +struct w_iface *create_winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMMUSIC_INTERFACE_VERSION001"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamMusicRemote.c b/lsteamclient/winISteamMusicRemote.c index b0f195d3..d8b5cdce 100644 --- a/lsteamclient/winISteamMusicRemote.c +++ b/lsteamclient/winISteamMusicRemote.c @@ -462,7 +462,7 @@ __ASM_BLOCK_BEGIN(winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_vta ); __ASM_BLOCK_END -struct w_iface *create_winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001( struct u_iface *u_iface ) +struct w_iface *create_winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMMUSICREMOTE_INTERFACE_VERSION001"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamNetworking.c b/lsteamclient/winISteamNetworking.c index ec08cda7..3ddca223 100644 --- a/lsteamclient/winISteamNetworking.c +++ b/lsteamclient/winISteamNetworking.c @@ -208,7 +208,7 @@ __ASM_BLOCK_BEGIN(winISteamNetworking_SteamNetworking001_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamNetworking_SteamNetworking001( struct u_iface *u_iface ) +struct w_iface *create_winISteamNetworking_SteamNetworking001( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworking001"); TRACE("-> %p\n", r); @@ -452,7 +452,7 @@ __ASM_BLOCK_BEGIN(winISteamNetworking_SteamNetworking002_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamNetworking_SteamNetworking002( struct u_iface *u_iface ) +struct w_iface *create_winISteamNetworking_SteamNetworking002( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworking002"); TRACE("-> %p\n", r); @@ -787,7 +787,7 @@ __ASM_BLOCK_BEGIN(winISteamNetworking_SteamNetworking003_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamNetworking_SteamNetworking003( struct u_iface *u_iface ) +struct w_iface *create_winISteamNetworking_SteamNetworking003( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworking003"); TRACE("-> %p\n", r); @@ -1125,7 +1125,7 @@ __ASM_BLOCK_BEGIN(winISteamNetworking_SteamNetworking004_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamNetworking_SteamNetworking004( struct u_iface *u_iface ) +struct w_iface *create_winISteamNetworking_SteamNetworking004( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworking004"); TRACE("-> %p\n", r); @@ -1492,7 +1492,7 @@ __ASM_BLOCK_BEGIN(winISteamNetworking_SteamNetworking005_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamNetworking_SteamNetworking005( struct u_iface *u_iface ) +struct w_iface *create_winISteamNetworking_SteamNetworking005( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworking005"); TRACE("-> %p\n", r); @@ -1859,7 +1859,7 @@ __ASM_BLOCK_BEGIN(winISteamNetworking_SteamNetworking006_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamNetworking_SteamNetworking006( struct u_iface *u_iface ) +struct w_iface *create_winISteamNetworking_SteamNetworking006( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworking006"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamNetworkingFakeUDPPort.c b/lsteamclient/winISteamNetworkingFakeUDPPort.c index 0198dbe1..9bd912f1 100644 --- a/lsteamclient/winISteamNetworkingFakeUDPPort.c +++ b/lsteamclient/winISteamNetworkingFakeUDPPort.c @@ -47,7 +47,7 @@ __ASM_BLOCK_BEGIN(winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_v ); __ASM_BLOCK_END -struct w_iface *create_winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001( struct u_iface *u_iface ) +struct w_iface *create_winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworkingFakeUDPPort001"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamNetworkingMessages.c b/lsteamclient/winISteamNetworkingMessages.c index 00412ade..eb061188 100644 --- a/lsteamclient/winISteamNetworkingMessages.c +++ b/lsteamclient/winISteamNetworkingMessages.c @@ -92,7 +92,7 @@ __ASM_BLOCK_BEGIN(winISteamNetworkingMessages_SteamNetworkingMessages002_vtables ); __ASM_BLOCK_END -struct w_iface *create_winISteamNetworkingMessages_SteamNetworkingMessages002( struct u_iface *u_iface ) +struct w_iface *create_winISteamNetworkingMessages_SteamNetworkingMessages002( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworkingMessages002"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamNetworkingSockets.c b/lsteamclient/winISteamNetworkingSockets.c index 8c7c64c9..159daece 100644 --- a/lsteamclient/winISteamNetworkingSockets.c +++ b/lsteamclient/winISteamNetworkingSockets.c @@ -410,7 +410,7 @@ __ASM_BLOCK_BEGIN(winISteamNetworkingSockets_SteamNetworkingSockets002_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets002( struct u_iface *u_iface ) +struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets002( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworkingSockets002"); TRACE("-> %p\n", r); @@ -869,7 +869,7 @@ __ASM_BLOCK_BEGIN(winISteamNetworkingSockets_SteamNetworkingSockets004_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets004( struct u_iface *u_iface ) +struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets004( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworkingSockets004"); TRACE("-> %p\n", r); @@ -1376,7 +1376,7 @@ __ASM_BLOCK_BEGIN(winISteamNetworkingSockets_SteamNetworkingSockets006_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets006( struct u_iface *u_iface ) +struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets006( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworkingSockets006"); TRACE("-> %p\n", r); @@ -1957,7 +1957,7 @@ __ASM_BLOCK_BEGIN(winISteamNetworkingSockets_SteamNetworkingSockets008_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets008( struct u_iface *u_iface ) +struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets008( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworkingSockets008"); TRACE("-> %p\n", r); @@ -2551,7 +2551,7 @@ __ASM_BLOCK_BEGIN(winISteamNetworkingSockets_SteamNetworkingSockets009_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets009( struct u_iface *u_iface ) +struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets009( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworkingSockets009"); TRACE("-> %p\n", r); @@ -3187,8 +3187,7 @@ void /*ISteamNetworkingFakeUDPPort*/ * __thiscall winISteamNetworkingSockets_Ste }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_CreateFakeUDPPort, ¶ms ); - params._ret = create_winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001( params._ret ); - return params._ret; + return create_winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001( params._ret ); } void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_destructor(struct w_iface *_this) @@ -3251,7 +3250,7 @@ __ASM_BLOCK_BEGIN(winISteamNetworkingSockets_SteamNetworkingSockets012_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets012( struct u_iface *u_iface ) +struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets012( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworkingSockets012"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamNetworkingSocketsSerialized.c b/lsteamclient/winISteamNetworkingSocketsSerialized.c index 3fe09207..0ff736f0 100644 --- a/lsteamclient/winISteamNetworkingSocketsSerialized.c +++ b/lsteamclient/winISteamNetworkingSocketsSerialized.c @@ -131,7 +131,7 @@ __ASM_BLOCK_BEGIN(winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSer ); __ASM_BLOCK_END -struct w_iface *create_winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002( struct u_iface *u_iface ) +struct w_iface *create_winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworkingSocketsSerialized002"); TRACE("-> %p\n", r); @@ -270,7 +270,7 @@ __ASM_BLOCK_BEGIN(winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSer ); __ASM_BLOCK_END -struct w_iface *create_winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003( struct u_iface *u_iface ) +struct w_iface *create_winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworkingSocketsSerialized003"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamNetworkingUtils.c b/lsteamclient/winISteamNetworkingUtils.c index 2288cd62..7baafaf1 100644 --- a/lsteamclient/winISteamNetworkingUtils.c +++ b/lsteamclient/winISteamNetworkingUtils.c @@ -334,7 +334,7 @@ __ASM_BLOCK_BEGIN(winISteamNetworkingUtils_SteamNetworkingUtils001_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils001( struct u_iface *u_iface ) +struct w_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils001( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworkingUtils001"); TRACE("-> %p\n", r); @@ -675,7 +675,7 @@ __ASM_BLOCK_BEGIN(winISteamNetworkingUtils_SteamNetworkingUtils002_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils002( struct u_iface *u_iface ) +struct w_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils002( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworkingUtils002"); TRACE("-> %p\n", r); @@ -1018,7 +1018,7 @@ __ASM_BLOCK_BEGIN(winISteamNetworkingUtils_SteamNetworkingUtils003_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils003( struct u_iface *u_iface ) +struct w_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils003( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworkingUtils003"); TRACE("-> %p\n", r); @@ -1404,7 +1404,7 @@ __ASM_BLOCK_BEGIN(winISteamNetworkingUtils_SteamNetworkingUtils004_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils004( struct u_iface *u_iface ) +struct w_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils004( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworkingUtils004"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamParentalSettings.c b/lsteamclient/winISteamParentalSettings.c index 07aa05aa..6bbee9a6 100644 --- a/lsteamclient/winISteamParentalSettings.c +++ b/lsteamclient/winISteamParentalSettings.c @@ -95,7 +95,7 @@ __ASM_BLOCK_BEGIN(winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERS ); __ASM_BLOCK_END -struct w_iface *create_winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001( struct u_iface *u_iface ) +struct w_iface *create_winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMPARENTALSETTINGS_INTERFACE_VERSION001"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamParties.c b/lsteamclient/winISteamParties.c index 4d2a4c84..4680d57b 100644 --- a/lsteamclient/winISteamParties.c +++ b/lsteamclient/winISteamParties.c @@ -194,7 +194,7 @@ __ASM_BLOCK_BEGIN(winISteamParties_SteamParties002_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamParties_SteamParties002( struct u_iface *u_iface ) +struct w_iface *create_winISteamParties_SteamParties002( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamParties002"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamRemotePlay.c b/lsteamclient/winISteamRemotePlay.c index c1c89e82..b6d6fac3 100644 --- a/lsteamclient/winISteamRemotePlay.c +++ b/lsteamclient/winISteamRemotePlay.c @@ -113,7 +113,7 @@ __ASM_BLOCK_BEGIN(winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_vtabl ); __ASM_BLOCK_END -struct w_iface *create_winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001( struct u_iface *u_iface ) +struct w_iface *create_winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTEPLAY_INTERFACE_VERSION001"); TRACE("-> %p\n", r); @@ -246,7 +246,7 @@ __ASM_BLOCK_BEGIN(winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_vtabl ); __ASM_BLOCK_END -struct w_iface *create_winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002( struct u_iface *u_iface ) +struct w_iface *create_winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTEPLAY_INTERFACE_VERSION002"); TRACE("-> %p\n", r); @@ -480,7 +480,7 @@ __ASM_BLOCK_BEGIN(winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_vtabl ); __ASM_BLOCK_END -struct w_iface *create_winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003( struct u_iface *u_iface ) +struct w_iface *create_winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTEPLAY_INTERFACE_VERSION003"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamRemoteStorage.c b/lsteamclient/winISteamRemoteStorage.c index dd396a23..ed5a5546 100644 --- a/lsteamclient/winISteamRemoteStorage.c +++ b/lsteamclient/winISteamRemoteStorage.c @@ -135,7 +135,7 @@ __ASM_BLOCK_BEGIN(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 ); __ASM_BLOCK_END -struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001( struct u_iface *u_iface ) +struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION001"); TRACE("-> %p\n", r); @@ -261,7 +261,7 @@ __ASM_BLOCK_BEGIN(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 ); __ASM_BLOCK_END -struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002( struct u_iface *u_iface ) +struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION002"); TRACE("-> %p\n", r); @@ -576,7 +576,7 @@ __ASM_BLOCK_BEGIN(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 ); __ASM_BLOCK_END -struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003( struct u_iface *u_iface ) +struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION003"); TRACE("-> %p\n", r); @@ -922,7 +922,7 @@ __ASM_BLOCK_BEGIN(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 ); __ASM_BLOCK_END -struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004( struct u_iface *u_iface ) +struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION004"); TRACE("-> %p\n", r); @@ -1413,7 +1413,7 @@ __ASM_BLOCK_BEGIN(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 ); __ASM_BLOCK_END -struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005( struct u_iface *u_iface ) +struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION005"); TRACE("-> %p\n", r); @@ -2155,7 +2155,7 @@ __ASM_BLOCK_BEGIN(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 ); __ASM_BLOCK_END -struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006( struct u_iface *u_iface ) +struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION006"); TRACE("-> %p\n", r); @@ -2900,7 +2900,7 @@ __ASM_BLOCK_BEGIN(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 ); __ASM_BLOCK_END -struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007( struct u_iface *u_iface ) +struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION007"); TRACE("-> %p\n", r); @@ -3704,7 +3704,7 @@ __ASM_BLOCK_BEGIN(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 ); __ASM_BLOCK_END -struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008( struct u_iface *u_iface ) +struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION008"); TRACE("-> %p\n", r); @@ -4509,7 +4509,7 @@ __ASM_BLOCK_BEGIN(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 ); __ASM_BLOCK_END -struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009( struct u_iface *u_iface ) +struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION009"); TRACE("-> %p\n", r); @@ -5332,7 +5332,7 @@ __ASM_BLOCK_BEGIN(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 ); __ASM_BLOCK_END -struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010( struct u_iface *u_iface ) +struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION010"); TRACE("-> %p\n", r); @@ -6156,7 +6156,7 @@ __ASM_BLOCK_BEGIN(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 ); __ASM_BLOCK_END -struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011( struct u_iface *u_iface ) +struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION011"); TRACE("-> %p\n", r); @@ -6981,7 +6981,7 @@ __ASM_BLOCK_BEGIN(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 ); __ASM_BLOCK_END -struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012( struct u_iface *u_iface ) +struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION012"); TRACE("-> %p\n", r); @@ -7856,7 +7856,7 @@ __ASM_BLOCK_BEGIN(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 ); __ASM_BLOCK_END -struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013( struct u_iface *u_iface ) +struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION013"); TRACE("-> %p\n", r); @@ -8731,7 +8731,7 @@ __ASM_BLOCK_BEGIN(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 ); __ASM_BLOCK_END -struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014( struct u_iface *u_iface ) +struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION014"); TRACE("-> %p\n", r); @@ -9661,7 +9661,7 @@ __ASM_BLOCK_BEGIN(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 ); __ASM_BLOCK_END -struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016( struct u_iface *u_iface ) +struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION016"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamScreenshots.c b/lsteamclient/winISteamScreenshots.c index 61b78d07..76c6d423 100644 --- a/lsteamclient/winISteamScreenshots.c +++ b/lsteamclient/winISteamScreenshots.c @@ -105,7 +105,7 @@ __ASM_BLOCK_BEGIN(winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_vta ); __ASM_BLOCK_END -struct w_iface *create_winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001( struct u_iface *u_iface ) +struct w_iface *create_winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMSCREENSHOTS_INTERFACE_VERSION001"); TRACE("-> %p\n", r); @@ -231,7 +231,7 @@ __ASM_BLOCK_BEGIN(winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_vta ); __ASM_BLOCK_END -struct w_iface *create_winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002( struct u_iface *u_iface ) +struct w_iface *create_winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMSCREENSHOTS_INTERFACE_VERSION002"); TRACE("-> %p\n", r); @@ -388,7 +388,7 @@ __ASM_BLOCK_BEGIN(winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_vta ); __ASM_BLOCK_END -struct w_iface *create_winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003( struct u_iface *u_iface ) +struct w_iface *create_winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMSCREENSHOTS_INTERFACE_VERSION003"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamTimeline.c b/lsteamclient/winISteamTimeline.c index 208b9747..7ebcac65 100644 --- a/lsteamclient/winISteamTimeline.c +++ b/lsteamclient/winISteamTimeline.c @@ -76,7 +76,7 @@ __ASM_BLOCK_BEGIN(winISteamTimeline_STEAMTIMELINE_INTERFACE_V001_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamTimeline_STEAMTIMELINE_INTERFACE_V001( struct u_iface *u_iface ) +struct w_iface *create_winISteamTimeline_STEAMTIMELINE_INTERFACE_V001( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMTIMELINE_INTERFACE_V001"); TRACE("-> %p\n", r); @@ -381,7 +381,7 @@ __ASM_BLOCK_BEGIN(winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamTimeline_STEAMTIMELINE_INTERFACE_V004( struct u_iface *u_iface ) +struct w_iface *create_winISteamTimeline_STEAMTIMELINE_INTERFACE_V004( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMTIMELINE_INTERFACE_V004"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamUGC.c b/lsteamclient/winISteamUGC.c index 28f8acaa..ec419e75 100644 --- a/lsteamclient/winISteamUGC.c +++ b/lsteamclient/winISteamUGC.c @@ -233,7 +233,7 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION001_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION001( struct u_iface *u_iface ) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION001( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION001"); TRACE("-> %p\n", r); @@ -735,7 +735,7 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION002_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION002( struct u_iface *u_iface ) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION002( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION002"); TRACE("-> %p\n", r); @@ -1238,7 +1238,7 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION003_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION003( struct u_iface *u_iface ) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION003( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION003"); TRACE("-> %p\n", r); @@ -1768,7 +1768,7 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION004_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION004( struct u_iface *u_iface ) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION004( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION004"); TRACE("-> %p\n", r); @@ -2506,7 +2506,7 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION005_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION005( struct u_iface *u_iface ) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION005( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION005"); TRACE("-> %p\n", r); @@ -3305,7 +3305,7 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION006_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION006( struct u_iface *u_iface ) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION006( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION006"); TRACE("-> %p\n", r); @@ -4235,7 +4235,7 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION007_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION007( struct u_iface *u_iface ) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION007( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION007"); TRACE("-> %p\n", r); @@ -5249,7 +5249,7 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION008_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION008( struct u_iface *u_iface ) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION008( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION008"); TRACE("-> %p\n", r); @@ -6321,7 +6321,7 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION009_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION009( struct u_iface *u_iface ) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION009( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION009"); TRACE("-> %p\n", r); @@ -7496,7 +7496,7 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION010_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION010( struct u_iface *u_iface ) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION010( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION010"); TRACE("-> %p\n", r); @@ -8705,7 +8705,7 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION012_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION012( struct u_iface *u_iface ) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION012( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION012"); TRACE("-> %p\n", r); @@ -9947,7 +9947,7 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION013_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION013( struct u_iface *u_iface ) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION013( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION013"); TRACE("-> %p\n", r); @@ -11204,7 +11204,7 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION014_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION014( struct u_iface *u_iface ) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION014( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION014"); TRACE("-> %p\n", r); @@ -12538,7 +12538,7 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION015_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION015( struct u_iface *u_iface ) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION015( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION015"); TRACE("-> %p\n", r); @@ -13904,7 +13904,7 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION016_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION016( struct u_iface *u_iface ) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION016( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION016"); TRACE("-> %p\n", r); @@ -15317,7 +15317,7 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION017_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION017( struct u_iface *u_iface ) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION017( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION017"); TRACE("-> %p\n", r); @@ -16746,7 +16746,7 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION018_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION018( struct u_iface *u_iface ) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION018( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION018"); TRACE("-> %p\n", r); @@ -18242,7 +18242,7 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION020_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION020( struct u_iface *u_iface ) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION020( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION020"); TRACE("-> %p\n", r); @@ -19771,7 +19771,7 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION021_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION021( struct u_iface *u_iface ) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION021( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION021"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamUnifiedMessages.c b/lsteamclient/winISteamUnifiedMessages.c index 8ca85bda..aca61f22 100644 --- a/lsteamclient/winISteamUnifiedMessages.c +++ b/lsteamclient/winISteamUnifiedMessages.c @@ -95,7 +95,7 @@ __ASM_BLOCK_BEGIN(winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSIO ); __ASM_BLOCK_END -struct w_iface *create_winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001( struct u_iface *u_iface ) +struct w_iface *create_winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamUser.c b/lsteamclient/winISteamUser.c index 385b2c76..ba11ea78 100644 --- a/lsteamclient/winISteamUser.c +++ b/lsteamclient/winISteamUser.c @@ -387,7 +387,7 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser004_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUser_SteamUser004( struct u_iface *u_iface ) +struct w_iface *create_winISteamUser_SteamUser004( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser004"); TRACE("-> %p\n", r); @@ -985,7 +985,7 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser005_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUser_SteamUser005( struct u_iface *u_iface ) +struct w_iface *create_winISteamUser_SteamUser005( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser005"); TRACE("-> %p\n", r); @@ -1189,7 +1189,7 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser006_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUser_SteamUser006( struct u_iface *u_iface ) +struct w_iface *create_winISteamUser_SteamUser006( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser006"); TRACE("-> %p\n", r); @@ -1407,7 +1407,7 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser007_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUser_SteamUser007( struct u_iface *u_iface ) +struct w_iface *create_winISteamUser_SteamUser007( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser007"); TRACE("-> %p\n", r); @@ -1530,7 +1530,7 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser008_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUser_SteamUser008( struct u_iface *u_iface ) +struct w_iface *create_winISteamUser_SteamUser008( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser008"); TRACE("-> %p\n", r); @@ -1651,7 +1651,7 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser009_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUser_SteamUser009( struct u_iface *u_iface ) +struct w_iface *create_winISteamUser_SteamUser009( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser009"); TRACE("-> %p\n", r); @@ -1759,7 +1759,7 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser010_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUser_SteamUser010( struct u_iface *u_iface ) +struct w_iface *create_winISteamUser_SteamUser010( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser010"); TRACE("-> %p\n", r); @@ -1940,7 +1940,7 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser011_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUser_SteamUser011( struct u_iface *u_iface ) +struct w_iface *create_winISteamUser_SteamUser011( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser011"); TRACE("-> %p\n", r); @@ -2194,7 +2194,7 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser012_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUser_SteamUser012( struct u_iface *u_iface ) +struct w_iface *create_winISteamUser_SteamUser012( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser012"); TRACE("-> %p\n", r); @@ -2468,7 +2468,7 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser013_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUser_SteamUser013( struct u_iface *u_iface ) +struct w_iface *create_winISteamUser_SteamUser013( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser013"); TRACE("-> %p\n", r); @@ -2801,7 +2801,7 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser014_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUser_SteamUser014( struct u_iface *u_iface ) +struct w_iface *create_winISteamUser_SteamUser014( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser014"); TRACE("-> %p\n", r); @@ -3148,7 +3148,7 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser015_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUser_SteamUser015( struct u_iface *u_iface ) +struct w_iface *create_winISteamUser_SteamUser015( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser015"); TRACE("-> %p\n", r); @@ -3497,7 +3497,7 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser016_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUser_SteamUser016( struct u_iface *u_iface ) +struct w_iface *create_winISteamUser_SteamUser016( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser016"); TRACE("-> %p\n", r); @@ -3874,7 +3874,7 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser017_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUser_SteamUser017( struct u_iface *u_iface ) +struct w_iface *create_winISteamUser_SteamUser017( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser017"); TRACE("-> %p\n", r); @@ -4266,7 +4266,7 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser018_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUser_SteamUser018( struct u_iface *u_iface ) +struct w_iface *create_winISteamUser_SteamUser018( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser018"); TRACE("-> %p\n", r); @@ -4710,7 +4710,7 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser019_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUser_SteamUser019( struct u_iface *u_iface ) +struct w_iface *create_winISteamUser_SteamUser019( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser019"); TRACE("-> %p\n", r); @@ -5180,7 +5180,7 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser020_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUser_SteamUser020( struct u_iface *u_iface ) +struct w_iface *create_winISteamUser_SteamUser020( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser020"); TRACE("-> %p\n", r); @@ -5664,7 +5664,7 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser021_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUser_SteamUser021( struct u_iface *u_iface ) +struct w_iface *create_winISteamUser_SteamUser021( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser021"); TRACE("-> %p\n", r); @@ -6149,7 +6149,7 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser022_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUser_SteamUser022( struct u_iface *u_iface ) +struct w_iface *create_winISteamUser_SteamUser022( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser022"); TRACE("-> %p\n", r); @@ -6649,7 +6649,7 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser023_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUser_SteamUser023( struct u_iface *u_iface ) +struct w_iface *create_winISteamUser_SteamUser023( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser023"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamUserStats.c b/lsteamclient/winISteamUserStats.c index ccf20333..bc984ed6 100644 --- a/lsteamclient/winISteamUserStats.c +++ b/lsteamclient/winISteamUserStats.c @@ -362,7 +362,7 @@ __ASM_BLOCK_BEGIN(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_vtables ); __ASM_BLOCK_END -struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001( struct u_iface *u_iface ) +struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUSERSTATS_INTERFACE_VERSION001"); TRACE("-> %p\n", r); @@ -670,7 +670,7 @@ __ASM_BLOCK_BEGIN(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_vtables ); __ASM_BLOCK_END -struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002( struct u_iface *u_iface ) +struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUSERSTATS_INTERFACE_VERSION002"); TRACE("-> %p\n", r); @@ -891,7 +891,7 @@ __ASM_BLOCK_BEGIN(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_vtables ); __ASM_BLOCK_END -struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003( struct u_iface *u_iface ) +struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUSERSTATS_INTERFACE_VERSION003"); TRACE("-> %p\n", r); @@ -1177,7 +1177,7 @@ __ASM_BLOCK_BEGIN(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_vtables ); __ASM_BLOCK_END -struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004( struct u_iface *u_iface ) +struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUSERSTATS_INTERFACE_VERSION004"); TRACE("-> %p\n", r); @@ -1617,7 +1617,7 @@ __ASM_BLOCK_BEGIN(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_vtables ); __ASM_BLOCK_END -struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005( struct u_iface *u_iface ) +struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUSERSTATS_INTERFACE_VERSION005"); TRACE("-> %p\n", r); @@ -2071,7 +2071,7 @@ __ASM_BLOCK_BEGIN(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_vtables ); __ASM_BLOCK_END -struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006( struct u_iface *u_iface ) +struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUSERSTATS_INTERFACE_VERSION006"); TRACE("-> %p\n", r); @@ -2560,7 +2560,7 @@ __ASM_BLOCK_BEGIN(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_vtables ); __ASM_BLOCK_END -struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007( struct u_iface *u_iface ) +struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUSERSTATS_INTERFACE_VERSION007"); TRACE("-> %p\n", r); @@ -3064,7 +3064,7 @@ __ASM_BLOCK_BEGIN(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_vtables ); __ASM_BLOCK_END -struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008( struct u_iface *u_iface ) +struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUSERSTATS_INTERFACE_VERSION008"); TRACE("-> %p\n", r); @@ -3584,7 +3584,7 @@ __ASM_BLOCK_BEGIN(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_vtables ); __ASM_BLOCK_END -struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009( struct u_iface *u_iface ) +struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUSERSTATS_INTERFACE_VERSION009"); TRACE("-> %p\n", r); @@ -4248,7 +4248,7 @@ __ASM_BLOCK_BEGIN(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_vtables ); __ASM_BLOCK_END -struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010( struct u_iface *u_iface ) +struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUSERSTATS_INTERFACE_VERSION010"); TRACE("-> %p\n", r); @@ -4939,7 +4939,7 @@ __ASM_BLOCK_BEGIN(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_vtables ); __ASM_BLOCK_END -struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011( struct u_iface *u_iface ) +struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUSERSTATS_INTERFACE_VERSION011"); TRACE("-> %p\n", r); @@ -5664,7 +5664,7 @@ __ASM_BLOCK_BEGIN(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_vtables ); __ASM_BLOCK_END -struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012( struct u_iface *u_iface ) +struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUSERSTATS_INTERFACE_VERSION012"); TRACE("-> %p\n", r); @@ -6376,7 +6376,7 @@ __ASM_BLOCK_BEGIN(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_vtables ); __ASM_BLOCK_END -struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013( struct u_iface *u_iface ) +struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUSERSTATS_INTERFACE_VERSION013"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamUtils.c b/lsteamclient/winISteamUtils.c index bd4649a4..0d80639e 100644 --- a/lsteamclient/winISteamUtils.c +++ b/lsteamclient/winISteamUtils.c @@ -211,7 +211,7 @@ __ASM_BLOCK_BEGIN(winISteamUtils_SteamUtils002_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUtils_SteamUtils002( struct u_iface *u_iface ) +struct w_iface *create_winISteamUtils_SteamUtils002( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUtils002"); TRACE("-> %p\n", r); @@ -479,7 +479,7 @@ __ASM_BLOCK_BEGIN(winISteamUtils_SteamUtils004_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUtils_SteamUtils004( struct u_iface *u_iface ) +struct w_iface *create_winISteamUtils_SteamUtils004( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUtils004"); TRACE("-> %p\n", r); @@ -821,7 +821,7 @@ __ASM_BLOCK_BEGIN(winISteamUtils_SteamUtils005_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUtils_SteamUtils005( struct u_iface *u_iface ) +struct w_iface *create_winISteamUtils_SteamUtils005( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUtils005"); TRACE("-> %p\n", r); @@ -1189,7 +1189,7 @@ __ASM_BLOCK_BEGIN(winISteamUtils_SteamUtils006_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUtils_SteamUtils006( struct u_iface *u_iface ) +struct w_iface *create_winISteamUtils_SteamUtils006( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUtils006"); TRACE("-> %p\n", r); @@ -1573,7 +1573,7 @@ __ASM_BLOCK_BEGIN(winISteamUtils_SteamUtils007_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUtils_SteamUtils007( struct u_iface *u_iface ) +struct w_iface *create_winISteamUtils_SteamUtils007( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUtils007"); TRACE("-> %p\n", r); @@ -1982,7 +1982,7 @@ __ASM_BLOCK_BEGIN(winISteamUtils_SteamUtils008_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUtils_SteamUtils008( struct u_iface *u_iface ) +struct w_iface *create_winISteamUtils_SteamUtils008( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUtils008"); TRACE("-> %p\n", r); @@ -2475,7 +2475,7 @@ __ASM_BLOCK_BEGIN(winISteamUtils_SteamUtils009_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUtils_SteamUtils009( struct u_iface *u_iface ) +struct w_iface *create_winISteamUtils_SteamUtils009( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUtils009"); TRACE("-> %p\n", r); @@ -3040,7 +3040,7 @@ __ASM_BLOCK_BEGIN(winISteamUtils_SteamUtils010_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamUtils_SteamUtils010( struct u_iface *u_iface ) +struct w_iface *create_winISteamUtils_SteamUtils010( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUtils010"); TRACE("-> %p\n", r); diff --git a/lsteamclient/winISteamVideo.c b/lsteamclient/winISteamVideo.c index e463afeb..476eb7a0 100644 --- a/lsteamclient/winISteamVideo.c +++ b/lsteamclient/winISteamVideo.c @@ -40,7 +40,7 @@ __ASM_BLOCK_BEGIN(winISteamVideo_STEAMVIDEO_INTERFACE_V001_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamVideo_STEAMVIDEO_INTERFACE_V001( struct u_iface *u_iface ) +struct w_iface *create_winISteamVideo_STEAMVIDEO_INTERFACE_V001( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMVIDEO_INTERFACE_V001"); TRACE("-> %p\n", r); @@ -115,7 +115,7 @@ __ASM_BLOCK_BEGIN(winISteamVideo_STEAMVIDEO_INTERFACE_V002_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamVideo_STEAMVIDEO_INTERFACE_V002( struct u_iface *u_iface ) +struct w_iface *create_winISteamVideo_STEAMVIDEO_INTERFACE_V002( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMVIDEO_INTERFACE_V002"); TRACE("-> %p\n", r); @@ -190,7 +190,7 @@ __ASM_BLOCK_BEGIN(winISteamVideo_STEAMVIDEO_INTERFACE_V007_vtables) ); __ASM_BLOCK_END -struct w_iface *create_winISteamVideo_STEAMVIDEO_INTERFACE_V007( struct u_iface *u_iface ) +struct w_iface *create_winISteamVideo_STEAMVIDEO_INTERFACE_V007( struct u_iface u_iface ) { struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMVIDEO_INTERFACE_V007"); TRACE("-> %p\n", r);