lsteamclient: Use 64bit handles for unix side interface pointers.

Based on a patch from Billy Laws.
This commit is contained in:
Rémi Bernon 2025-01-16 10:40:36 +01:00 committed by Arkadiusz Hiler
parent 01e7e7eccf
commit d89c5c80bb
45 changed files with 7301 additions and 7601 deletions

View File

@ -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}, &params );\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:

View File

@ -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 );

View File

@ -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);

View File

@ -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);

View File

@ -10,8 +10,6 @@
#ifdef __cplusplus
#include <array>
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 */

View File

@ -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;
};

File diff suppressed because it is too large Load Diff

View File

@ -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);

View File

@ -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);

View File

@ -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);

File diff suppressed because it is too large Load Diff

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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, &params );
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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);